ChanServ changed the topic of #ruby-lang to: Ruby 1.9.3-p125: http://ruby-lang.org | Paste >3 lines of text on http://pastie.org or use a gist
geermc4 has quit [Remote host closed the connection]
davidbalbert is now known as davidbalber|away
anachronistic has quit [Quit: anachronistic]
roadt has joined #ruby-lang
dpatel has quit [Quit: dpatel]
havenn has joined #ruby-lang
nXqd has joined #ruby-lang
justinram has quit [Remote host closed the connection]
arubin_ has joined #ruby-lang
thinkdevcode has quit [Remote host closed the connection]
mebaran151 has joined #ruby-lang
outoftime has quit [Ping timeout: 244 seconds]
krohrbaugh has quit [Quit: Leaving.]
kurko_ has quit [Quit: Computer has gone to sleep.]
thisirs has quit [Remote host closed the connection]
outoftime has joined #ruby-lang
Madis has quit [Remote host closed the connection]
kurko_ has joined #ruby-lang
bfreeman has quit [Quit: bfreeman]
toretore has quit [Quit: Leaving]
Nisstyre has quit [Quit: Leaving]
datanoise has joined #ruby-lang
ryanf has joined #ruby-lang
ryanlecompte has quit [Remote host closed the connection]
datanoise has quit [Ping timeout: 260 seconds]
ioga_wrk has quit [Ping timeout: 240 seconds]
kurko_ has quit [Ping timeout: 252 seconds]
kurko_ has joined #ruby-lang
datanoise has joined #ruby-lang
nXqd has quit [Ping timeout: 276 seconds]
kurko_ has quit [Ping timeout: 260 seconds]
kurko_ has joined #ruby-lang
mistym has quit [Remote host closed the connection]
joast has joined #ruby-lang
Nisstyre has joined #ruby-lang
cultureulterior_ has joined #ruby-lang
m3nd3s has quit [Remote host closed the connection]
methods1 has joined #ruby-lang
sailias has joined #ruby-lang
kurko_ has quit [Ping timeout: 256 seconds]
kurko_ has joined #ruby-lang
sailias has quit [Ping timeout: 256 seconds]
gsav has joined #ruby-lang
sn0wb1rd has quit [Quit: sn0wb1rd]
earthquake has joined #ruby-lang
mebaran151 has quit [Read error: Connection reset by peer]
ddd has quit [Quit: Leaving.]
chimkan has joined #ruby-lang
kurko_ has quit [Ping timeout: 260 seconds]
kurko_ has joined #ruby-lang
thinkdevcode has joined #ruby-lang
kgrz has quit [Ping timeout: 252 seconds]
mistym has joined #ruby-lang
mistym has quit [Changing host]
mistym has joined #ruby-lang
thinkdevcode has quit [Ping timeout: 256 seconds]
<steveklabnik> uuuuuuugh rake
datanoise has quit [Ping timeout: 256 seconds]
benanne has quit [Quit: kbai]
sepp2k1 has quit [Read error: Connection reset by peer]
sn0wb1rd has joined #ruby-lang
<steveklabnik> yes
<steveklabnik> file "spec/dummy/db/test.sqlite3" do cd "spec/dummy" system "RAILS_ENV=test bundle exec rake db:migrate"
<steveklabnik> end
<steveklabnik> if i run the cd and system commands myself, it works
<steveklabnik> if i run rake, the sqlite3 file is there, but it's like it just got touched, not migrated
<zzak> what version of rake?
<steveklabnik> rake, version 0.9.2.2
<zzak> try --trace?
GarethAdams has joined #ruby-lang
<steveklabnik> hm
<steveklabnik> so
<steveklabnik> task :cucuber => :"spec/dummy/db/test.sqlite3"
<steveklabnik> is in my thing too
<steveklabnik> buuuuuuuuut
<steveklabnik> maybe it's not calling the task?
schroedinbug has quit [Read error: Connection reset by peer]
<steveklabnik> i dont see it actually trying to run anything
<steveklabnik> oh weird
<steveklabnik> $ rake spec/dummy/db/test.sqlite3
<steveklabnik> cd spec/dummy
<steveklabnik> cd -
<steveklabnik> no system call
<steveklabnik> wtffff
<zzak> what'd you break now steve :(
<steveklabnik> i dont know
<steveklabnik> but yeah, it just doenst do system
chimkan has quit [Quit: chimkan]
<steveklabnik> if i change it to use %x
<steveklabnik> cd spec/dummy
<steveklabnik> rake aborted!
<steveklabnik> No such file or directory - RAILS_ENV=test rake db:migrate
<steveklabnik> .......ffffuuuuu
<zzak> ls
<zzak> where are you getting 'cd -' from?
<steveklabnik> i also tried cd with ablock
<zzak> oh, instead of 'cd "spec/dummy"'?
<steveklabnik> that does the cd -
sailias has joined #ruby-lang
<zzak> what about just "system 'cd -'"?
<steveklabnik> that
<steveklabnik> is what i'm doing
<steveklabnik> the build is already broken, whatever, i'll just push my temp work ;)
<zzak> whats cucuber?
svyatov has quit [Quit: svyatov]
<steveklabnik> okay, so that fixes the fact that the two tasks weren't working together ;)
sn0wb1rd_ has joined #ruby-lang
zigidias has joined #ruby-lang
justinmcp has quit [Remote host closed the connection]
arubin_ has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
<steveklabnik> still, running "rake spec/dummy/db/test.sqlite3" doesnt work to run the rake db:migrate
<zzak> isn't it the other way around?
<zzak> rake :task => :dependent
justinmcp has joined #ruby-lang
sn0wb1rd has quit [Ping timeout: 244 seconds]
sn0wb1rd_ is now known as sn0wb1rd
<steveklabnik> with file
<zzak> so you should have: rake spec/dummy/db/test.sqlite3 => :cucumber
<steveklabnik> regardless
<steveklabnik> the file task doesnt work
<zzak> ive never used file tasks either
<steveklabnik> it is task -> depednetn
<zzak> so that might help
<steveklabnik> ...wowo
<steveklabnik> i cannot type
<steveklabnik> i want the cucumber task to depend on the file task
<zzak> ahh
<steveklabnik> so :cucuber => test... is correct
<steveklabnik> i need that db to be created so cukes can work
KnowTheLedge has joined #ruby-lang
postmodern has joined #ruby-lang
justinmcp has quit [Ping timeout: 240 seconds]
nofxx has joined #ruby-lang
nofxx has quit [Changing host]
nofxx has joined #ruby-lang
<zzak> steveklabnik: does the file exist yet?
<zzak> no, right? thats why you want to execute that file task
<steveklabnik> it does not exist yet, yes
<zzak> and $cd spec/dummy && RAILS_ENV=test rake db:migrate works?
<steveklabnik> yes
<zzak> and it generates spec/dummy/db/test.sqlite3?
<steveklabnik> yep
<zzak> then you delete it?
<steveklabnik> yep
<steveklabnik> then i run the task
<steveklabnik> and it does the cd
<steveklabnik> but not the system
<zzak> run what task, cucumber?
<zzak> or the file task
<steveklabnik> the file task
datanoise has joined #ruby-lang
<zzak> ok, ill clone it and try what youre doing
schroedinbug1 has joined #ruby-lang
<steveklabnik> <
<steveklabnik> 3
chimkan has joined #ruby-lang
<zzak> bundle install deps and good to go?
<steveklabnik> yep
wallerdev has quit [Quit: wallerdev]
<steveklabnik> note that even when it works, one spec fails, apparently :( but it fails in a legit way, not 'the table posts does not exist' way
wallerdev has joined #ruby-lang
<zzak> sec, bundling all of rubygems.org
<zzak> lol
<steveklabnik> fiiiiixed
<steveklabnik> i dunno how
<steveklabnik> that works for some reason
<steveklabnik> no idea
<zzak> yeah db:migrate task
<steveklabnik> so i'll just make the current one depend on it and be done with it
<zzak> i was gonna say
<zzak> but i thought you might only want test for whatever reason
<zzak> fwiw
<zzak> this works
<zzak> file "spec/dummy/db/test.sqlite3" do system "cd spec/dummy && RAILS_ENV=test rake db:migrate"
<zzak> end
<zzak> instead of both those lines
<zzak> just combined them and it worked for me
<zzak> i wonder why task; cd 'whatever'; system 'something'; end doesn't work?
datanoise has quit [Ping timeout: 246 seconds]
kke has quit [Ping timeout: 245 seconds]
kurko_ has quit [Ping timeout: 252 seconds]
sn0wb1rd has quit [Quit: sn0wb1rd]
kke has joined #ruby-lang
<steveklabnik> so weird.
sn0wb1rd has joined #ruby-lang
cschwart1 has joined #ruby-lang
kurko_ has joined #ruby-lang
sailias has quit [Ping timeout: 256 seconds]
cschwartz has quit [Ping timeout: 252 seconds]
runeb has quit [Remote host closed the connection]
alvaro_o has quit [Quit: Ex-Chat]
jhn has joined #ruby-lang
kurko_ has quit [Ping timeout: 260 seconds]
kurko_ has joined #ruby-lang
cultureulterior_ has quit [Quit: cultureulterior_]
justinmcp has joined #ruby-lang
CaptainJet has quit [Read error: Connection reset by peer]
kurko_ has quit [Ping timeout: 256 seconds]
kurko_ has joined #ruby-lang
sailias has joined #ruby-lang
bfreeman has joined #ruby-lang
<steveklabnik> anyway, it 99% works now. :) ruby-head and nokogiri apparently have problems: https://travis-ci.org/#!/drapergem/draper/jobs/3042019
spo12 has joined #ruby-lang
mistym has quit [Remote host closed the connection]
CaptainJet has joined #ruby-lang
methods1 has quit [Quit: Leaving.]
brianpWins has quit [Quit: brianpWins]
justinseiter has joined #ruby-lang
kurko_ has quit [Ping timeout: 252 seconds]
<wmoxam> steveklabnik: nokogiri is supposedly retired now :p
<wmoxam> wait
<wmoxam> I'm thinking of hpricot
<wmoxam> carry on :p
kurko_ has joined #ruby-lang
<steveklabnik> yes
ryanlecompte has joined #ruby-lang
ryanf has quit [Ping timeout: 244 seconds]
ryanlecompte has quit [Remote host closed the connection]
alvaro_o has joined #ruby-lang
runeb has joined #ruby-lang
<zzak> ill try it with r37435
<zzak> nokogiri built fine for me
kurko_ has quit [Ping timeout: 260 seconds]
kurko_ has joined #ruby-lang
<zzak> Finished in 0.3557 seconds
<zzak> 208 examples, 0 failures
<zzak> ruby 2.0.0dev (2012-11-03 trunk 37435) [x86_64-linux]
imperator has joined #ruby-lang
<zzak> steveklabnik: ^ draper specs
<zzak> could be a travis bug
brunocoelho has joined #ruby-lang
<imperator> good evening
<zzak> hi dberg
<imperator> how's it going zzak?
brunocoelho has quit [Remote host closed the connection]
runeb has quit [Ping timeout: 252 seconds]
nertzy has joined #ruby-lang
<zzak> good, catching up on my queue, you?
sabfer has joined #ruby-lang
<imperator> just played a bunch of World of Tanks, chillin
CaptainJet has quit []
alvaro_o has quit [Quit: Ex-Chat]
<zzak> imperator: did you get to rubyconf?
<imperator> nope, too expensive
<imperator> plus i had some other stuff going on
<zzak> if youre lookin for something to do, i know luis and hiro and those guys could use help getting those last few windows patches in before the code freeze next month
roadt has quit [Ping timeout: 260 seconds]
kurko_ has quit [Ping timeout: 252 seconds]
nignaztic has joined #ruby-lang
sailias has quit [Read error: Connection reset by peer]
buscapepe has joined #ruby-lang
buscapepe has quit [Remote host closed the connection]
kurko_ has joined #ruby-lang
<imperator> yeah, that's not gonna happen
buscapepe has joined #ruby-lang
bluepojo has quit [Ping timeout: 252 seconds]
sailias has joined #ruby-lang
ryanf has joined #ruby-lang
ananna has joined #ruby-lang
anannie has quit [Ping timeout: 260 seconds]
<zzak> worth a shot
sailias has quit [Ping timeout: 256 seconds]
<zzak> steveklabnik: i am gonna commit this one here soon, https://bugs.ruby-lang.org/issues/7230 friend of yours?
kurko_ has quit [Ping timeout: 260 seconds]
brianpWins has joined #ruby-lang
kurko_ has joined #ruby-lang
datanoise has joined #ruby-lang
chimkan has quit [Quit: chimkan]
runeb has joined #ruby-lang
ryanf has quit [Quit: broken pipes |||]
ryanf has joined #ruby-lang
kurko_ has quit [Ping timeout: 252 seconds]
aetcore has joined #ruby-lang
mistym has joined #ruby-lang
mistym has quit [Changing host]
mistym has joined #ruby-lang
kurko_ has joined #ruby-lang
brianpWins has quit [Quit: brianpWins]
snorkdude has joined #ruby-lang
runeb has quit [Ping timeout: 240 seconds]
thone_ has quit [Ping timeout: 246 seconds]
thone has joined #ruby-lang
kurko_ has quit [Ping timeout: 260 seconds]
kurko_ has joined #ruby-lang
tdy_ has joined #ruby-lang
tdy has quit [Ping timeout: 256 seconds]
kurko_ has quit [Ping timeout: 252 seconds]
kurko_ has joined #ruby-lang
kurko_ has quit [Ping timeout: 260 seconds]
kurko_ has joined #ruby-lang
kurko_ has quit [Ping timeout: 260 seconds]
tdy_ has quit [Quit: WeeChat 0.3.9]
kurko_ has joined #ruby-lang
tdy has joined #ruby-lang
<steveklabnik> wooo
<steveklabnik> not explicitly
runeb has joined #ruby-lang
roadt has joined #ruby-lang
datanoise has quit [Ping timeout: 248 seconds]
sush24 has joined #ruby-lang
snorkdude has quit [Remote host closed the connection]
runeb has quit [Ping timeout: 255 seconds]
brownies has joined #ruby-lang
<brownies> hello
sush24 has quit [Client Quit]
<brownies> i am trying to grok how a gem can "just work" by exposing various methods throughout my app, without requiring any includes/configs/etc
<brownies> in particular, i have a case where i found one method in a gem's file that gets exposed everywhere, but other methods in that same file aren't... and i'm not sure how/why
<steveklabnik> you're using rails
<steveklabnik> ?
<brownies> yes
<steveklabnik> so
<steveklabnik> rails apps do a Bundler.require
<brownies> so :paginate is exposed, but i can't seem to call :link_to_previous_page in the same "magic" way
<steveklabnik> which automatically requires every gem in your bundle
<brownies> i see
<steveklabnik> so when bundler does a 'require 'kaminari'
<steveklabnik> gets required
sush24 has joined #ruby-lang
<steveklabnik> which does that
<brownies> right! and then look at the file (which is what i linked above)
<brownies> for some reason, :paginate is available, but the other methods below it aren't!
<steveklabnik> :paginate?
<steveklabnik> it's a method
<steveklabnik> you'd call it with 'paginate'
<steveklabnik> no :
<brownies> yes, i was just using the : to help differentiate method names for our conversation =P
<steveklabnik> ah
thinkdevcode has joined #ruby-lang
<steveklabnik> well, that makes no sense
<steveklabnik> it only exposing paginate
<steveklabnik> that is
<brownies> right
<brownies> here's all i'm doing http://pastie.org/5175139
<brownies> i was using :paginate but i feel it's too heavyweight (in terms of DB operations) so i wanted to swap it out for just those two links
<brownies> steveklabnik: i'm fiddling around in the console to see if i can understand wtf is going on...
savage- has joined #ruby-lang
<steveklabnik> i gotta run
<steveklabnik> sorry :(
<brownies> and that produced this insight: http://pastie.org/5175142
<brownies> steveklabnik: ah, ok, np. thanks for the explanation so far :)
brianpWins has joined #ruby-lang
kurko_ has quit [Ping timeout: 252 seconds]
kurko_ has joined #ruby-lang
Averna has joined #ruby-lang
gsav has quit [Ping timeout: 260 seconds]
sush24 has quit [Quit: This computer has gone to sleep]
nullthreat_ has joined #ruby-lang
kurko_ has quit [Ping timeout: 260 seconds]
nullthreat_ has quit [Client Quit]
* brownies headdesk
<brownies> hours later, it turns out that this was because i had an old version of the gem installed.
sush24 has joined #ruby-lang
kurko_ has joined #ruby-lang
thinkdevcode has quit [Remote host closed the connection]
datanoise has joined #ruby-lang
drumond19 has joined #ruby-lang
runeb has joined #ruby-lang
imperator has quit [Ping timeout: 246 seconds]
charliesome has joined #ruby-lang
kurko_ has quit [Ping timeout: 252 seconds]
kurko_ has joined #ruby-lang
Uranio has quit [Ping timeout: 264 seconds]
runeb has quit [Ping timeout: 252 seconds]
areil has joined #ruby-lang
nignaztic has quit [Ping timeout: 260 seconds]
kurko_ has quit [Ping timeout: 260 seconds]
xalei has joined #ruby-lang
kurko_ has joined #ruby-lang
justinseiter has quit [Remote host closed the connection]
kurko_ has quit [Ping timeout: 252 seconds]
kurko_ has joined #ruby-lang
ananna has quit [Remote host closed the connection]
kurko_ has quit [Ping timeout: 260 seconds]
kurko_ has joined #ruby-lang
kurko_ has quit [Ping timeout: 252 seconds]
kurko_ has joined #ruby-lang
runeb has joined #ruby-lang
chimkan has joined #ruby-lang
<tubbo> so i figured out how to get ruby-shout to accept standard input as a means of streaming audio to an icecast server
<tubbo> that is, STDIN
<tubbo> here's my question, aside from piping...how exactly is STDIN handled on a *NIX system?
<tubbo> I've never used it outside of piping like `where <blah>` or `cat <file>` to a program
<tubbo> is it possible to write to STDIN from one class, and have another class automatically accept that input and stream it to an Icecast server, the way I currently have it set up?
<heftig> no. you could use $stdin instead of STDIN, and reassign it to the output of a pipe you create via IO.pipe
<heftig> (the output being the read_io)
kurko_ has quit [Ping timeout: 255 seconds]
<heftig> this is if you want to keep it in a single process
<heftig> you could write another ruby program that outputs audio to STDOUT, and then pipe it together with your shout program on the shell
westons has joined #ruby-lang
kurko_ has joined #ruby-lang
krohrbaugh has joined #ruby-lang
agile has quit [Quit: Ex-Chat]
runeb has quit [Ping timeout: 260 seconds]
kurko_ has quit [Ping timeout: 252 seconds]
kurko_ has joined #ruby-lang
kurko_ has quit [Ping timeout: 260 seconds]
qpingu has left #ruby-lang [#ruby-lang]
kurko_ has joined #ruby-lang
guns has joined #ruby-lang
savage- has quit [Quit: savage-]
kurko_ has quit [Ping timeout: 252 seconds]
rhizmoe has joined #ruby-lang
kurko_ has joined #ruby-lang
runeb has joined #ruby-lang
kurko_ has quit [Ping timeout: 240 seconds]
datanoise has quit [Ping timeout: 248 seconds]
kurko_ has joined #ruby-lang
Jaxel has joined #ruby-lang
<Jaxel> Hello.
<Jaxel> I'm trying to use the One-Click Ruby Application gem. However it is throwing me a bad file descriptor error.
<Jaxel> On this line: ocrafile.write([OP_DECOMPRESS_LZMA, compressed_data.size, compressed_data].pack("VVA*"))
<Jaxel> Does anyone have an inkling why this might be? Or any further information I should supply?
kurko_ has quit [Ping timeout: 260 seconds]
mistym has quit [Remote host closed the connection]
kurko_ has joined #ruby-lang
Averna has quit [Quit: Leaving.]
buscapepe has quit [Ping timeout: 240 seconds]
runeb has quit [Ping timeout: 252 seconds]
robbyoconnor has joined #ruby-lang
westons_ has joined #ruby-lang
westons_ has quit [Client Quit]
westons has quit [Ping timeout: 256 seconds]
jhn has left #ruby-lang [#ruby-lang]
kurko_ has quit [Ping timeout: 252 seconds]
westons has joined #ruby-lang
jhn has joined #ruby-lang
jhn has left #ruby-lang [#ruby-lang]
kurko_ has joined #ruby-lang
jhnmn has joined #ruby-lang
dhruvasagar has quit [Ping timeout: 265 seconds]
<Jaxel> No?
jxie has quit [Quit: leaving]
dhruvasagar has joined #ruby-lang
huug has joined #ruby-lang
huug has quit [Client Quit]
jhnmn has left #ruby-lang [#ruby-lang]
westons has quit [Quit: westons]
dc5ala has joined #ruby-lang
reallyitsme has joined #ruby-lang
reallyitsme has quit [Client Quit]
kurko_ has quit [Ping timeout: 260 seconds]
kurko_ has joined #ruby-lang
dhruvasagar has quit [Ping timeout: 245 seconds]
datanoise has joined #ruby-lang
dhruvasagar has joined #ruby-lang
runeb has joined #ruby-lang
westons has joined #ruby-lang
krohrbaugh1 has joined #ruby-lang
krohrbaugh has quit [Ping timeout: 265 seconds]
array has joined #ruby-lang
huug has joined #ruby-lang
kurko_ has quit [Ping timeout: 252 seconds]
huug has quit [Client Quit]
kurko_ has joined #ruby-lang
runeb has quit [Ping timeout: 260 seconds]
wyhaines has quit [Remote host closed the connection]
sush24 has quit [Quit: This computer has gone to sleep]
kurko_ has quit [Ping timeout: 260 seconds]
sush24 has joined #ruby-lang
datanoise has quit [Ping timeout: 265 seconds]
kurko_ has joined #ruby-lang
kurko_ has quit [Ping timeout: 252 seconds]
kurko_ has joined #ruby-lang
kurko_ has quit [Ping timeout: 260 seconds]
kurko_ has joined #ruby-lang
sush24 has quit [Quit: This computer has gone to sleep]
dhruvasagar has quit [Ping timeout: 252 seconds]
dhruvasagar has joined #ruby-lang
runeb has joined #ruby-lang
kurko_ has quit [Ping timeout: 252 seconds]
sabfer has quit [Quit: sabfer]
kurko_ has joined #ruby-lang
kurko_ has quit [Ping timeout: 260 seconds]
kurko_ has joined #ruby-lang
sush24 has joined #ruby-lang
runeb has quit [Ping timeout: 246 seconds]
kurko_ has quit [Ping timeout: 252 seconds]
kurko_ has joined #ruby-lang
westons has quit [Quit: westons]
kurko_ has quit [Ping timeout: 260 seconds]
kurko_ has joined #ruby-lang
kurko_ has quit [Ping timeout: 252 seconds]
kurko_ has joined #ruby-lang
qwerxy has joined #ruby-lang
xalei has quit [Remote host closed the connection]
kurko_ has quit [Ping timeout: 260 seconds]
kurko_ has joined #ruby-lang
chimkan has quit [Ping timeout: 252 seconds]
kurko_ has quit [Ping timeout: 264 seconds]
kurko_ has joined #ruby-lang
runeb has joined #ruby-lang
kurko_ has quit [Ping timeout: 252 seconds]
kurko_ has joined #ruby-lang
jarib has quit [Excess Flood]
kitallis has joined #ruby-lang
kurko_ has quit [Ping timeout: 252 seconds]
kurko_ has joined #ruby-lang
runeb has quit [Ping timeout: 240 seconds]
jarib has joined #ruby-lang
ioga_wrk has joined #ruby-lang
kurko_ has quit [Ping timeout: 260 seconds]
sush24 has quit [Quit: This computer has gone to sleep]
kurko_ has joined #ruby-lang
nertzy has quit [Quit: This computer has gone to sleep]
kurko_ has quit [Ping timeout: 252 seconds]
kurko_ has joined #ruby-lang
kurko_ has quit [Ping timeout: 260 seconds]
kurko_ has joined #ruby-lang
nXqd has joined #ruby-lang
kurko_ has quit [Ping timeout: 252 seconds]
kurko_ has joined #ruby-lang
runeb has joined #ruby-lang
Dreamer3 has quit [Quit: Computer has gone to sleep.]
kurko_ has quit [Ping timeout: 252 seconds]
kurko_ has joined #ruby-lang
Axsuul has quit [Ping timeout: 244 seconds]
wallerdev has quit [Quit: wallerdev]
ryanf has quit [Ping timeout: 268 seconds]
cantonic has joined #ruby-lang
kurko_ has quit [Ping timeout: 260 seconds]
kurko_ has joined #ruby-lang
runeb has quit [Ping timeout: 268 seconds]
justinmcp has quit [Remote host closed the connection]
justinmcp has joined #ruby-lang
batdorf has joined #ruby-lang
datanoise has joined #ruby-lang
cantonic has quit [Quit: cantonic]
justinmcp has quit [Ping timeout: 244 seconds]
kurko_ has quit [Ping timeout: 252 seconds]
datanoise has quit [Ping timeout: 252 seconds]
kurko_ has joined #ruby-lang
adambeynon has joined #ruby-lang
kurko_ has quit [Ping timeout: 260 seconds]
kurko_ has joined #ruby-lang
chendo_ has quit [Ping timeout: 240 seconds]
kurko_ has quit [Ping timeout: 252 seconds]
chendo_ has joined #ruby-lang
irclog0 has joined #ruby-lang
kurko_ has joined #ruby-lang
solars has joined #ruby-lang
irleif has joined #ruby-lang
runeb has joined #ruby-lang
cschwart1 has quit [Ping timeout: 276 seconds]
kurko_ has quit [Ping timeout: 260 seconds]
kurko_ has joined #ruby-lang
qwerxy has quit [Quit: offski]
Guest15771 has joined #ruby-lang
nXqd has quit [Quit: leaving]
qwerxy has joined #ruby-lang
runeb has quit [Ping timeout: 276 seconds]
kurko_ has quit [Ping timeout: 252 seconds]
kurko_ has joined #ruby-lang
kurko_ has quit [Ping timeout: 260 seconds]
kurko_ has joined #ruby-lang
kurko_ has quit [Ping timeout: 252 seconds]
nyuszika7h has quit [Remote host closed the connection]
Axsuul has joined #ruby-lang
kurko_ has joined #ruby-lang
nyuszika7h has joined #ruby-lang
kurko_ has quit [Ping timeout: 260 seconds]
kurko_ has joined #ruby-lang
runeb has joined #ruby-lang
dhruvasagar has quit [Ping timeout: 265 seconds]
kurko_ has quit [Ping timeout: 251 seconds]
gregmoreno has joined #ruby-lang
gregmore_ has quit [Read error: Connection reset by peer]
kurko_ has joined #ruby-lang
nyuszika7h has quit [Quit: brb]
irleif has quit [Quit: Computer has gone to sleep.]
nyuszika7h has joined #ruby-lang
havenn has quit [Remote host closed the connection]
havenn has joined #ruby-lang
nyuszika7h has quit [Excess Flood]
ioga_wrk has quit [Ping timeout: 264 seconds]
kitallis has quit [Quit: Textual IRC Client: http://www.textualapp.com/]
kurko_ has quit [Ping timeout: 260 seconds]
nyuszika7h has joined #ruby-lang
kurko_ has joined #ruby-lang
havenn has quit [Ping timeout: 260 seconds]
ioga_wrk has joined #ruby-lang
guns has quit [Ping timeout: 252 seconds]
runeb has quit [Ping timeout: 265 seconds]
workmad3 has joined #ruby-lang
kurko_ has quit [Ping timeout: 260 seconds]
kurko_ has joined #ruby-lang
amaya_ has joined #ruby-lang
blacktulip has joined #ruby-lang
kurko_ has quit [Ping timeout: 252 seconds]
kurko_ has joined #ruby-lang
workmad3 has quit [Ping timeout: 240 seconds]
kurko_ has quit [Ping timeout: 260 seconds]
kurko_ has joined #ruby-lang
kurko_ has quit [Ping timeout: 260 seconds]
areil has quit [Remote host closed the connection]
kurko_ has joined #ruby-lang
ioga_wrk has quit [Ping timeout: 240 seconds]
kurko_ has quit [Ping timeout: 252 seconds]
runeb has joined #ruby-lang
dhruvasagar has joined #ruby-lang
kurko_ has joined #ruby-lang
anannie has joined #ruby-lang
<anannie> I have a rather strange question
<anannie> when an object is passed as the argument of a function
<anannie> and we don't return it, has the underlying object changed by the manipulations happening in the function?
<anannie> i.e. when we pass an object do the changes happen to a copy of the object or the object itself
<yxhuvud> depends
<anannie> on what?
<apeiros> you can mutate an object which is passed
<apeiros> but it's very bad style
<apeiros> the only object you should mutate in a method is the receiver
<apeiros> you generally do not mutate arguments
<yxhuvud> some types of objects are stored in the reference itself, so when you pass the reference you in practice copy those objects
<apeiros> if you want to process an argument in a destructive style, copy it first
<yxhuvud> integers are a common example
<apeiros> implementation detail, I doubt that that was what anannie was asking for…
<anannie> In my code I'm directly acting on the passed objects
<anannie> so that means I shall get back a changed version of the object
<anannie> ?
<yxhuvud> yes
<anannie> That's quite cool because it is another form of doing a return without actually doing a return
<anannie> why is this bad style?
<anannie> because it can cause confusion?
jxie has joined #ruby-lang
<yxhuvud> yes.
runeb has quit [Ping timeout: 265 seconds]
kurko_ has quit [Ping timeout: 260 seconds]
banisterfiend has joined #ruby-lang
kurko_ has joined #ruby-lang
corecode has left #ruby-lang [":wq"]
kurko_ has quit [Ping timeout: 252 seconds]
kurko_ has joined #ruby-lang
anannie has quit [Remote host closed the connection]
setmeaway has quit [Quit: Leaving]
kurko_ has quit [Ping timeout: 260 seconds]
kurko_ has joined #ruby-lang
stardiviner has joined #ruby-lang
banisterfiend has quit [Remote host closed the connection]
katfro has joined #ruby-lang
kurko_ has quit [Ping timeout: 260 seconds]
adambeynon has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
havenn has joined #ruby-lang
katfro has left #ruby-lang [#ruby-lang]
kurko_ has joined #ruby-lang
irleif has joined #ruby-lang
runeb has joined #ruby-lang
havenn has quit [Ping timeout: 260 seconds]
kurko_ has quit [Quit: Computer has gone to sleep.]
sullenel has joined #ruby-lang
amaya_ has quit [Ping timeout: 264 seconds]
sepp2k has joined #ruby-lang
runeb has quit [Ping timeout: 264 seconds]
rindolf has joined #ruby-lang
sysbeast has joined #ruby-lang
anannie has joined #ruby-lang
ioga_wrk has joined #ruby-lang
sullenel has quit [Quit: Leaving.]
sullenel has joined #ruby-lang
sullenel has quit [Client Quit]
ioga_wrk has quit [Ping timeout: 240 seconds]
amaya_ has joined #ruby-lang
runeb has joined #ruby-lang
amaya_ has quit [Read error: Connection reset by peer]
amaya_ has joined #ruby-lang
blacktulip has quit [Ping timeout: 268 seconds]
ioga_wrk has joined #ruby-lang
anannie has quit [Remote host closed the connection]
toretore has joined #ruby-lang
blacktulip has joined #ruby-lang
anannie has joined #ruby-lang
runeb has quit [Ping timeout: 246 seconds]
runeb has joined #ruby-lang
<Kero> anannie: doing multiple reruns in Ruby is easy, just return an array; you can use it as a, b, c = method_that_returns_an_array
<Kero> and confusion not only *will* happen, it adds up as a program grows. confusion + confusion = incomprehensible
anannie has quit [Remote host closed the connection]
anannie has joined #ruby-lang
anannie has quit [Ping timeout: 252 seconds]
anannie has joined #ruby-lang
dous_ has joined #ruby-lang
dous_ has quit [Changing host]
dous_ has joined #ruby-lang
dous has quit [Ping timeout: 260 seconds]
anannie has quit [Ping timeout: 252 seconds]
ioga_wrk has quit [Ping timeout: 245 seconds]
x0F has quit [Disconnected by services]
x0F_ has joined #ruby-lang
x0F_ is now known as x0F
rindolf has quit [Read error: Connection reset by peer]
rindolf has joined #ruby-lang
rindolf has quit [Read error: Connection reset by peer]
ioga_wrk has joined #ruby-lang
Madis has joined #ruby-lang
justinram has joined #ruby-lang
runeb has quit [Remote host closed the connection]
spuk has quit [Quit: Human beings were created by water to transport it uphill.]
outoftime has quit [Quit: Leaving]
Axsuul has quit [Ping timeout: 265 seconds]
irleif has quit [Quit: Computer has gone to sleep.]
jxie has quit [Quit: leaving]
datanoise has joined #ruby-lang
mhag has joined #ruby-lang
irleif has joined #ruby-lang
datanoise has quit [Ping timeout: 240 seconds]
jxie has joined #ruby-lang
datanoise has joined #ruby-lang
datanoise has quit [Ping timeout: 252 seconds]
jxie has quit [Ping timeout: 260 seconds]
Banistergalaxy has joined #ruby-lang
jxie has joined #ruby-lang
irleif has quit [Quit: Computer has gone to sleep.]
stardiviner has quit [Quit: my website: http://stardiviner.dyndns-blog.com/]
irleif has joined #ruby-lang
kitallis has joined #ruby-lang
imperator has joined #ruby-lang
Banistergalaxy has quit [Ping timeout: 256 seconds]
tbuehlmann has joined #ruby-lang
Banistergalaxy has joined #ruby-lang
cored has quit [Ping timeout: 255 seconds]
cored has joined #ruby-lang
cored has quit [Changing host]
cored has joined #ruby-lang
irleif has quit [Quit: Computer has gone to sleep.]
samuelharden has joined #ruby-lang
dhruvasagar has quit [Ping timeout: 240 seconds]
AndChat| has joined #ruby-lang
Banistergalaxy has quit [Ping timeout: 255 seconds]
jxie has quit [Read error: Connection reset by peer]
jxie has joined #ruby-lang
jxie has quit [Quit: leaving]
uuair has joined #ruby-lang
jxie has joined #ruby-lang
kitallis has quit [Quit: Textual IRC Client: http://www.textualapp.com/]
svyatov has joined #ruby-lang
laszlokorte has joined #ruby-lang
imperator has quit [Ping timeout: 265 seconds]
dous has joined #ruby-lang
dous has quit [Changing host]
dous has joined #ruby-lang
nertzy has joined #ruby-lang
dous_ has quit [Ping timeout: 256 seconds]
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
sush24 has joined #ruby-lang
dhruvasagar has joined #ruby-lang
lele has quit [Quit: Coyote finally caught me]
canton7 has quit [Remote host closed the connection]
canton7 has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
qwerxy has quit [Quit: offski]
mistym has joined #ruby-lang
mistym has quit [Changing host]
mistym has joined #ruby-lang
datanoise has joined #ruby-lang
dhruvasagar has quit [Ping timeout: 240 seconds]
postmodern has quit [Quit: Leaving]
nertzy has quit [Quit: This computer has gone to sleep]
charliesome has quit [Quit: Textual IRC Client: www.textualapp.com]
datanoise has quit [Ping timeout: 252 seconds]
amaya_ has quit [Quit: ChatZilla 0.9.88.2 [Firefox 16.0.2/20121024073032]]
samuelharden has quit [Ping timeout: 256 seconds]
chimkan has joined #ruby-lang
justinra_ has joined #ruby-lang
rue has quit [Ping timeout: 265 seconds]
Dreamer3 has joined #ruby-lang
justinram has quit [Ping timeout: 255 seconds]
rue has joined #ruby-lang
gsav has joined #ruby-lang
sush24_ has joined #ruby-lang
GarethAdams has quit [Quit: Leaving...]
sush24 has quit [Ping timeout: 256 seconds]
davidbalber|away is now known as davidbalbert
ttilley has joined #ruby-lang
chimkan has quit [Ping timeout: 256 seconds]
wyhaines has joined #ruby-lang
havenn has joined #ruby-lang
chimkan has joined #ruby-lang
chimkan has quit [Quit: chimkan]
dhruvasagar has joined #ruby-lang
cschwartz has joined #ruby-lang
earthquake has quit [Quit: earthquake]
lcdhoffman has joined #ruby-lang
chimkan has joined #ruby-lang
earthquake has joined #ruby-lang
chimkan has quit [Client Quit]
sush24_ has quit [Quit: Leaving]
adam12 has quit [Read error: Operation timed out]
erichmenge has joined #ruby-lang
dhruvasagar has quit [Ping timeout: 268 seconds]
justinra_ has quit [Remote host closed the connection]
anachronistic has joined #ruby-lang
svyatov has quit [Quit: svyatov]
havenn has quit [Remote host closed the connection]
swarley has joined #ruby-lang
havenn has joined #ruby-lang
havenn_ has joined #ruby-lang
poga_ has joined #ruby-lang
poga_ has quit [Remote host closed the connection]
poga has joined #ruby-lang
havenn has quit [Ping timeout: 255 seconds]
adam12 has joined #ruby-lang
brianpWins has quit [Quit: brianpWins]
wallerdev has joined #ruby-lang
anachronistic has quit [Read error: Connection reset by peer]
anachronistic has joined #ruby-lang
jxie has quit [Ping timeout: 255 seconds]
jxie has joined #ruby-lang
verbad has joined #ruby-lang
VGoff is now known as VGoff_afk
gokul has joined #ruby-lang
chimkan has joined #ruby-lang
methods has joined #ruby-lang
GarethAdams has joined #ruby-lang
Dom_ has joined #ruby-lang
svyatov has joined #ruby-lang
earthquake has quit [Quit: earthquake]
Dom_ has left #ruby-lang [#ruby-lang]
uuair has quit [Quit: uuair]
cschwartz has quit [Ping timeout: 276 seconds]
anachronistic has quit [Quit: anachronistic]
imperator has joined #ruby-lang
poga has quit [Remote host closed the connection]
brianpWins has joined #ruby-lang
samuelharden has joined #ruby-lang
sush24 has joined #ruby-lang
savage- has joined #ruby-lang
savage- has quit [Quit: savage-]
qwerxy has joined #ruby-lang
sepp2k1 has joined #ruby-lang
sepp2k has quit [Ping timeout: 256 seconds]
erichmenge has quit [Quit: Linkinus - http://linkinus.com]
wallerdev has quit [Quit: wallerdev]
imperator2 has joined #ruby-lang
ViperMaul|_ has joined #ruby-lang
sush24_ has joined #ruby-lang
earthquake has joined #ruby-lang
jMCg_ has joined #ruby-lang
_dumfrie- has joined #ruby-lang
bougyman_ has joined #ruby-lang
<methods> is there no way to call next on an outer loop?
bougyman_ has quit [Changing host]
bougyman_ has joined #ruby-lang
Weems2 has joined #ruby-lang
znz_v0 has joined #ruby-lang
<bougyman_> methods: there is.
GarethAdams has quit [*.net *.split]
sush24 has quit [*.net *.split]
Rizzle has quit [*.net *.split]
_dumfries has quit [*.net *.split]
Weems has quit [*.net *.split]
bougyman has quit [*.net *.split]
jammi has quit [*.net *.split]
znz_v has quit [*.net *.split]
jMCg has quit [*.net *.split]
bougyman_ is now known as bougyman
mistym has quit [Remote host closed the connection]
jammi has joined #ruby-lang
<imperator2> <Ted Knight Voice> WELL? WE'RE WAITING! </Ted Knight Voice>
samuelharden has quit [Ping timeout: 256 seconds]
<methods> bougyman: how ?
chimkan has quit [Quit: chimkan]
<bougyman> methods: utilizing throw:catch. there's a few other workarounds.
samuelharden has joined #ruby-lang
banisterfiend has joined #ruby-lang
imperator2 has quit [Quit: Leaving]
gokul has quit [Ping timeout: 256 seconds]
Weems2 is now known as Weems
Weems has quit [Changing host]
Weems has joined #ruby-lang
roadt has quit [Ping timeout: 265 seconds]
mistym has joined #ruby-lang
mistym has quit [Changing host]
mistym has joined #ruby-lang
ryanf has joined #ruby-lang
workmad3 has joined #ruby-lang
imperator has left #ruby-lang ["Leaving"]
Carnage\ has joined #ruby-lang
wallerdev has joined #ruby-lang
cschwartz has joined #ruby-lang
samuelharden has quit [Ping timeout: 255 seconds]
cschwartz has quit [Read error: Operation timed out]
samuelharden has joined #ruby-lang
swarley has quit [Ping timeout: 252 seconds]
rindolf has joined #ruby-lang
<rindolf> Hello Rubyists.
thinkdevcode has joined #ruby-lang
samuelharden has quit [Ping timeout: 268 seconds]
swarley has joined #ruby-lang
wyhaines has quit [Remote host closed the connection]
vesan_ has joined #ruby-lang
vesan has quit [Read error: No route to host]
methods has quit [Quit: Leaving.]
kurko_ has joined #ruby-lang
nertzy has joined #ruby-lang
davidbalbert is now known as davidbalber|away
kurko_ has quit [Ping timeout: 252 seconds]
nertzy has quit [Quit: Leaving]
kurko_ has joined #ruby-lang
GarethAdams has joined #ruby-lang
nertzy has joined #ruby-lang
nertzy has quit [Client Quit]
nertzy has joined #ruby-lang
<rue> HI
lele has joined #ruby-lang
qwerxy has quit [Quit: offski]
verbad has quit []
<rindolf> rue: HAI.
<rindolf> rue: what's up?
kurko_ has quit [Ping timeout: 268 seconds]
kurko_ has joined #ruby-lang
qwerxy has joined #ruby-lang
KnowTheLedge has quit [Read error: Connection reset by peer]
KnowTheLedge has joined #ruby-lang
lteo has quit [Ping timeout: 252 seconds]
swarley has quit [Read error: Connection reset by peer]
chimkan has joined #ruby-lang
workmad3 has quit [Ping timeout: 256 seconds]
swarley has joined #ruby-lang
thinkdevcode has quit [Remote host closed the connection]
havenn_ has quit [Remote host closed the connection]
justinram has joined #ruby-lang
<rue> Nuffein
dc5ala has quit [Quit: Ex-Chat]
brianpWins has quit [Ping timeout: 260 seconds]
davidbalber|away is now known as davidbalbert
anachronistic has joined #ruby-lang
kurko_ has quit [Ping timeout: 252 seconds]
kurko_ has joined #ruby-lang
chimkan has quit [Quit: chimkan]
brianpWins has joined #ruby-lang
kurko_ has quit [Ping timeout: 240 seconds]
kurko_ has joined #ruby-lang
cored has quit [Ping timeout: 248 seconds]
cored has joined #ruby-lang
cored has quit [Changing host]
cored has joined #ruby-lang
kurko_ has quit [Ping timeout: 260 seconds]
kurko_ has joined #ruby-lang
sush24_ has quit [Quit: This computer has gone to sleep]
kurko_ has quit [Ping timeout: 251 seconds]
brianpWins has quit [Quit: brianpWins]
kurko_ has joined #ruby-lang
nertzy has quit [Quit: Leaving]
justinra_ has joined #ruby-lang
justinram has quit [Read error: Connection reset by peer]
lcdhoffman has quit [Quit: lcdhoffman]
ryanf has quit [Ping timeout: 268 seconds]
havenn has joined #ruby-lang
Dreamer3 has quit [Quit: Computer has gone to sleep.]
nertzy has joined #ruby-lang
tbuehlmann has quit [Remote host closed the connection]
ryanf has joined #ruby-lang
methods has joined #ruby-lang
qwerxy has quit [Quit: offski]
cultureulterior_ has joined #ruby-lang
jMCg_ is now known as jMCg
westons has joined #ruby-lang
cyri__ has joined #ruby-lang
kurko_ has quit [Ping timeout: 260 seconds]
cultureulterior_ has quit [Client Quit]
kurko_ has joined #ruby-lang
cyri_ has quit [Ping timeout: 260 seconds]
cyri__ is now known as cyri_
kurko_ has quit [Ping timeout: 252 seconds]
kurko_ has joined #ruby-lang
kurko_ has quit [Ping timeout: 255 seconds]
verbad has joined #ruby-lang
kurko_ has joined #ruby-lang
tonni has quit [Remote host closed the connection]
chimkan has joined #ruby-lang
nofxx has quit [Ping timeout: 245 seconds]
kurko_ has quit [Ping timeout: 252 seconds]
justinra_ has quit [Remote host closed the connection]
blacktulip has quit [Remote host closed the connection]
kurko_ has joined #ruby-lang
justinram has joined #ruby-lang
Guest15771 has quit [Quit: Guest15771]
brianpWins has joined #ruby-lang
mantono has joined #ruby-lang
Axsuul has joined #ruby-lang
VegetableSpoon has joined #ruby-lang
phaedrix has quit [Read error: Connection reset by peer]
faces has quit [Quit: Leaving]
nofxx has joined #ruby-lang
nofxx has quit [Changing host]
nofxx has joined #ruby-lang
blacktulip has joined #ruby-lang
zarubin has quit [Read error: Connection reset by peer]
earthquake has quit [Quit: earthquake]
zarubin has joined #ruby-lang
kurko_ has quit [Ping timeout: 264 seconds]
kurko_ has joined #ruby-lang
gsav has quit [Quit: leaving]
westons has quit [Quit: westons]
cinch has joined #ruby-lang
sn0wb1rd has quit [Quit: sn0wb1rd]
sn0wb1rd has joined #ruby-lang
kurko_ has quit [Ping timeout: 252 seconds]
kurko_ has joined #ruby-lang
methods has quit [Quit: Leaving.]
cultureulterior_ has joined #ruby-lang
havenn has quit [Remote host closed the connection]
cultureulterior_ has quit [Client Quit]
nate76 has joined #ruby-lang
havenn has joined #ruby-lang
sn0wb1rd_ has joined #ruby-lang
havenn has quit [Read error: Operation timed out]
sn0wb1rd has quit [Ping timeout: 252 seconds]
sn0wb1rd_ is now known as sn0wb1rd
sn0wb1rd has quit [Quit: sn0wb1rd]
heftig is now known as nethearsonanzani
nethearsonanzani is now known as heftig
jarib has quit [Excess Flood]
jarib_ has joined #ruby-lang
sn0wb1rd has joined #ruby-lang
havenn has joined #ruby-lang
jarib has joined #ruby-lang
jarib has quit [Excess Flood]
jarib has joined #ruby-lang
nate76 is now known as nclaburn
tonni has joined #ruby-lang
ryanf has quit [Ping timeout: 252 seconds]
banisterfiend has quit [Ping timeout: 246 seconds]
methods has joined #ruby-lang
nclaburn has quit [Quit: leaving]
rindolf has quit [Quit: Leaving]
kurko_ has quit [Quit: Computer has gone to sleep.]
lcdhoffman has joined #ruby-lang
qwerxy has joined #ruby-lang
workmad3 has joined #ruby-lang
lcdhoffman has quit [Quit: lcdhoffman]
sysbeast has quit [Quit: Verlassend]
datanoise has joined #ruby-lang
workmad3 has quit [Ping timeout: 252 seconds]
brianritchie has joined #ruby-lang
datanoise has quit [Read error: Operation timed out]
westons has joined #ruby-lang
brianritchie has quit [Client Quit]
brianritchie has joined #ruby-lang
chimkan has quit [Quit: chimkan]
qpingu has joined #ruby-lang
qpingu has quit [Client Quit]
kurko_ has joined #ruby-lang
chimkan has joined #ruby-lang
irleif has joined #ruby-lang
qpingu has joined #ruby-lang
qpingu has left #ruby-lang [#ruby-lang]
cultureulterior_ has joined #ruby-lang
cultureulterior_ has quit [Client Quit]
lcdhoffman has joined #ruby-lang
ryanf has joined #ruby-lang
verbad has quit []
Fiel has joined #ruby-lang
Leif has joined #ruby-lang
Fiel has quit [Ping timeout: 240 seconds]
irleif has quit [Quit: Computer has gone to sleep.]
kurko_ has quit [Ping timeout: 268 seconds]
justinram has quit [Remote host closed the connection]
chimkan has quit [Ping timeout: 240 seconds]
kurko_ has joined #ruby-lang
anachronistic has quit [Quit: anachronistic]
kurko_ has quit [Ping timeout: 252 seconds]
mwjcomputing has joined #ruby-lang
kurko_ has joined #ruby-lang
havenn has quit [Remote host closed the connection]
havenn has joined #ruby-lang
justinmcp has joined #ruby-lang
havenn has quit [Ping timeout: 260 seconds]
kurko_ has quit [Ping timeout: 260 seconds]
blacktulip has quit [Remote host closed the connection]
savage- has joined #ruby-lang
kurko_ has joined #ruby-lang
brianpWins_ has joined #ruby-lang
brianpWins has quit [Ping timeout: 255 seconds]
brianpWins_ is now known as brianpWins
havenn has joined #ruby-lang
westons has quit [Ping timeout: 245 seconds]
kurko_ has quit [Quit: Computer has gone to sleep.]
westons has joined #ruby-lang
kurko_ has joined #ruby-lang
nertzy has quit [Quit: This computer has gone to sleep]
kurko_ has quit [Ping timeout: 252 seconds]
justinmcp has quit [Remote host closed the connection]
kurko_ has joined #ruby-lang
chimkan has joined #ruby-lang
Mon_Ouie has quit [Read error: Connection reset by peer]
tenderlove has joined #ruby-lang
Mon_Ouie has joined #ruby-lang
thinkdevcode has joined #ruby-lang
drumond19 has quit [Remote host closed the connection]
drumond19 has joined #ruby-lang
Banistergalaxy has joined #ruby-lang
AndChat- has joined #ruby-lang
chimkan has quit [Quit: chimkan]
brianritchie has quit [Quit: brianritchie]
AndChat| has quit [Ping timeout: 255 seconds]
drumond19 has quit [Ping timeout: 244 seconds]
Banistergalaxy has quit [Ping timeout: 248 seconds]
kurko_ has quit [Quit: Computer has gone to sleep.]
Banistergalaxy has joined #ruby-lang
AndChat| has joined #ruby-lang
spuk has joined #ruby-lang
AndChat- has quit [Ping timeout: 248 seconds]
chimkan has joined #ruby-lang
Banistergalaxy has quit [Ping timeout: 248 seconds]
westons_ has joined #ruby-lang
westons has quit [Ping timeout: 245 seconds]
Dreamer3 has joined #ruby-lang
poga has joined #ruby-lang
westons_ has quit [Ping timeout: 265 seconds]
havenn has quit [Remote host closed the connection]
Leif has quit [Remote host closed the connection]
drumond19 has joined #ruby-lang
justinmcp has joined #ruby-lang
kurko_ has joined #ruby-lang
mistym has quit [Remote host closed the connection]
tenderlove has quit [Remote host closed the connection]
datanoise has joined #ruby-lang
drumond19 has quit [Remote host closed the connection]
brianpWins has quit [Quit: brianpWins]
drumond19 has joined #ruby-lang
weeb1e has quit [Read error: Connection reset by peer]
weeb1e_ has joined #ruby-lang
earthquake has joined #ruby-lang
datanoise has quit [Ping timeout: 240 seconds]
solars has quit [Ping timeout: 252 seconds]