<apeiros_>
and I usually try not to have too high expectations
<banisterfiend>
apeiros_: interesting, whycome?
<apeiros_>
that it is below expectations or that I try not having high expecations?
<apeiros_>
*expectations
banisterfiend has quit [Read error: Connection reset by peer]
schroedinbug has quit [Ping timeout: 260 seconds]
igaiga has quit [Remote host closed the connection]
banisterfiend has joined #ruby-lang
<banisterfiend>
.
<banisterfiend>
dc
<banisterfiend>
apeiros_: how did it let u down
<apeiros_>
banisterfiend: e.g. still same issues with controls as in d2 (run & hit is both on the left mouse button - "I'm low on HP, RUUUN!" - "oh, where you clicked stands an enemy, I'll just attack him" - too bad you're a remote attacker, so you stand still and get killed instead of running…)
zeba has left #ruby-lang [#ruby-lang]
<banisterfiend>
apeiros_: ah ok
<apeiros_>
also the skill system is boring
<rue>
Diablo == boring
<apeiros_>
I understand their base assumption (in d2, even given a lot of choices, people would really only use like a couple and people who didn't think about it ended up with broken characters)
<apeiros_>
but I think their solution to the assumed problem is completely wrong (oh, lets dumb it down so even a 5yo can play it)
savage- has joined #ruby-lang
Raduwen has quit [Quit: Leaving...]
Cykey has joined #ruby-lang
zz_wasnotrice is now known as wasnotrice
savage- has quit [Remote host closed the connection]
<banisterfiend>
how do i force travis to rerun a test without commiting first?
mistym has joined #ruby-lang
carloslopes has joined #ruby-lang
benanne has joined #ruby-lang
<Defusal>
anyone played with MagLev yet?
voker57 has quit [Read error: Connection reset by peer]
carloslopes has quit [Ping timeout: 256 seconds]
carloslopes has joined #ruby-lang
<kyrylo>
banisterfiend, what's the point of that? Rerun a test just to ensure. that it's not passing?
<kyrylo>
s/.//
<banisterfiend>
kyrylo: no, it failed because of an error in travis not a failure in my test
tomb_ has quit [Quit: Computer has gone to sleep.]
<banisterfiend>
kyrylo: so the project is currently in a failure state (according to travis) which is potentially incorrect
<banisterfiend>
i need to run again on a non-broken travis to know for sure
<banisterfiend>
"Error: #<NativeException: org.virtualbox_4_1.VBoxException: The function "lockMachine" returned an error condition: "An unexpected process (PID=0x00003430) has tried to lock the machine 'travis-ruby-5'"
<kyrylo>
Well, I have no idea. But: #travis
apeiros_ has quit [Remote host closed the connection]
bglusman has quit [Read error: Connection reset by peer]
bglusman has joined #ruby-lang
crankharder has quit [Read error: Connection reset by peer]
wasnotrice is now known as zz_wasnotrice
workmad3 has joined #ruby-lang
zeba_ has joined #ruby-lang
zeba has quit [Read error: Connection reset by peer]
zz_wasnotrice is now known as wasnotrice
perryh is now known as perryh_away
wasnotrice is now known as zz_wasnotrice
vesan_ has joined #ruby-lang
vesan has quit [Read error: Connection reset by peer]
tomb_ has quit [Quit: Computer has gone to sleep.]
arooni-mobile has quit [Quit: Leaving]
sepp2k has quit [Remote host closed the connection]
rindolf has quit [Ping timeout: 260 seconds]
gsav has joined #ruby-lang
pmade has quit [Quit: rcirc on GNU Emacs 24.0.94.1]
burgestrand has quit [Ping timeout: 252 seconds]
burgestrand has joined #ruby-lang
hakunin has joined #ruby-lang
b1rkh0ff has quit [Ping timeout: 248 seconds]
seanstickle has quit [Quit: Nihil sub sole novum]
gregmoreno has quit [Ping timeout: 256 seconds]
b1rkh0ff has joined #ruby-lang
woollyams has joined #ruby-lang
gregmoreno has joined #ruby-lang
woollyams has quit [Client Quit]
dalekurt has quit [Quit: Zzz...]
tbuehlmann has quit []
gregmoreno has quit [Ping timeout: 245 seconds]
unsymbol has quit [Ping timeout: 246 seconds]
unsymbol has joined #ruby-lang
diegoviola has joined #ruby-lang
<diegoviola>
hi
crankharder has joined #ruby-lang
<diegoviola>
say i unpack this awesome gem "ramaze-2012.04.14.gem" into my project and i want to include it directly, without installing the gem, how can i do that?
<diegoviola>
ramaze gem just being an example there
<diegoviola>
i want to do that with any gem
<workmad3>
diegoviola: what's the difference between unpacking it into your project and installing it?
<diegoviola>
no idea
<diegoviola>
do i need to change the GEM_PATH and GEM_HOME or something
<workmad3>
diegoviola: you could look at bundler
vesan_ has quit [Read error: Connection reset by peer]
M4g1c5t0rM has joined #ruby-lang
postmodern has joined #ruby-lang
<postmodern>
has anyone gotten ruby 1.8.7 working on Fedora 17?
<postmodern>
i was able to manually compile it
woollyams has joined #ruby-lang
<postmodern>
but im getting segfaults from timeout.rb:60
M4g1c5t0rM has quit [Read error: Connection reset by peer]
M4g1c5t0rM has joined #ruby-lang
wallerdev has joined #ruby-lang
vesan has joined #ruby-lang
perryh_away is now known as perryh
wallerdev has quit [Quit: wallerdev]
brunocoelho has quit [Remote host closed the connection]
igotnolegs has joined #ruby-lang
woollyams has quit [Quit: Computer has gone to sleep.]
woollyams has joined #ruby-lang
virunga has quit [Read error: Connection reset by peer]
<Boohbah>
Jake232: because a variable length argument must be the last argument
<Jake232>
Huh? I swear I've seen people use splats as the first arguement before
igotnolegs has quit [Quit: Computer has gone to sleep.]
dankest has joined #ruby-lang
igaiga has joined #ruby-lang
<flori>
Jake232: It works on 1.9, AFAIR
<Jake232>
This is 1.9.3
<Jake232>
Where I'm encountering the error
<Boohbah>
In Ruby 1.8, this parameter must appear after all ordinary parameters and after all parameters with defaults specified. It should be the last parameter of the method, unless the method also has a parameter with an & prefix. In Ruby 1.9, a parameter with an * prefix must still appear after any parameters with defaults specified, but it may be followed by additional ordinary parameters.
<Boohbah>
In Ruby 1.9, a parameter with an * prefix must still appear after any parameters with defaults specified
<Boohbah>
Jake232: because you specified default options={}
<Jake232>
ahhh damnit.
<flori>
Jake232: Well, you can extract the last arg, if it's a Hash in this case
<Jake232>
I guess I'll just make it so you have to pass an array
<Jake232>
It's not a big deal
<Jake232>
Just figured a splat would also be nice.
<Boohbah>
or you could do
<Boohbah>
def multi_get(options={}, *urls)
<Jake232>
Doesn't really make sense passing the urls after though
<Jake232>
counter-intuative
<Boohbah>
whatever works :)
<Jake232>
I wonder why args with defaults have to go first though
<Boohbah>
maybe it confuses the parser? just guessing
<Jake232>
Maybe so, anyway, thanks. I'll just go with passing an array.
dankest has quit [Quit: Leaving...]
<hagabaka>
Jake232: because if you do multi_get(foo, bar), should ruby assign urls with [foo, bar], or urls with foo and options with bar?
<Jake232>
hagabaka: urls with foo and options with bar, the last arguement should be options.
<Jake232>
always.
<Jake232>
Just like func(options, *args), the first arguement would *always* be options
<hagabaka>
then why does it need a default value?
benanne has quit [Quit: kbai]
burgestrand has quit [Read error: Connection reset by peer]
savage- has quit [Remote host closed the connection]
igotnolegs has joined #ruby-lang
toretore has quit [Quit: Leaving]
<andrewvos>
Seems VirginMedia is blocking imgur.com
<andrewvos>
I switched to google dns and I can see it again
<Boohbah>
andrewvos: seems they also block the pirate bay
naz has joined #ruby-lang
fserb has quit [Quit: ttyl]
Jake232 has quit [Quit: Computer has gone to sleep.]
dejongge has quit [Ping timeout: 256 seconds]
<andrewvos>
They also gave me a router that has WPS turned on, but no way to disable it.
<andrewvos>
Oh and my internet is slow a fuck.
slyphon has quit [Quit: WeeChat 0.3.6]
vesan has quit [Read error: Connection reset by peer]
M4g1c5t0rM has quit [Remote host closed the connection]
vesan has joined #ruby-lang
fserb has joined #ruby-lang
perryh_away is now known as perryh
<samuelkadolph>
Woo WPS: the colossal failure with a massive security hole.
imajes has quit [Excess Flood]
imajes has joined #ruby-lang
nazty has joined #ruby-lang
bryno has quit [Ping timeout: 260 seconds]
perryh is now known as perryh_away
fserb has quit [Quit: ttyl]
crackity_jones has quit [Ping timeout: 246 seconds]