apeiros changed the topic of #ruby to: Ruby 2.0.0-p353: http://ruby-lang.org (Ruby 1.9.3-p484) || Paste >3 lines of text on http://gist.github.com || this channel is logged at http://irclog.whitequark.org, other public logging is prohibited
_Andres has quit [Quit: My Mac Pro has gone to sleep. ZZZzzz…]
kofno has quit [Ping timeout: 252 seconds]
sevin has joined #ruby
flubba has joined #ruby
iliketur_ has joined #ruby
dogweather has joined #ruby
Mon_Ouie has joined #ruby
Mon_Ouie has joined #ruby
Mon_Ouie has quit [Changing host]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
zipper has joined #ruby
pyx has joined #ruby
pyx has quit [Client Quit]
coca_rails has joined #ruby
RoryHughes has quit [Ping timeout: 265 seconds]
r0bby_ has joined #ruby
phipes has quit [Read error: Connection reset by peer]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
RoryHughes has joined #ruby
phipes has joined #ruby
phipes has quit [Read error: Connection reset by peer]
phipes has joined #ruby
coca_rails has quit [Ping timeout: 245 seconds]
jrhe_ has joined #ruby
anomaly_ has quit [Ping timeout: 256 seconds]
Txandy|away has quit [Quit: Leaving...]
cantonic has quit [Read error: Connection reset by peer]
cantonic has joined #ruby
TripleDES has quit [Ping timeout: 248 seconds]
<shevy> hmmm
<shevy> I just wrote
<shevy> alies foo set_foo
<shevy> and wondered why it did not work
xk_id has quit [Quit:
iliketu__ has joined #ruby
iliketur_ has quit [Ping timeout: 260 seconds]
VTLob has quit [Quit: VTLob]
bvsh has quit [Ping timeout: 264 seconds]
<nfk> i'm again failing at ruby after not having used it for a month
<nfk> T_T
saragojo has quit [Remote host closed the connection]
coca_rails has joined #ruby
saragojo has joined #ruby
<YOURBESTFRIEND> ?
<nfk> there are three problems: 1) the if conditional has broken syntax somehow, 2) the commented out line again triggers syntax error despite working on its own in irb and 3) the last puts line is always 0 which i suspect has something to do some closure magic
Zesty has quit [Quit: Linkinus - http://linkinus.com]
coldmethod has quit [Ping timeout: 248 seconds]
moi2 has quit [Remote host closed the connection]
havenwood has quit [Remote host closed the connection]
<YOURBESTFRIEND> please use do when it spans multiple lines
<nfk> as in instead of {}?
havenwood has joined #ruby
<YOURBESTFRIEND> yes
<YOURBESTFRIEND> what do you expect the result to be?
<nfk> i expect the program to work
saragojo has quit [Remote host closed the connection]
AlSquirrel has joined #ruby
<nfk> i think the name bubble_sort is pretty much self-explanatory
akafurious has joined #ruby
asmodeo has quit []
saragojo has joined #ruby
<nfk> oh, i see, ++ does not work, i just misread irb output
<DouweM> nfk: yeah, Ruby doesn't have ++. use += 1
<nfk> and actually this fixed all the problems
<nfk> i did know that ++ didn't work but i tried it in irb and it did sort of work
<nfk> but it was just some funky behaviour
<DouweM> Your code still isn't idiomatic ruby though
havenwood has quit [Ping timeout: 248 seconds]
randomnick_ has quit [Quit: Leaving]
<nfk> as in?
<nfk> also i don't want my lecturer to freak out completely
<shevy> nfk never trust irb 100%
<shevy> the ruby parser sometimes behaves differently
<shevy> for instance, in irb you can use ++
<nfk> you can't
<DouweM> nfk: well, the `do` thing already mentioned, lack of spaces around operators, `(a.length-1).downto(1)` looks awkward, indentation is wrong
<shevy> nfk why not? what error do you get?
<nfk> not an error, it just expects more input
<DouweM> shevy: why would ++ work in irb?
<shevy> input it
<shevy> it works
Spami has joined #ruby
<shevy> it just does nothing
<DouweM> shevy: I just did. doesn.t
<shevy> you get an error?
justinxreese has joined #ruby
<nfk> it expects more input
<DouweM> as nfk says, it expects more input
<nfk> so if you enter a=0
<nfk> a++
<nfk> a
<nfk> to look at a
<shevy> how do you know that it expects more input
<DouweM> looks like it things ++ is an operator, so it wants more
<shevy> a++ is not ++
<nfk> then it executes a++a
<nfk> which is just a+a, i suspect
jamesaanderson has quit [Quit: Textual IRC Client: www.textualapp.com]
<shevy> >> ++
<nfk> which is 0 if a is 0
<eval-in_> shevy => /tmp/execpad-23572cfc25c0/source-23572cfc25c0:3: syntax error, unexpected keyword_rescue ... (https://eval.in/79536)
<DouweM> nfk right
shuvarek has quit [Ping timeout: 245 seconds]
<nfk> but if you do a=1 then you get
<nfk> 2
<DouweM> shevy: try it for yourself. it doesn't work
<nfk> and think IT WORKS
<shevy> DouweM I did, when I input "++" in irb, nothing happens, no error. I can continue typing fine
Spami has quit [Client Quit]
<nfk> shevy, aren't you a guru?
<DouweM> I find that very hard to believe. gist your in- and output
<nfk> after you enter ++ the prompt ends in *
<shevy> I make a screenshot for you guys
<nfk> which means that it expects more input, from what i understand
<DouweM> nfk: yeah, you're completely right
Spami has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
<nfk> now, what's the best way to make argument passed to a function to not be affected by function?
<nfk> so that in that example the a passed to the sorting function is not changed outside the context of the function
<shevy> you can use .dup on what you work inside of a method
<nfk> anything cleaner?
coca_rails has quit [Remote host closed the connection]
<DouweM> shevy: right. that's what we mean. it thinks all the +'s are operators, and waits for extra input. when you eventually type 5, it'll evaluate "0 + 5", yielding 5. But type "x = 3; x++" and it won't give you the `4` you'd expect in other languages
<DouweM> shevy: also, your irb is all weird
coldmethod has joined #ruby
<shevy> :(
coca_rails has joined #ruby
<shevy> it's like the most primitive irb in existance
crapple has quit [Excess Flood]
crapple has joined #ruby
<nfk> shevy, actually i went for .dup being called during calling of the function
<nfk> sort of cleaner IMO
zipper has quit [Quit: Lost terminal]
<nfk> thanks for general idea
<shevy> nfk can you upload the correct version of your current code + input so I can figure out what your code is doing
<nfk> shevy, for real?
<shevy> if you have not solved it yet sure, but if you have solved it already then not
<nfk> i have sorted it
<DouweM> shevy: this is my irb: https://gist.github.com/DouweM/7967026 the indentation you see after my first '++' is IRB indicating it wants more input, which I eventually give in the form of '5'
<nfk> unless there's a bug somewhere
<shevy> ok good
<DouweM> shevy: why does your IRB look nothing like mine?
saragojo has quit [Remote host closed the connection]
<shevy> DouweM your irb is more hipster than mine
saragojo has joined #ruby
anomaly_ has joined #ruby
klaut has quit [Remote host closed the connection]
<DouweM> shevy: my IRB is the default one, you've done something strange to yours :P
<shevy> DouweM my irb was too noisy in the past so I muted it more and more as time passed by
siwica has quit [Ping timeout: 252 seconds]
<DouweM> shevy: hah, all right
coca_rails has quit [Ping timeout: 245 seconds]
<nfk> http://pastebin.kde.org/pyktohcox/jt4huh // shevy and rest, the working code
<nfk> just call it with an array as argument
<shevy> hmm
<shevy> [1, 6, 33, 111]
<shevy> Bubble sort needed 6 comparisons and 0 switches.
<nfk> like [1, 2, 28, 3, 54, 3]
<shevy> Bubble sort needed 15 comparisons and 3 switches.
siwica has joined #ruby
phipes has quit [Remote host closed the connection]
<nfk> for better understanding try something like [7, 1, 2, 3, 4, 5]
RoryHughes has quit []
<nfk> and if you still don't get what it's doing then try reading wikipedia
preller has quit [Read error: Operation timed out]
RoryHughes has joined #ruby
LexicalScope has quit [Ping timeout: 240 seconds]
phipes has joined #ruby
RoryHughes has quit [Client Quit]
<shevy> hmm
<shevy> it seems to align from min -> max
<nfk> yes
<nfk> it's the most basic sorting algorithm
anderson has quit [Ping timeout: 240 seconds]
RoryHughes has joined #ruby
anderson has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
<shevy> hey guys
<shevy> "example_01.rb"
<shevy> what would be a short way to get the "example_01" part only?
nettoweb has joined #ruby
dunckr has quit [Remote host closed the connection]
<lupine> "".split(".")[0..-2].join(".")
<lupine> not sure you can do any better
RoryHughes has quit [Ping timeout: 240 seconds]
<heftig> shevy: File.basename("example_01.rb", ".rb")
<heftig> >> File.basename("example_01.rb", ".rb")
<eval-in_> heftig => "example_01" (https://eval.in/79537)
<shevy> aaaaah
<shevy> nice, thanks to you both
<heftig> basename also strips any path from the string
jrhe_ has left #ruby [#ruby]
<heftig> >> File.basename("/foo/bar/example_01.rb", ".rb")
<eval-in_> heftig => "example_01" (https://eval.in/79538)
xk_id has joined #ruby
phipes has quit [Remote host closed the connection]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
preller has joined #ruby
preller has joined #ruby
preller has quit [Changing host]
ghatak has joined #ruby
fuhgeddaboudit has joined #ruby
agjacome has quit [Ping timeout: 260 seconds]
robustus has quit [Ping timeout: 264 seconds]
predator217 has joined #ruby
jhn has quit [Ping timeout: 240 seconds]
robustus has joined #ruby
predator117 has quit [Ping timeout: 265 seconds]
narcan has quit [Quit: -[AppDelegate installMalware]: unrecognized selector sent to instance 0x156109c0]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
Jetchisel has quit [Ping timeout: 260 seconds]
jacobsmith has quit [Ping timeout: 252 seconds]
Jetchisel has joined #ruby
coca_rails has joined #ruby
saragojo has quit [Remote host closed the connection]
volty has quit [Quit: Konversation terminated!]
saragojo has joined #ruby
timonv has joined #ruby
preller has quit [Read error: Operation timed out]
preller has joined #ruby
preller has quit [Changing host]
preller has joined #ruby
coca_rails has quit [Ping timeout: 245 seconds]
fuhgeddaboudit has quit [Ping timeout: 260 seconds]
timonv has quit [Ping timeout: 240 seconds]
RoryHughes has joined #ruby
mengu has quit [Remote host closed the connection]
saragojo has quit [Remote host closed the connection]
freggles has quit [Ping timeout: 248 seconds]
jrhe_ has joined #ruby
saragojo has joined #ruby
maletor has quit [Quit: Computer has gone to sleep.]
kaiza has quit [Read error: Operation timed out]
freggles has joined #ruby
freggles has quit [Changing host]
freggles has joined #ruby
cmedeiros has quit [Read error: Operation timed out]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
lyanchih has joined #ruby
lsoa has quit [Read error: Connection reset by peer]
wc- has joined #ruby
nettoweb has quit [Quit: nettoweb]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
wc- has quit [Ping timeout: 265 seconds]
jacobsmith has joined #ruby
ddd has quit [Ping timeout: 248 seconds]
BraddPitt has quit [Read error: Connection reset by peer]
BraddPitt has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
lupine has quit [Ping timeout: 246 seconds]
jrhe_ has quit [Quit: jrhe_]
RoryHughes has quit []
kitak has quit [Remote host closed the connection]
jrhe_ has joined #ruby
Konst2 has quit [Read error: Operation timed out]
davy_ has joined #ruby
wc- has joined #ruby
orolo has joined #ruby
fijimunkii has quit [Ping timeout: 265 seconds]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
mengu has joined #ruby
<orolo> i'm wondering if i understand this correctly: if you call method "foo" like so: foo = val1 val2 it will execute the function with those vars?
ddd has joined #ruby
mmcdaris has joined #ruby
maletor has joined #ruby
speakingcode has quit [Quit: Lost terminal]
mmcdaris has left #ruby [#ruby]
<kostine> orolo = is a method with those params
<kostine> there is actually a method defined called =
Konst has joined #ruby
<kostine> if a method IS foo, then you would do foo param1 param2, or foo(param1, param2)
<orolo> kostine, ok. so, to confirm. if i include a class that contains a method "orolo". in my class; "orolo = var1" will execute that method from the other class?
saragojo has quit [Remote host closed the connection]
<kostine> inside of the class you would define that method with def
saragojo has joined #ruby
<kostine> def orolo(param1, param2)
<kostine> end
<kostine> or just
<kostine> def orolo
<kostine> end
wc- has quit [Ping timeout: 240 seconds]
<kostine> if it doesn't have params
<orolo> kostine, yes; but i think i'm dealing with the = as a setter.
<kostine> you want to set a variable in your class to some value?
brain_shim has joined #ruby
<kostine> you can just add attr_accessor
<orolo> i'm looking at a method that works and i'm wondering if i understand it correctly. let do a gist.
fijimunkii has joined #ruby
<orolo> 1 moment
<kostine> k
mengu has quit [Ping timeout: 240 seconds]
<orolo> thanks kostine but i'm going to stare at this some more; i have to debug some stuff for awhile.
BraddPitt has quit [Ping timeout: 248 seconds]
kofno has joined #ruby
brain_shim has quit [Ping timeout: 248 seconds]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
kofno has quit [Ping timeout: 248 seconds]
anomaly_ has quit [Ping timeout: 252 seconds]
lyanchih has quit [Quit: lyanchih]
lupine has joined #ruby
<orolo> thanks kostine, that all makes sense.
<orolo> my confusion is: at the bottom of the file, could you do: test_instance = orolo
phipes has joined #ruby
xk_id has quit [Quit:
<orolo> and would it eval the method or just overwrite test_instance as a string.
ddd has quit [Ping timeout: 264 seconds]
wc- has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
<kostine> you would get undefined method `test_instance='
<orolo> ok. i actually discovered that the request was routed around this method. so, even though i thought there was some weird ruby method call it was never being called.
ua has quit [Quit: Leaving]
Hanmac1 has joined #ruby
<kostine> attr_accessor creates those for the :color, but if it doesn't explicitly exists, it will be be just missing method
<orolo> right. cool. that makes sense.
<kostine> you can write your own attr_accessor or just attr_reader, or just attr_writer, or just define them as methods that are getters and setters, setters would end in = normally
hakunin has joined #ruby
<kostine> attr_reader :color is the same as
Markvilla has joined #ruby
<kostine> def color
<kostine> @color
<kostine> end
<kostine> and attr_writer is the same as
xk_id has joined #ruby
phipes has quit [Ping timeout: 252 seconds]
<kostine> def color=(value)
Hanmac has quit [Ping timeout: 240 seconds]
<kostine> @color = value
<kostine> end
<kostine> + -
wc- has quit [Ping timeout: 265 seconds]
s2013 has quit [Read error: Connection reset by peer]
s2013 has joined #ruby
ewnd9 has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
marr has quit [Ping timeout: 264 seconds]
Jetchisel has left #ruby ["Unfortunately time is always against us -- *Morpheus*"]
phipes has joined #ruby
eka has quit [Quit: Computer has gone to sleep.]
mr_red has quit [Ping timeout: 252 seconds]
iliketur_ has joined #ruby
fgo has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
iliketu__ has quit [Ping timeout: 248 seconds]
peregrine81 has joined #ruby
prc has quit [Quit: Leaving.]
banghouse2 is now known as banghouse
nateberkopec has joined #ruby
benzrf has joined #ruby
<benzrf> what is the correct way to get the index of the max element of an array
mr_red has joined #ruby
preller has quit [Ping timeout: 245 seconds]
coca_rails has joined #ruby
vpretzel has joined #ruby
nateberkopec has quit [Client Quit]
rootshift has joined #ruby
subbyyy has joined #ruby
saragojo has quit [Remote host closed the connection]
akafurious has quit [Remote host closed the connection]
saragojo has joined #ruby
Tamae has quit [Quit: KVIrc 4.0.4 Insomnia http://www.kvirc.net/]
ddd has joined #ruby
ghatak has quit [Ping timeout: 265 seconds]
anomaly_ has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
maroloccio has joined #ruby
kitak has joined #ruby
<kostine> find_index
diegoviola has joined #ruby
<kostine> a = [1,2,25,3]
<kostine> a.find_index(a.max)
<kostine> => 2
<kostine> benzrf:
akonny has joined #ruby
preller has joined #ruby
sevin has quit [Ping timeout: 245 seconds]
rootshift has quit [Quit: rootshift]
benzrf has left #ruby [#ruby]
dhruvasagar has joined #ruby
maletor has quit [Quit: Computer has gone to sleep.]
marcgg has quit [Read error: Connection reset by peer]
decoponio has joined #ruby
marcgg has joined #ruby
preller has quit [Ping timeout: 240 seconds]
preller has joined #ruby
preller has quit [Changing host]
preller has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
moi2 has joined #ruby
pen has joined #ruby
Briareos1 has quit [Remote host closed the connection]
ddd has quit [Ping timeout: 240 seconds]
postmodern has quit [Quit: Leaving]
wc- has joined #ruby
ElasticElephant has joined #ruby
phipes has quit [Remote host closed the connection]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
moi2 is now known as abowhill
akonny has quit [Quit: akonny]
sevin has joined #ruby
emocakes has joined #ruby
dhruvasagar has quit [Ping timeout: 260 seconds]
phipes has joined #ruby
wallerdev has quit [Quit: wallerdev]
fijimunkii has quit [Ping timeout: 264 seconds]
timonv has joined #ruby
coca_rails has quit [Remote host closed the connection]
fijimunkii has joined #ruby
coca_rails has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
mwillhite has joined #ruby
peregrine81 has quit []
ddd has joined #ruby
<mwillhite> hey all - why is it when I create a factory (using factorygirl) with create(:store)…Store.all returns empty?
jkhwan has quit [Remote host closed the connection]
timonv has quit [Ping timeout: 245 seconds]
<mwillhite> I'm using create(:store) in a let, but the Store.all is in a before block
coca_rails has quit [Ping timeout: 245 seconds]
dhruvasagar has joined #ruby
<mwillhite> when I create(:store) in the before block it works
emocakes has quit [Quit: Linkinus - http://linkinus.com]
saragojo has quit [Remote host closed the connection]
fijimunkii has quit [Ping timeout: 252 seconds]
colonolGron has quit [Quit: leaving]
saragojo has joined #ruby
jkhwan has joined #ruby
fijimunkii has joined #ruby
crazymykl has quit [Ping timeout: 252 seconds]
<mwillhite> nm got it, had to use let!
jkhwan has quit [Remote host closed the connection]
Asitha has joined #ruby
lyanchih has joined #ruby
preller has quit [Ping timeout: 252 seconds]
momomomomo has joined #ruby
jrhe_ has quit [Quit: jrhe_]
<YOURBESTFRIEND> what's the name of the function that puts without printing line feeds?
flame_ has joined #ruby
wc- has quit [Quit: wc-]
<YOURBESTFRIEND> print
crazymykl has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
* apeiros thinks all-caps-nick should be a banable offense
peregrine81 has joined #ruby
peregrine81 has quit [Client Quit]
Markvilla has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
peregrine81 has joined #ruby
jkhwan has joined #ruby
saragojo has quit [Remote host closed the connection]
freggles has quit [Remote host closed the connection]
saragojo has joined #ruby
jtgiri_ has joined #ruby
Konst2 has joined #ruby
iliketur_ has quit [Quit: zzzzz…..]
freggles has joined #ruby
Konst has quit [Ping timeout: 265 seconds]
<jle`> apeiros: but...he is your best frield :/
_maes_ has joined #ruby
preller has joined #ruby
coderhs has quit [Ping timeout: 265 seconds]
orolo has quit [Ping timeout: 264 seconds]
<mwillhite> what causes 'execution expired' in specs and how can I avoid it?
<mwillhite> Failure/Error: expect(response.body).to_not include_json(other_store_json)
<mwillhite> (anonymous error class):
<mwillhite> execution expired
<mwillhite> bleh sorry
jkhwan has quit [Remote host closed the connection]
iliketur_ has joined #ruby
iliketur_ has quit [Client Quit]
<YOURBESTFRIEND> when saving a marshal dump to a file, should I use the binary file mode?
coldmethod has quit [Ping timeout: 248 seconds]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
iliketur_ has joined #ruby
bradhe has joined #ruby
<YOURBESTFRIEND> shit guys
<YOURBESTFRIEND> help
ixti has quit [Quit: WeeChat 0.4.2]
saragojo has quit [Remote host closed the connection]
atno has quit [Remote host closed the connection]
saragojo has joined #ruby
Spami has quit [Quit: This computer has gone to sleep]
jacobsmith has quit [Ping timeout: 260 seconds]
Thanatermesis has quit [Quit: ɯlɐɔ uı ʞɹoʍ oʇ ƃuıoƃ]
jhn has joined #ruby
roadt has joined #ruby
coderhs has joined #ruby
ewnd9 has quit [Ping timeout: 264 seconds]
floorpi has quit [Ping timeout: 264 seconds]
Shidash has joined #ruby
Brolen has joined #ruby
ddd has quit [Ping timeout: 245 seconds]
saragojo has quit [Remote host closed the connection]
Spami has joined #ruby
saragojo has joined #ruby
coldmethod has joined #ruby
nowthatsamatt has quit [Quit: nowthatsamatt]
maletor has joined #ruby
Brolen has left #ruby [#ruby]
subbyyy has quit [Ping timeout: 264 seconds]
dhruvasagar has quit [Remote host closed the connection]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
jkhwan has joined #ruby
primenum has joined #ruby
dktm has joined #ruby
radic has quit [Disconnected by services]
radic_ has joined #ruby
jkhwan has quit [Ping timeout: 272 seconds]
freerobby has quit [Quit: Leaving.]
rootshift has joined #ruby
maletor has quit [Quit: Computer has gone to sleep.]
Lostmonk has joined #ruby
saragojo has quit [Remote host closed the connection]
roadt has quit [Read error: Connection timed out]
saragojo has joined #ruby
roadt has joined #ruby
gasbakid_ has quit [Read error: Connection reset by peer]
coderhs has quit [Ping timeout: 248 seconds]
ewnd9 has joined #ruby
jacobsmith has joined #ruby
mary5030 has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
aapzak has quit [Ping timeout: 264 seconds]
braincra- has quit [Quit: bye bye]
braincrash has joined #ruby
flame_ has quit [Quit: Computer has gone to sleep.]
mojjojo has joined #ruby
coderhs has joined #ruby
multi_io has joined #ruby
aapzak has joined #ruby
saragojo has quit [Remote host closed the connection]
<multi_io> on my debian system, I get: /usr/bin/gem1.8 --version => 1.8.24, /usr/bin/gem1.9 --version => 1.2.0, /usr/bin/gem1.9.1 --version => 1.8.23
saragojo has joined #ruby
<multi_io> WTF?
sevin has quit [Ping timeout: 245 seconds]
iliketur_ has quit [Quit: zzzzz…..]
sevin has joined #ruby
iliketur_ has joined #ruby
rootshift has quit [Quit: rootshift]
soulcake has quit [Read error: Connection reset by peer]
bradhe has quit [Remote host closed the connection]
lethjakm1 has quit [Ping timeout: 252 seconds]
soulcake has joined #ruby
saragojo has quit [Remote host closed the connection]
iliketur_ has quit [Client Quit]
saragojo has joined #ruby
peregrine81 has quit []
Spami has quit [Quit: This computer has gone to sleep]
mwillhite has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
lyanchih has quit [Quit: lyanchih]
jacobsmith has quit [Quit: leaving]
nateberkopec has joined #ruby
coderhs has quit [Ping timeout: 252 seconds]
mary5030 has quit [Remote host closed the connection]
lobe has joined #ruby
mary5030 has joined #ruby
wc- has joined #ruby
coderhs has joined #ruby
hogeo has joined #ruby
mojjojo has quit [Quit: mojjojo]
rdevilla has joined #ruby
anomaly_ has quit [Ping timeout: 252 seconds]
brianpWins has quit [Ping timeout: 240 seconds]
<rdevilla> Is Why's Poignant Guide to Ruby worth reading, or should I just dive into the language?
saragojo has quit [Remote host closed the connection]
<rdevilla> It is well written but very tedious and long winded... at the same time though I want to pick up some Ruby idioms on the way, and I don't know if Why's guide will give me this
saragojo has joined #ruby
mary5030 has quit [Ping timeout: 240 seconds]
kevinykchan has quit [Quit: Computer has gone to sleep.]
brianpWins has joined #ruby
wc- has quit [Client Quit]
freerobby has joined #ruby
LexicalScope has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
nateberkopec has quit [Quit: Leaving...]
preller has quit [Ping timeout: 264 seconds]
coderhs has quit [Ping timeout: 240 seconds]
petey has joined #ruby
coldmethod has quit [Ping timeout: 264 seconds]
nowthatsamatt has joined #ruby
freerobby has quit [Ping timeout: 240 seconds]
brianpWi1s has joined #ruby
bobdobbs` has joined #ruby
brianpWins has quit [Ping timeout: 260 seconds]
BraddPitt has joined #ruby
kofno has joined #ruby
preller has joined #ruby
petey has quit [Ping timeout: 245 seconds]
fgo has quit [Remote host closed the connection]
coca_rails has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
nari has joined #ruby
preller has quit [Ping timeout: 240 seconds]
Konst2 has quit [Ping timeout: 265 seconds]
Konst has joined #ruby
coderhs has joined #ruby
brianpWi1s has quit [Ping timeout: 240 seconds]
saragojo has quit [Remote host closed the connection]
brianpWins has joined #ruby
saragojo has joined #ruby
timonv has joined #ruby
preller has joined #ruby
coldmethod has joined #ruby
jtgiri_ has quit [Quit: jtgiri_]
Konst has quit [Ping timeout: 265 seconds]
Konst has joined #ruby
tharindu has joined #ruby
m0use_ has joined #ruby
floorpi has joined #ruby
floorpi has joined #ruby
floorpi has quit [Changing host]
x1337807x has joined #ruby
s2013 has quit [Ping timeout: 240 seconds]
timonv has quit [Ping timeout: 248 seconds]
anomaly_ has joined #ruby
bradhe has joined #ruby
mmcdaris has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
brianpWins has quit [Ping timeout: 260 seconds]
Asitha has quit []
Emmanuel_Chanel has quit [Quit: Leaving]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
m0use_ has left #ruby [#ruby]
diegoviola has quit [Ping timeout: 248 seconds]
jrhorn424afk is now known as jrhorn424
jtgiri_ has joined #ruby
<bobdobbs`> hey guys. I'm having trouble setting up ruby on ubuntu linux.
preller has quit [Ping timeout: 265 seconds]
<bobdobbs`> I've been using rbenv.
coderhs has quit [Ping timeout: 248 seconds]
preller has joined #ruby
preller has quit [Changing host]
preller has joined #ruby
<bobdobbs`> I used rbenv to install 1.8.7 aaaages ago. And it's been working fine. Just now I've used rbenv to install 2.0
<bobdobbs`> however, once I've installed ruby 2.0 and do 'rbenv global 2.0.0.-p0', my ruby version is still 1.8.7
<bobdobbs`> I'd like to switch to 2.0
<bobdobbs`> well, ideally, i'd like to be able to use both of them
jkhwan has joined #ruby
coderhs has joined #ruby
jrhorn424 is now known as jrhorn424afk
browndawg has joined #ruby
<bobdobbs`> If I do 'which ruby', I get '/usr/bin/ruby', which is a pointer do '/etc/alternatives/ruby'
coca_rails has quit [Remote host closed the connection]
<bobdobbs`> however, if I do 'apt-get remove ruby', apt-get tells me that ruby isn't installed
<bobdobbs`> I think I've got package management hell
<bobdobbs`> how do I make 'ruby' point to whichever version of ruby is being managed by rbenv?
phipes has quit [Remote host closed the connection]
jkhwan has quit [Remote host closed the connection]
reach has quit [Remote host closed the connection]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
nomenkun has joined #ruby
fgo has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
phipes has joined #ruby
bobrenjc93 has joined #ruby
fgo has quit [Ping timeout: 248 seconds]
bobrenjc93 has left #ruby [#ruby]
aspires has joined #ruby
shedd has joined #ruby
mmcdaris has quit [Quit: mmcdaris]
phipes has quit []
osvico has quit [Ping timeout: 260 seconds]
brianpWins has joined #ruby
saragojo has quit [Remote host closed the connection]
marcgg has quit [Read error: Connection reset by peer]
saragojo has joined #ruby
marcgg has joined #ruby
rootshift has joined #ruby
kofno has quit [Ping timeout: 245 seconds]
aspires has quit []
coderhs has quit [Ping timeout: 240 seconds]
fgo has joined #ruby
saragojo has quit [Remote host closed the connection]
brianpWins has quit [Ping timeout: 260 seconds]
spike|spiegel has quit [Ping timeout: 245 seconds]
saragojo has joined #ruby
tharindu has quit [Ping timeout: 260 seconds]
Spleeze has quit [Ping timeout: 248 seconds]
freerobby has joined #ruby
coca_rails has joined #ruby
lemonsparrow_ has joined #ruby
lemonsparrow_ has quit [Client Quit]
kofno has joined #ruby
lemonsparrow_ has joined #ruby
lemonsparrow_ is now known as lemonsprarrow
freerobby has quit [Ping timeout: 245 seconds]
lemonsparrow is now known as Guest79689
lemonsprarrow is now known as krishnaveda
nomenkun has quit [Remote host closed the connection]
coderhs has joined #ruby
rootshift has quit [Quit: rootshift]
shedd has quit [Remote host closed the connection]
ttlnowz has quit [Quit: leaving]
rootshift has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
preller has quit [Ping timeout: 252 seconds]
mgberlin has quit [Quit: mgberlin]
Guest31328 is now known as Radar
aspires has joined #ruby
zz_CripperZ is now known as CripperZ
aryaching has joined #ruby
subbyyy has joined #ruby
floorpi has quit [Ping timeout: 241 seconds]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
Jetchisel has joined #ruby
preller has joined #ruby
preller has quit [Changing host]
preller has joined #ruby
kofno has quit [Read error: Connection reset by peer]
coca_rails has quit [Remote host closed the connection]
fridim_ has quit [Ping timeout: 248 seconds]
rootshift has quit [Quit: rootshift]
ckinni has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
nomenkun has joined #ruby
petey has joined #ruby
coderhs has quit [Ping timeout: 240 seconds]
sevin has quit [Ping timeout: 240 seconds]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
krishnaveda has quit [Ping timeout: 272 seconds]
petey has quit [Ping timeout: 260 seconds]
xk_id has quit [Quit:
ambushsabre has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
sayan has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
coderhs has joined #ruby
preller has quit [Ping timeout: 252 seconds]
ddd has joined #ruby
xk_id has joined #ruby
diegoviola has joined #ruby
fedesilv_ has quit [Remote host closed the connection]
diegoviola has quit [Changing host]
diegoviola has joined #ruby
bobdobbs` has quit [Remote host closed the connection]
preller has joined #ruby
wallerdev has joined #ruby
lyanchih has joined #ruby
jtgiri_ has quit [Quit: jtgiri_]
nomenkun has quit [Read error: Connection reset by peer]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
fijimunkii has quit [Ping timeout: 240 seconds]
primenum has quit [Ping timeout: 240 seconds]
braincrash has quit [Ping timeout: 264 seconds]
primenum has joined #ruby
iliketur_ has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
whysosad has joined #ruby
CripperZ is now known as N00D
floorpi has joined #ruby
floorpi has joined #ruby
floorpi has quit [Changing host]
h0rrorvacui has joined #ruby
<nfk> i just got stack level too deep (SystemStackError)
<nfk> and i'm so tired i'm almost a zombie
iliketur_ has quit [Client Quit]
dogweather has quit []
maletor has joined #ruby
<nfk> oh great, it's a forkbomb
DeProdigy has quit [Ping timeout: 264 seconds]
ckinni has joined #ruby
SHyx0rmZ has quit [Quit: ネウロイを負かさなきゃならないね]
hogeo has quit [Remote host closed the connection]
MattStratton has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
Derpinette has joined #ruby
goleldar has joined #ruby
preller has quit [Ping timeout: 245 seconds]
<Derpinette> I am trying to bundle install some ruby gems and I get one that fails json1.7.7
<Derpinette> gem install works
<Derpinette> but bundle install fails
<Derpinette> This is on a Fedora VPS
wallerdev has quit [Quit: wallerdev]
DeProdigy has joined #ruby
<ddd> read that then ask your questions again. following the suggested format that article details
Emmanuel_Chanel has joined #ruby
saragojo has quit [Remote host closed the connection]
Rennex_ is now known as Rennex
saragojo has joined #ruby
coderhs has quit [Read error: Connection timed out]
ewnd9 has quit [Remote host closed the connection]
<Derpinette> I don't see where I went wrong, other than I am still trying to get the error messaged copied....
ewnd9 has joined #ruby
ss_ has joined #ruby
DeProdigy has quit [Ping timeout: 240 seconds]
freerobby has joined #ruby
coderhs has joined #ruby
<Derpinette> Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.
preller has joined #ruby
<Derpinette> . /usr/bin/ruby extconf.rb
DeProdigy has joined #ruby
Spami has joined #ruby
<ddd> it will also give a log file to check and usually tells you the specifics in that log file of the build what exactly went wrong
gja has joined #ruby
lemonsparrow has joined #ruby
predator217 has quit [Ping timeout: 240 seconds]
freerobby has quit [Ping timeout: 265 seconds]
OdNairy has joined #ruby
OdNairy has quit [Client Quit]
OdNairy has joined #ruby
DeProdigy has quit [Ping timeout: 245 seconds]
shredding has joined #ruby
<Derpinette> the log file it tells me only shows that /usr/bin/ruby extconf.rb line
coderhs has quit [Ping timeout: 240 seconds]
<Derpinette> otherwise there is no other log file I know about
timonv has joined #ruby
x1337807x has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
coderhs has joined #ruby
psyl0n has quit [Remote host closed the connection]
rootshift has joined #ruby
OdNairy has quit []
preller has quit [Ping timeout: 240 seconds]
preller has joined #ruby
timonv has quit [Ping timeout: 248 seconds]
saragojo has quit [Remote host closed the connection]
lemonsparrow has quit [Ping timeout: 272 seconds]
saragojo has joined #ruby
Spami has quit [Quit: This computer has gone to sleep]
coldmethod has quit [Remote host closed the connection]
N00D is now known as CripperZ
anomaly_ has quit [Ping timeout: 252 seconds]
OdNairy has joined #ruby
arietis has joined #ruby
noop has joined #ruby
shedd has joined #ruby
coderhs has quit [Ping timeout: 248 seconds]
Spami has joined #ruby
pen has quit [Read error: Connection reset by peer]
pen has joined #ruby
pen has quit [Remote host closed the connection]
justsee has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
Es0teric has quit [Quit: Computer has gone to sleep.]
rootshift has quit [Quit: rootshift]
shedd has quit [Ping timeout: 240 seconds]
hogeo has joined #ruby
krz has joined #ruby
krz has joined #ruby
krz has quit [Changing host]
preller has quit [Ping timeout: 245 seconds]
sayan has quit [Ping timeout: 248 seconds]
CripperZ is now known as N00D
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
sevin has joined #ruby
hogeo has quit [Ping timeout: 240 seconds]
emocakes has joined #ruby
preller has joined #ruby
teenwolf has quit [Quit: Leaving...]
aspires has quit []
N00D is now known as CripperZ
maletor has quit [Quit: Computer has gone to sleep.]
DeProdigy has joined #ruby
relix has joined #ruby
brain_shim has joined #ruby
nowthatsamatt has quit [Quit: nowthatsamatt]
justsee has quit [Ping timeout: 260 seconds]
brain_shim has quit [Max SendQ exceeded]
brenix has joined #ruby
DeProdigy has quit [Ping timeout: 240 seconds]
coderhs has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
r0bby_ has quit [Ping timeout: 264 seconds]
r0bby_ has joined #ruby
fgo has quit [Remote host closed the connection]
bluOxigen has joined #ruby
predator117 has joined #ruby
gja has quit [Quit: This computer has gone to sleep]
arietis has quit [Quit: Computer has gone to sleep.]
anomaly_ has joined #ruby
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
brenix has left #ruby ["WeeChat 0.4.2"]
predator117 has quit [Ping timeout: 260 seconds]
phipes has joined #ruby
IceDragon has quit [Quit: Space~~~]
relix has joined #ruby
goleldar_ has joined #ruby
kitak has quit [Remote host closed the connection]
wallerdev has joined #ruby
OdNairy has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
nfk has quit [Quit: yawn]
relix has quit [Client Quit]
coderhs has quit [Ping timeout: 252 seconds]
shredding has quit [Quit: shredding]
goleldar has quit [Ping timeout: 265 seconds]
arietis has joined #ruby
Hanmac has joined #ruby
Hanmac1 has quit [Ping timeout: 248 seconds]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
coderhs has joined #ruby
dktm has quit [Ping timeout: 248 seconds]
dseitz has joined #ruby
saragojo has quit [Remote host closed the connection]
brianpWins has joined #ruby
saragojo has joined #ruby
relix has joined #ruby
aryaching has quit []
hogeo has joined #ruby
h0rrorvacui has quit [Quit: Leaving]
sayan has joined #ruby
prakriti has quit [Ping timeout: 248 seconds]
mephux has joined #ruby
freerobby has joined #ruby
hogeo has quit [Ping timeout: 245 seconds]
krz has quit [Quit: WeeChat 0.4.2]
DeProdigy has joined #ruby
fgo has joined #ruby
coderhs has quit [Ping timeout: 245 seconds]
niop has joined #ruby
<niop> anyone know how to pipeline this css?: background: transparent url(../img/bg.jpg) repeat 0% 0%;
Guest88982 has joined #ruby
Guest88982 has quit [Client Quit]
<niop> have tried replacing "url(..)" with '<%= image_path(...) ' and also image_tag, but neither seem to work. parallax scroller isn't loading properly and presume this may be the reason.
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
freerobby has quit [Ping timeout: 265 seconds]
<emocakes> niop rails?
<emocakes> image_url()
zz_karupanerura is now known as karupanerura
<niop> rails.. oops. thought was in rails. lack of sleep.
petey has joined #ruby
saragojo has quit [Remote host closed the connection]
* emocakes spanks niop
<emocakes> bad boy
DeProdigy has quit [Ping timeout: 248 seconds]
saragojo has joined #ruby
<niop> the results are worth it, but for this niggling issue.
<niop> didn't know there was an image_url, but i've give it a spin. thanks
<niop> *I'll
<emocakes> also is asset_url i think
<emocakes> i use them anyway, and they work.. so i might be using a different rails :p
<niop> another, ok.. well, the more the merrier.
phipes has quit [Remote host closed the connection]
wallerdev has quit [Quit: wallerdev]
noop has quit [Ping timeout: 252 seconds]
mmcdaris has joined #ruby
petey has quit [Ping timeout: 240 seconds]
c0 has joined #ruby
<niop> tried both...
<niop> background: '<%= image_url("ut/plugins/parallax-slider/img/bg.jpg") %>'
<niop> background: '<%= asset_url("ut/plugins/parallax-slider/img/bg.jpg") %>'
<niop> didn't work, maybe the images aren't in the right spot in public.
saragojo has quit [Read error: Connection reset by peer]
<emocakes> mebbe
<emocakes> oh public
<emocakes> huh
saragojo has joined #ruby
<emocakes> just look in the browser console
<emocakes> and see what it is looking for
mmcdaris has quit [Quit: mmcdaris]
<emocakes> image_url etc are for files in the asset pipeline
predator117 has joined #ruby
<emocakes> /public isnt in the asset pipeline
<niop> i mean the compiled images are in the wrong place in public.
<niop> at the moment, they're located in matching asset directory tree. but read somewhere that one might have to put the images in public/images.
preller has quit [Ping timeout: 240 seconds]
hogeo has joined #ruby
dseitz has quit [Ping timeout: 264 seconds]
<niop> console gave this previously unseen msg "event.returnValue is deprecated. Please use the standard event.preventDefault() instead." that might be a sign that it worked, and it's proceeding further along the css
<niop> or js
saragojo has quit [Remote host closed the connection]
shadoi has quit [Quit: Leaving.]
saragojo has joined #ruby
rippa has joined #ruby
predator117 has quit [Remote host closed the connection]
<niop> it's just a warning msg.. i might check #rails, but they're usually rather quiet there.
<niop> thanks for the suggestions anyway. might still be worth experimenting with.
dseitz has joined #ruby
hogeo has quit [Ping timeout: 240 seconds]
rootshift has joined #ruby
preller has joined #ruby
c0 has left #ruby [#ruby]
Spami has quit [Quit: This computer has gone to sleep]
_HolyCow1 has joined #ruby
mmcdaris has joined #ruby
hilili has joined #ruby
sayan has quit [Ping timeout: 245 seconds]
hilili has quit [Client Quit]
_HolyCow has quit [Ping timeout: 272 seconds]
saragojo has quit [Remote host closed the connection]
primenum has quit [Ping timeout: 260 seconds]
saragojo has joined #ruby
<niop> in case emo is around.. the path is converted to " background: transparent '/assets/ut/plugins/parallax-slider/img/bg.jpg' "
<niop> from console
<niop> but that's not pipelined. so it's not wonder it's not finding the image. because all the images in public are compiled.
Spami has joined #ruby
Spami has quit [Changing host]
Spami has joined #ruby
Konst has quit [Ping timeout: 248 seconds]
mr_snowf1ake has quit [Read error: Operation timed out]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
iliketur_ has joined #ruby
rootshift has quit [Quit: rootshift]
tonni has quit [Remote host closed the connection]
saragojo has quit [Remote host closed the connection]
tonni has joined #ruby
saragojo has joined #ruby
rootshift has joined #ruby
davy_ has quit [Remote host closed the connection]
jekt has quit [Quit: This computer has gone to sleep]
jekt has joined #ruby
tonni has quit [Ping timeout: 260 seconds]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
rootshift has quit [Ping timeout: 245 seconds]
preller has quit [Ping timeout: 264 seconds]
madiba has joined #ruby
predator117 has joined #ruby
timonv has joined #ruby
Konst has joined #ruby
bradhe has quit [Remote host closed the connection]
bradhe has joined #ruby
iliketur_ has quit [Quit: zzzzz…..]
preller has joined #ruby
predator117 has quit [Ping timeout: 240 seconds]
timonv has quit [Ping timeout: 252 seconds]
subbyyy has quit [Ping timeout: 264 seconds]
yacks has quit [Ping timeout: 260 seconds]
bradhe has quit [Ping timeout: 248 seconds]
freerobby has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
yacks has joined #ruby
lyanchih has quit [Ping timeout: 240 seconds]
siton has joined #ruby
noop has joined #ruby
freerobby has quit [Ping timeout: 260 seconds]
DeProdigy has joined #ruby
bobdobbs has joined #ruby
phansch has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
lyanchih has joined #ruby
abowhill has quit [Remote host closed the connection]
siton has quit [Quit: Lost terminal]
flubba has quit [Remote host closed the connection]
dangerousdave has joined #ruby
siwica has quit [Ping timeout: 252 seconds]
Dreamer3 has quit [Quit: Computer has gone to sleep.]
Dreamer3 has joined #ruby
emergion has joined #ruby
sheap has joined #ruby
DeProdigy has quit [Ping timeout: 248 seconds]
yacks has quit [Read error: Operation timed out]
gja has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
Konst has quit [Ping timeout: 248 seconds]
<bobdobbs> I'm using grunt for a project. I've just updated ruby to 2.0. Now, when I run grunt I get this message: http://paste.laravel.com/1ept
<bobdobbs> It looks like grunt starts running, then decides that it isn't installed.
<bobdobbs> I figure that this is related to updating ruby
momomomomo has quit [Quit: momomomomo]
aagdbl has joined #ruby
diegoviola has quit [Quit: WeeChat 0.4.2]
tvw has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
<dseitz> Error suggests issue with Grunt
<bobdobbs> you know what... I'm a dumbass
<bobdobbs> I was running grunt in a dir with no gruntfile
hogeo has joined #ruby
* bobdobbs returns to newb corner. dons dunce cap
dangerousdave has quit [Quit: My Mac Pro has gone to sleep. ZZZzzz…]
jekt has quit [Quit: This computer has gone to sleep]
b00stfr3ak has quit [Ping timeout: 240 seconds]
dseitz has quit [Ping timeout: 240 seconds]
hogeo has quit [Ping timeout: 240 seconds]
tesuji has joined #ruby
saragojo has quit [Remote host closed the connection]
dseitz has joined #ruby
saragojo has joined #ruby
jhn has quit [Ping timeout: 251 seconds]
preller has quit [Ping timeout: 248 seconds]
vlad_starkov has joined #ruby
sguselnikov has joined #ruby
arietis has quit [Read error: Connection reset by peer]
mengu has joined #ruby
mengu has quit [Remote host closed the connection]
saragojo has quit [Remote host closed the connection]
waxjar_ has quit [Ping timeout: 252 seconds]
sevin has quit [Ping timeout: 240 seconds]
preller has joined #ruby
tharindu has joined #ruby
MattStratton has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
lyanchih has quit [Quit: lyanchih]
sevin has joined #ruby
Spami has quit [Quit: This computer has gone to sleep]
benlieb has joined #ruby
saragojo has joined #ruby
RoryHughes has joined #ruby
yacks has joined #ruby
rubyracer has joined #ruby
preller has quit [Ping timeout: 264 seconds]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
benlieb has quit [Quit: benlieb]
gja has quit [Quit: This computer has gone to sleep]
preller has joined #ruby
RoryHughes has quit []
predator117 has joined #ruby
RoryHughes has joined #ruby
Guest91264 has quit [Ping timeout: 240 seconds]
petey has joined #ruby
CripperZ has quit [Quit: ZNC - http://znc.sourceforge.net]
drumusician has joined #ruby
CripperZ has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
bradhe has joined #ruby
petey has quit [Ping timeout: 264 seconds]
freerobby has joined #ruby
klaut has joined #ruby
fgo has quit [Ping timeout: 252 seconds]
freggles is now known as freckles
predator117 has quit [Ping timeout: 252 seconds]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
RoryHughes has quit []
mengu has joined #ruby
freerobby has quit [Ping timeout: 245 seconds]
sguselnikov has quit [Quit: Textual IRC Client: http://www.textualapp.com/]
arietis has joined #ruby
goleldar has joined #ruby
goleldar_ has quit [Read error: Connection reset by peer]
RoryHughes has joined #ruby
goleldar has quit [Remote host closed the connection]
fgo has joined #ruby
mmcdaris has quit [Quit: mmcdaris]
DeProdigy has joined #ruby
mbff_ has joined #ruby
mmcdaris has joined #ruby
predator117 has joined #ruby
mengu has quit [Ping timeout: 240 seconds]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
DeProdigy has quit [Ping timeout: 248 seconds]
aagdbl has quit [Quit: Leaving.]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
preller has quit [Ping timeout: 248 seconds]
skaflem has joined #ruby
fedesilva has joined #ruby
mengu has joined #ruby
mengu has joined #ruby
mengu has quit [Changing host]
hogeo_ has joined #ruby
RoryHughes has quit []
bricker`LA has quit [Ping timeout: 252 seconds]
preller has joined #ruby
rubyracer has quit [Quit: Konversation terminated!]
sevin has quit [Ping timeout: 240 seconds]
RoryHughes has joined #ruby
RoryHughes has quit [Max SendQ exceeded]
threesome has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
hogeo_ has quit [Ping timeout: 248 seconds]
parduse has quit [Ping timeout: 240 seconds]
parduse has joined #ruby
jibi has joined #ruby
RoryHughes has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
rjhunter has joined #ruby
sheap has left #ruby [#ruby]
bluOxigen has quit [Ping timeout: 245 seconds]
mmcdaris has quit [Quit: mmcdaris]
banghouse has quit [Remote host closed the connection]
preller has quit [Ping timeout: 264 seconds]
ace_striker has joined #ruby
ckinni has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
fedesilva has quit [Remote host closed the connection]
mengu has quit [Remote host closed the connection]
timonv has joined #ruby
preller has joined #ruby
fgo has quit [Remote host closed the connection]
RoryHughes has quit []
saragojo has quit [Remote host closed the connection]
timonv has quit [Ping timeout: 240 seconds]
saragojo has joined #ruby
davy_ has joined #ruby
gja has joined #ruby
yfeldblum has quit [Remote host closed the connection]
maroloccio has quit [Ping timeout: 245 seconds]
psyprus has quit [Ping timeout: 240 seconds]
psyprus has joined #ruby
tvw has quit [Ping timeout: 240 seconds]
rjhunter has quit [Remote host closed the connection]
marcgg_ has joined #ruby
marcgg has quit [Read error: Connection reset by peer]
saragojo has quit [Remote host closed the connection]
marr has joined #ruby
saragojo has joined #ruby
canton7 has quit [Ping timeout: 252 seconds]
davy_ has quit [Ping timeout: 265 seconds]
psyprus has quit [Ping timeout: 240 seconds]
sayan has joined #ruby
Rydekull has quit [Ping timeout: 252 seconds]
vlad_starkov has quit [Remote host closed the connection]
psyprus has joined #ruby
Rydekull has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
freerobby has joined #ruby
qz has quit [Ping timeout: 252 seconds]
stormbytes has quit [Quit: My Mac Mini has gone to sleep. ZZZzzz…]
zaargy has quit [Ping timeout: 245 seconds]
zoldar_ has quit [Ping timeout: 252 seconds]
qz has joined #ruby
justsee has joined #ruby
freerobby has quit [Ping timeout: 245 seconds]
OdNairy has joined #ruby
blackmesa has joined #ruby
qz has quit [Ping timeout: 265 seconds]
tekacs has quit [Ping timeout: 246 seconds]
qz has joined #ruby
qz has joined #ruby
qz has quit [Changing host]
aryaching has joined #ruby
tharindu_ has joined #ruby
DeProdigy has joined #ruby
zoldar has joined #ruby
emocakes has quit [Ping timeout: 265 seconds]
saragojo has quit [Remote host closed the connection]
tekacs has joined #ruby
saragojo has joined #ruby
MrZYX|off is now known as MrZYX
vlad_starkov has joined #ruby
vlad_starkov has quit [Read error: Connection reset by peer]
lkba has quit [Ping timeout: 264 seconds]
vlad_starkov has joined #ruby
anomaly_ has quit [Remote host closed the connection]
anomaly_ has joined #ruby
zaargy has joined #ruby
tharindu has quit [Ping timeout: 264 seconds]
claymore has joined #ruby
claymore has quit [Changing host]
claymore has joined #ruby
Derpinette has quit [Ping timeout: 264 seconds]
fgo has joined #ruby
relix has quit [Quit: Textual IRC Client: www.textualapp.com]
DeProdigy has quit [Ping timeout: 260 seconds]
RoryHughes has joined #ruby
OdNairy has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
OdNairy has joined #ruby
lyanchih has joined #ruby
dominikh has quit [Ping timeout: 245 seconds]
fgo has quit [Ping timeout: 248 seconds]
RoryHughes has quit [Client Quit]
OdNairy has quit [Client Quit]
hogeo has joined #ruby
spider-mario has joined #ruby
yfeldblum has joined #ruby
yfeldblu_ has joined #ruby
saragojo has quit [Remote host closed the connection]
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
yfeldblum has quit [Ping timeout: 264 seconds]
hogeo has quit [Ping timeout: 264 seconds]
esing has joined #ruby
esing has quit [Max SendQ exceeded]
zkjr_ has joined #ruby
yfeldblu_ has quit [Ping timeout: 248 seconds]
lyanchih has quit [Quit: lyanchih]
gianlucadv has joined #ruby
Guest30076 has quit [Ping timeout: 240 seconds]
saragojo has joined #ruby
Speed has joined #ruby
dominikh has joined #ruby
Kruppe has joined #ruby
aryaching has quit [Ping timeout: 240 seconds]
culturel_ has joined #ruby
dseitz has quit [Quit: Textual IRC Client: www.textualapp.com]
niop has quit [Remote host closed the connection]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
fgo has joined #ruby
aryaching has joined #ruby
petey has joined #ruby
fgo has quit [Ping timeout: 240 seconds]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
cbetta_afk is now known as cbetta
ace_striker has quit [Ping timeout: 272 seconds]
petey has quit [Ping timeout: 240 seconds]
shime has joined #ruby
iliketur_ has joined #ruby
fedesilva has joined #ruby
saragojo has quit [Remote host closed the connection]
vlad_starkov has quit [Remote host closed the connection]
brain_shim has joined #ruby
saragojo has joined #ruby
vlad_starkov has joined #ruby
bobdobbs has quit [Remote host closed the connection]
aasirc has joined #ruby
shime has quit [Ping timeout: 252 seconds]
vlad_starkov has quit [Read error: No route to host]
ghatak has joined #ruby
banghouse has joined #ruby
banghouse is now known as Guest28087
fedesilva has quit [Ping timeout: 264 seconds]
flubba has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
Deele has joined #ruby
sepp2k has joined #ruby
crazymykl has quit [Ping timeout: 248 seconds]
freerobby has joined #ruby
Guest28087 has quit [Ping timeout: 248 seconds]
flubba has quit [Ping timeout: 265 seconds]
OdNairy has joined #ruby
VTLob has joined #ruby
freerobby has quit [Ping timeout: 264 seconds]
xcthulhu has quit [Quit: xcthulhu]
psyl0n has joined #ruby
saragojo has quit [Remote host closed the connection]
ace_striker has joined #ruby
saragojo has joined #ruby
Neomex has joined #ruby
Neomex has quit [Client Quit]
shadoi has joined #ruby
DeProdigy has joined #ruby
aasirc has quit [Quit: Textual IRC Client: www.textualapp.com]
ace_striker has quit [Client Quit]
ghatak has quit [Quit: leaving]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
ace_striker has joined #ruby
ItSANgo_ has quit [Ping timeout: 240 seconds]
DeProdigy has quit [Ping timeout: 265 seconds]
nouitfvf has quit [Read error: No buffer space available]
ItSANgo_ has joined #ruby
marr has quit [Ping timeout: 248 seconds]
aagdbl has joined #ruby
nouitfvf has joined #ruby
saragojo has quit [Remote host closed the connection]
ewnd9 has quit [Ping timeout: 240 seconds]
solirc has joined #ruby
saragojo has joined #ruby
solirc has left #ruby ["WeeChat 0.3.8"]
roadt has quit [Ping timeout: 245 seconds]
brtdv has joined #ruby
kitak has joined #ruby
hogeo has joined #ruby
lkba has joined #ruby
mojjojo has joined #ruby
noname001__ has joined #ruby
kirun has joined #ruby
yfeldblum has joined #ruby
timonv has joined #ruby
banister has quit [Quit: Textual IRC Client: www.textualapp.com]
banister has joined #ruby
lyanchih has joined #ruby
hogeo has quit [Ping timeout: 260 seconds]
popl has quit [Quit: And then there are people who prefer to look their fate in the eye.]
waxjar has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
yfeldblum has quit [Ping timeout: 240 seconds]
roilr has joined #ruby
Xeago has joined #ruby
karupanerura is now known as zz_karupanerura
nettoweb has joined #ruby
noop has quit [Ping timeout: 252 seconds]
mengu has joined #ruby
gdoteof has quit [Ping timeout: 246 seconds]
aryaching_ has joined #ruby
iliketur_ has quit [Quit: zzzzz…..]
eka has joined #ruby
dayepa has quit [Ping timeout: 246 seconds]
mojjojo has quit [Quit: mojjojo]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
aryaching has quit [Ping timeout: 260 seconds]
shredding has joined #ruby
madiba has quit [Ping timeout: 252 seconds]
eka has quit [Client Quit]
aryaching_ has quit [Ping timeout: 252 seconds]
mengu has quit [Ping timeout: 260 seconds]
vlad_starkov has joined #ruby
Neomex has joined #ruby
emergion has quit [Ping timeout: 260 seconds]
xcthulhu has joined #ruby
okinomo has joined #ruby
aagdbl has quit [Quit: Leaving.]
relix has joined #ruby
okinomo has quit [Client Quit]
fgo has joined #ruby
snkcld has quit [Remote host closed the connection]
okinomo has joined #ruby
saragojo has quit [Remote host closed the connection]
fgo has quit [Ping timeout: 260 seconds]
culturel_ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
okinomo has quit [Ping timeout: 240 seconds]
okinomo has joined #ruby
RoryHughes has joined #ruby
saragojo has joined #ruby
noop has joined #ruby
lewix has quit [Remote host closed the connection]
davy_ has joined #ruby
aryaching has joined #ruby
dayepa has joined #ruby
davy_ has quit [Ping timeout: 260 seconds]
lemonsparrow has joined #ruby
banister has quit [Ping timeout: 245 seconds]
Ponyo has joined #ruby
<Ponyo> When defining a function how do I tell ruby that there could be one or more variables there?
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
<Hanmac> Ponyo:
<Hanmac> >> def meth(*args); args.size; end; p meth(4,5,6)
<eval-in_> Hanmac => 3 ... (https://eval.in/79576)
<Ponyo> ty :)
osvico has joined #ruby
nettoweb has quit [Quit: nettoweb]
mbff_ has quit [Ping timeout: 240 seconds]
sepp2k1 has joined #ruby
sepp2k has quit [Ping timeout: 245 seconds]
saragojo has quit [Remote host closed the connection]
s8p3 has joined #ruby
saragojo has joined #ruby
RoryHughes has quit []
freerobby has joined #ruby
zipper has joined #ruby
Ponyo has left #ruby [#ruby]
matchaw has quit [Ping timeout: 272 seconds]
preller has quit [Ping timeout: 245 seconds]
aryaching_ has joined #ruby
mercwithamouth has joined #ruby
freerobby has quit [Ping timeout: 265 seconds]
ss_ has quit [Remote host closed the connection]
aryaching has quit [Ping timeout: 240 seconds]
mbff_ has joined #ruby
ewnd9 has joined #ruby
Astralum has joined #ruby
dayepa has quit [Ping timeout: 246 seconds]
saragojo has quit [Remote host closed the connection]
DeProdigy has joined #ruby
saragojo has joined #ruby
okinomo has quit [Ping timeout: 260 seconds]
ewnd9 has quit [Max SendQ exceeded]
ewnd9 has joined #ruby
preller has joined #ruby
OdNairy has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
mengu has joined #ruby
DeProdigy has quit [Ping timeout: 252 seconds]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
justsee has quit [Ping timeout: 264 seconds]
Neomex has quit [Quit: Neomex]
ace_striker has quit [Quit: Page closed]
dayepa has joined #ruby
anderson has quit [Ping timeout: 240 seconds]
maroloccio has joined #ruby
hogeo has joined #ruby
gianlucadv has quit [Ping timeout: 260 seconds]
anderson has joined #ruby
agjacome has joined #ruby
michael_lee has joined #ruby
colonolGron has joined #ruby
michael_lee has quit [Max SendQ exceeded]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
hogeo has quit [Ping timeout: 265 seconds]
ss_ has joined #ruby
chihhsin has quit [Read error: Connection reset by peer]
gja has quit [Quit: This computer has gone to sleep]
sepp2k1 has quit [Quit: Leaving.]
sepp2k has joined #ruby
s8p3 has quit [Quit: leaving]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
sp3_ has joined #ruby
petey has joined #ruby
tesuji has quit [Ping timeout: 264 seconds]
brianpWins has quit [Ping timeout: 240 seconds]
cbetta is now known as cbetta_afk
brianpWins has joined #ruby
<shevy> dumdedum
petey has quit [Ping timeout: 252 seconds]
Czupa has joined #ruby
chihhsin has joined #ruby
jibi has quit [Quit: .]
lobe has quit [Remote host closed the connection]
brianpWins has quit [Ping timeout: 240 seconds]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
fgo has joined #ruby
brianpWins has joined #ruby
ephemerian has joined #ruby
yerkey has joined #ruby
vlad_starkov has quit [Remote host closed the connection]
Astralum has quit [Quit: Leaving]
Hanmac1 has joined #ruby
fgo has quit [Ping timeout: 265 seconds]
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
Hanmac has quit [Ping timeout: 240 seconds]
anomaly_ has quit [Read error: Connection reset by peer]
anomaly_ has joined #ruby
cantonic has quit [Quit: cantonic]
gja has joined #ruby
<shevy> damn
<shevy> extend is functionally not the same as include?
<apeiros> it's very similar
<DouweM> shevy: one is for class methods, the other for instance methods
<shevy> :(
<apeiros> DouweM: not a good explanation IMO :-/
<DouweM> :D
saragojo has quit [Remote host closed the connection]
<DouweM> how would you explain it?
saragojo has joined #ruby
<shevy> so I can include a module into a class via include. But at runtime, how could I extend it to give that class the same functionality? with extend NameOfModule I just tested, the namespace does not seem to have become of that class
<apeiros> both add instance methods of a module (I mistook yours at first that one adds class methods of the module)
Astralum has joined #ruby
tharindu_ is now known as tharindu_|away
Guest59609 is now known as Styles
<apeiros> extend work on any object and is almost the same as obj.singleton_class.send :include, MyModule (obj.extend MyModule)
<apeiros> *works
<DouweM> apeiros: right. because a module doesn't have "class methods", just methods. On a class, include adds them as instance methods though, extend as class methods
<apeiros> modules can have class methods
<DouweM> they can? oh damn you're right :/
<DouweM> I really shouldn't try to help here before I'd had coffee
<DouweM> *I've
<apeiros> since "class methods" are not really class methods
<apeiros> that's just a convenience term for methods on the singleton class
<DouweM> yeah, I know all of that... Just disregard me
<apeiros> (which happen to be class methods in classes…)
<apeiros> shevy: show some code, exposing what you try to do?
<apeiros> ah
<apeiros> there it is :D
<shevy> it should be like include Test
* apeiros gets something to eat first, though
<shevy> except that it currently is not
<shevy> it fails at "e ABC"
<shevy> because ABC is not known
<shevy> (which is inside the module Test)
klaut has quit [Remote host closed the connection]
tharindu_|away is now known as tharindu_
<shevy> Test::ABC would surely work but that would defeat the point of wanting to use that at run-time
nari has quit [Ping timeout: 265 seconds]
banghouse has joined #ruby
robin850 has joined #ruby
kitak has quit [Remote host closed the connection]
banghouse is now known as Guest89959
saragojo has quit [Remote host closed the connection]
<apeiros> shevy: yeah, doesn't work that way. you could do singleton_class::ABC - but that's somewhat ugly
saragojo has joined #ruby
<shevy> hmm
<robin850> Hello world, I have a question about the C API of Ruby. Is it the good place to ask or not please ?
lemonsparrow has quit [Ping timeout: 272 seconds]
<shevy> is good place. Hanmac1 is a C guru
OdNairy has joined #ruby
Hanmac1 is now known as Hanmac
<robin850> Thank you! Actually, I have this little C function https://gist.github.com/robin850/12466e4b9d291304094c
Guest89959 has quit [Ping timeout: 260 seconds]
<robin850> but when I'm calling it, the compiler says that the returned value is an int but StringValueCStr should return a "char" (C string) no ?
freerobby has joined #ruby
RoryHughes has joined #ruby
RoryHughes has quit [Max SendQ exceeded]
RoryHughes has joined #ruby
<Hanmac> robin850: thy "char* " insreat of "char *"
canton7 has joined #ruby
Ox6abe has joined #ruby
freerobby has quit [Ping timeout: 252 seconds]
<robin850> Hanmac: Whoah, thank you! It works! \o/ Can I ask you another C question (actually, it's C++) or not please ?
<shevy> ok
<Hanmac> you can try ;P
<shevy> it works via class_eval
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
<robin850> Hanmac: Actually, I'm writing a patch for Redcarpet and I'm trying to run the test suite against Rubinius (2.2.1) but I'm getting an error which is pure virtual method called
<robin850> Have you ever encountered this kind of error ?
<shevy> perhaps it is rubinius specific
DeProdigy has joined #ruby
<shevy> what is the exact error?
<Hanmac> robin850: pure virtual means you have an class that has a virtual (*)=0 method defined ... from that class you cant make instances ... make a gist of that error and when it apears
<shevy> I grepped ruby source for virtual.
<shevy> rb_define_virtual_variable("$`", prematch_getter, 0);
<Hanmac> shevy: yeah virtual_variables are funny ,P
gja has quit [Quit: This computer has gone to sleep]
saragojo has quit [Remote host closed the connection]
ap has joined #ruby
saragojo has joined #ruby
shredding has quit [Quit: shredding]
gja has joined #ruby
predator117 has quit [Ping timeout: 245 seconds]
roadt has joined #ruby
ap has quit [Read error: Connection reset by peer]
<robin850> Here is the stacktrace https://gist.github.com/robin850/c398f8d4a167469e0fab. Actually, I'm working on two branches. And just a piece of this patch is causing this error : https://github.com/vmg/redcarpet/pull/333/files
<robin850> (because the other branch only miss this patch and Rubinius is green on it)
DeProdigy has quit [Ping timeout: 248 seconds]
sec^nd has quit [Remote host closed the connection]
PanPan has quit [Ping timeout: 240 seconds]
nfk has joined #ruby
sec^nd has joined #ruby
PanPan has joined #ruby
kitak has joined #ruby
hogeo has joined #ruby
predator117 has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
RoryHughes has quit []
_JamieD_ has joined #ruby
yfeldblum has joined #ruby
hogeo has quit [Ping timeout: 265 seconds]
EngierkO has joined #ruby
shime has joined #ruby
justsee has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
yfeldblum has quit [Ping timeout: 245 seconds]
EngierkO has quit [Read error: Operation timed out]
Xeago has quit [Remote host closed the connection]
freerobby has joined #ruby
mengu has quit [Remote host closed the connection]
L8D has joined #ruby
jonathanwallace1 has joined #ruby
saragojo has quit [Remote host closed the connection]
okinomo has joined #ruby
saragojo has joined #ruby
predator117 has quit [Ping timeout: 248 seconds]
predator117 has joined #ruby
fgo has joined #ruby
fgo has quit [Read error: No route to host]
RoryHughes has joined #ruby
fgo has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
nowthatsamatt has joined #ruby
flame_ has joined #ruby
gja has quit [Quit: This computer has gone to sleep]
spider-mario has quit [Remote host closed the connection]
fgo has quit [Ping timeout: 248 seconds]
phansch has quit [Quit: Leaving]
RoryHughes has quit []
gja has joined #ruby
gja has quit [Changing host]
gja has joined #ruby
fgo has joined #ruby
amacgregor_ has joined #ruby
gianlucadv has joined #ruby
anomaly_ has quit [Read error: Connection reset by peer]
anomaly_ has joined #ruby
saragojo has quit [Remote host closed the connection]
saragojo has joined #ruby
shime has quit [Ping timeout: 245 seconds]
gregoriokusowski has joined #ruby
justsee has quit [Ping timeout: 265 seconds]
crazymykl has joined #ruby
saragojo has quit [Remote host closed the connection]
end_guy has quit [Remote host closed the connection]
okinomo has quit [Ping timeout: 260 seconds]
sharms has quit [Ping timeout: 240 seconds]
sharms has joined #ruby
crazymykl has quit [Ping timeout: 248 seconds]
joshu has quit [Ping timeout: 272 seconds]
kitak has quit [Remote host closed the connection]
kitak has joined #ruby
blo has quit [Ping timeout: 240 seconds]
xcthulhu has quit [Read error: Connection reset by peer]
RoryHughes has joined #ruby
blo has joined #ruby
greenrose1 has quit []
saragojo has joined #ruby
RoryHughes has quit [Client Quit]
RoryHughes has joined #ruby
saragojo has quit [Remote host closed the connection]
ua has joined #ruby
saragojo has joined #ruby
DeProdigy has joined #ruby
stormbytes has joined #ruby
matchaw has joined #ruby
joshu has joined #ruby
benzrf has joined #ruby
<benzrf> hi, how can I fnd out my line and col nos if i've only been using #read?
<benzrf> *from an IO
zkjr_ has quit [Read error: Connection reset by peer]
vlad_starkov has joined #ruby
soukihei has quit [Ping timeout: 272 seconds]
DeProdigy has quit [Ping timeout: 264 seconds]
RoryHughes has quit []
sayan has quit [Ping timeout: 260 seconds]
vikhyat has joined #ruby
petey has joined #ruby
okinomo has joined #ruby
hogeo has joined #ruby
saragojo has quit [Remote host closed the connection]
matchaw has quit [Quit: No Ping reply in 180 seconds.]
matchaw has joined #ruby
kostine has quit [Quit: kostine]
greenrose has joined #ruby
roilr has quit [Ping timeout: 240 seconds]
petey has quit [Ping timeout: 264 seconds]
hogeo has quit [Ping timeout: 245 seconds]
yfeldblum has joined #ruby
lemonsparrow has joined #ruby
mengu has joined #ruby
ckinni has joined #ruby
fgo has quit []
yfeldblum has quit [Ping timeout: 245 seconds]
banister has joined #ruby
okinomo has quit [Ping timeout: 260 seconds]
gja has quit [Quit: This computer has gone to sleep]
gregoriokusowski has quit [Quit: gregoriokusowski]
coda23 has joined #ruby
okinomo has joined #ruby
_maes_ has quit [Ping timeout: 240 seconds]
krzkrz has joined #ruby
<coda23> Hi, running Ubuntu getting this message and not sure what to do ?
<coda23> Bundler::GemfileNotFound - INFO - Bundle can't be installed -- Please check manually
RoryHughes has joined #ruby
<Hanmac> coda23 #bundler
coldmethod has joined #ruby
joshu has quit [Ping timeout: 260 seconds]
weems has quit [Read error: Connection reset by peer]
<coda23> No command 'bundler' found, did you mean: Command 'bundle' from package 'ruby-bundler' (universe) bundler: command not found
<coda23> so i got to install a package called bundler?
okinomo has quit [Ping timeout: 252 seconds]
RoryHughes has quit [Client Quit]
joshu has joined #ruby
nouitfvf has quit [Ping timeout: 252 seconds]
matchaw has quit [Ping timeout: 240 seconds]
browndawg has quit [Read error: No route to host]
<coda23> I installed bundler but still getting the same message when running guard: Bundler::GemfileNotFound
Czupa has quit [Remote host closed the connection]
Mar has joined #ruby
Mar is now known as Mrtn
Mrtn is now known as MartinR
tharindu_ has quit [Ping timeout: 260 seconds]
MartinR is now known as Guest45403
kostine has joined #ruby
nouitfvf has joined #ruby
nateberkopec has joined #ruby
Guest45403 is now known as martynas
<Hanmac> coda23: no i mean there is an extra irc channel "#bundler" for that
martynas is now known as martis
matchaw has joined #ruby
<coda23> thanks
RoryHughes has joined #ruby
gja has joined #ruby
coda23 has quit [Quit: Leaving]
joaoh82 has quit [Remote host closed the connection]
banghouse has joined #ruby
Czupa has joined #ruby
weems has joined #ruby
banghouse is now known as Guest97452
nari has joined #ruby
coda23 has joined #ruby
Guest97452 is now known as banghouse
roadt has quit [Ping timeout: 245 seconds]
samlt has joined #ruby
lyanchih has quit [Ping timeout: 240 seconds]
lyanchih has joined #ruby
matchaw has quit [Read error: Connection reset by peer]
matchaw has joined #ruby
marcgg has joined #ruby
marcgg_ has quit [Read error: Connection reset by peer]
parduse has quit [Read error: Connection reset by peer]
shime has joined #ruby
parduse has joined #ruby
randomnick_ has joined #ruby
roadt has joined #ruby
tharindu_ has joined #ruby
amacgregor_ has quit [Ping timeout: 240 seconds]
lemonsparrow has quit [Ping timeout: 272 seconds]
s2013 has joined #ruby
eka has joined #ruby
preller has quit [Ping timeout: 240 seconds]
krzkrz has quit [Quit: WeeChat 0.4.2]
krz has joined #ruby
eka has quit [Quit: Computer has gone to sleep.]
coderhs has joined #ruby
vlad_starkov has quit [Remote host closed the connection]
predator117 has quit [Ping timeout: 260 seconds]
preller has joined #ruby
codecop has joined #ruby
predator117 has joined #ruby
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
peregrine81 has joined #ruby
DeProdigy has joined #ruby
browndawg has joined #ruby
matchaw has quit [Remote host closed the connection]
s2013 has quit [Remote host closed the connection]
matchaw has joined #ruby
MattStratton has joined #ruby
relix has quit [Quit: Textual IRC Client: www.textualapp.com]
DeProdigy has quit [Ping timeout: 248 seconds]
pwh has quit [Ping timeout: 248 seconds]
Zesty has joined #ruby
vlad_starkov has joined #ruby
blackmes1 has joined #ruby
blackmesa has quit [Ping timeout: 240 seconds]
nateberkopec has quit [Quit: Leaving...]
hogeo has joined #ruby
ambushsabre has joined #ruby
RoryHughes has quit []
coderhs has quit [Read error: Connection timed out]
hogeo has quit [Ping timeout: 264 seconds]
coderhs has joined #ruby
Megtastique has joined #ruby
yfeldblum has joined #ruby
<benzrf> is there a way to mixin into a singleton class
cantonic has joined #ruby
<benzrf> module Foo; def three; 3; end; end; bar = Object.new; bar.mixin Foo; bar.three => 3
<benzrf> ?
krz has quit [Quit: WeeChat 0.4.2]
pwh has joined #ruby
gregoriokusowski has joined #ruby
gregoriokusowski has quit [Client Quit]
<Hanmac> benzrf: extend
<Hanmac> or bar.singleton_class.include ;P
<benzrf> ok, thanks :)
s2013 has joined #ruby
vlad_starkov has quit [Read error: Connection reset by peer]
yfeldblum has quit [Ping timeout: 264 seconds]
krz has joined #ruby
crapple has quit [Excess Flood]
crapple has joined #ruby
kostine has quit [Quit: kostine]
mercwithamouth has quit [Ping timeout: 252 seconds]
parduse has quit [Remote host closed the connection]
parduse has joined #ruby
IceDragon has joined #ruby
siwica has joined #ruby
indy138 has joined #ruby
eyckelboom has quit [Quit: bye]
eyckelboom has joined #ruby
Spleeze has joined #ruby
RoryHughes has joined #ruby
RoryHughes has quit [Max SendQ exceeded]
sp3_ has quit [Ping timeout: 265 seconds]
vlad_starkov has joined #ruby
pwh has quit [Ping timeout: 240 seconds]
RoryHughes has joined #ruby
Jetchisel has left #ruby ["Unfortunately time is always against us -- *Morpheus*"]
sp3_ has joined #ruby
<benzrf> argh
<benzrf> how can I tell what line an IO is on?
<benzrf> and col
<benzrf> i want to specify them for error msgs
cantonic has quit [Ping timeout: 252 seconds]
pwh has joined #ruby
CripperZ is now known as zz_CripperZ
parduse is now known as Guest65033
parduse has joined #ruby
Guest65033 has quit [Ping timeout: 265 seconds]
havenwood has joined #ruby
RoryHughes has quit []
grift has joined #ruby
Spleeze has quit [Ping timeout: 240 seconds]
preller has quit [Ping timeout: 252 seconds]
RoryHughes has joined #ruby
marr has joined #ruby
siwica has quit [Ping timeout: 240 seconds]
rootshift has joined #ruby
RoryHughes has quit [Client Quit]
Spleeze has joined #ruby
greenrose has quit [Ping timeout: 240 seconds]
hogeo has joined #ruby
siwica has joined #ruby
colonolGron has quit [Ping timeout: 264 seconds]
zipper has quit [Ping timeout: 245 seconds]
preller has joined #ruby
preller has quit [Changing host]
preller has joined #ruby
siwica has quit [Remote host closed the connection]
siwica has joined #ruby
hogeo has quit [Ping timeout: 260 seconds]
greenrose has joined #ruby
Spami has joined #ruby
siwica has quit [Remote host closed the connection]
siwica has joined #ruby
gja has quit [Quit: This computer has gone to sleep]
Ox6abe has quit [Remote host closed the connection]
esing has joined #ruby
psyl0n has quit [Remote host closed the connection]
rubyracer has joined #ruby
petey has joined #ruby
fntzr has joined #ruby
gja has joined #ruby
Hanmac1 has joined #ruby
martis has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
A124 has joined #ruby
sevin has joined #ruby
fijimunkii has joined #ruby
robin850 has quit [Quit: Konversation terminated!]
siwica has quit [Ping timeout: 240 seconds]
Hanmac has quit [Ping timeout: 245 seconds]
|jemc| has joined #ruby
A124 has quit [Remote host closed the connection]
A124 has joined #ruby
DeProdigy has joined #ruby
petey has quit [Ping timeout: 260 seconds]
Megtastique has quit []
fijimunkii has quit [Ping timeout: 240 seconds]
predator117 has quit [Ping timeout: 245 seconds]
ckinni has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Guest64380 has joined #ruby
nari has quit [Ping timeout: 260 seconds]
DeProdigy has quit [Ping timeout: 248 seconds]
preller has quit [Ping timeout: 265 seconds]
gja has quit [Quit: This computer has gone to sleep]
Guest64380 has quit [Remote host closed the connection]
butblack has joined #ruby
benzrf has quit [Ping timeout: 265 seconds]
<|jemc|> introspection question:
<|jemc|> does ruby have a mechanism for a method to know the name of the module or class that defined the method
<|jemc|> being one of the #ancestors of the object that is executing method
hogeo has joined #ruby
gja has joined #ruby
benzrf has joined #ruby
Zesty has quit [Quit: Linkinus - http://linkinus.com]
benzrf has quit [Client Quit]
Megtastique has joined #ruby
<|jemc|> so if class A includes module X, and I have a method(:foo) object I retrieved, is there a way to tell whether that method was defined by class A or module X?
esing has quit [Read error: Operation timed out]
esing has joined #ruby
browndawg has left #ruby [#ruby]
randomnick_ has quit [Remote host closed the connection]
MartinR has joined #ruby
preller has joined #ruby
MartinR is now known as Guest97283
Advocation has joined #ruby
gja has quit [Client Quit]
hogeo has quit [Ping timeout: 252 seconds]
nwertman has joined #ruby
wIzjIn has joined #ruby
yfeldblum has joined #ruby
gja has joined #ruby
gja has quit [Changing host]
gja has joined #ruby
codecop has quit [Remote host closed the connection]
flame_ has quit [Quit: Computer has gone to sleep.]
pen has joined #ruby
sevin has quit [Read error: Connection reset by peer]
gja has quit [Client Quit]
sevin has joined #ruby
Hanmac has joined #ruby
<shevy> man, -w switch can be so annoying
indy138 has quit [Remote host closed the connection]
joaoh82 has joined #ruby
w1xz has joined #ruby
<shevy> |jemc| hmm I think there is caller() __method__ and calle
<shevy> though for definitions...
<shevy> there is method_source
<shevy> A.new.method(:foo).source_location
nwertman has quit [Ping timeout: 264 seconds]
Hanmac1 has quit [Ping timeout: 265 seconds]
matheuscaceres has joined #ruby
Cork has quit [Quit: .]
yfeldblum has quit [Ping timeout: 264 seconds]
gja has joined #ruby
<|jemc|> yeah, but then I need to calculate it by reading the file in and parsing it to figure out which moduleor class it is in
<|jemc|> which is not reliable or efficient enough for my purposes, unfortunately
xk_id has quit [Quit:
Hanmac has quit [Ping timeout: 240 seconds]
fijimunkii has joined #ruby
Hanmac1 has joined #ruby
banister has joined #ruby
joaoh82 has quit [Ping timeout: 252 seconds]
xk_id has joined #ruby
xk_id has quit [Max SendQ exceeded]
Cork has joined #ruby
Cork is now known as Guest77089
klaut has joined #ruby
drumusician has quit [Ping timeout: 264 seconds]
xk_id has joined #ruby
lyanchih has quit [Ping timeout: 264 seconds]
ss_ has quit [Remote host closed the connection]
anderson has quit [Ping timeout: 240 seconds]
vlad_starkov has quit [Read error: Connection reset by peer]
defendguin has joined #ruby
tesuji has joined #ruby
anderson has joined #ruby
tonni has joined #ruby
tesuji has quit [Excess Flood]
<defendguin> is it absolutely necessary to close a connection to an sqlite db before i end my script?
<defendguin> seems like my script will hang randomly when i try to close it
DeProdigy has joined #ruby
Revokee has quit [Quit: Leaving.]
<Hanmac1> |jemc|: Method#owner
RoryHughes has joined #ruby
tesuji has joined #ruby
_JamieD_ has quit [Ping timeout: 240 seconds]
<|jemc|> there we go
xk_id has quit [Ping timeout: 265 seconds]
<|jemc|> knew it had to exis somewhere
<|jemc|> thanks, Hanmac
troyready has joined #ruby
rootshift has quit [Quit: rootshift]
lethjakm1 has joined #ruby
phrozen77 has quit [Changing host]
phrozen77 has joined #ruby
noop has quit [Ping timeout: 245 seconds]
Guest77089 has quit [Changing host]
Guest77089 has joined #ruby
Guest77089 is now known as Cork
_JamieD_ has joined #ruby
DeProdigy has quit [Ping timeout: 264 seconds]
krz has quit [Quit: WeeChat 0.4.2]
noop has joined #ruby
grift has left #ruby ["Leaving"]
krz has joined #ruby
fedesilva has joined #ruby
wallerdev has joined #ruby
kaiza has joined #ruby
kaiza has quit [Max SendQ exceeded]
coldmethod has quit [Ping timeout: 265 seconds]
kaiza has joined #ruby
mengu has quit []
sethen has joined #ruby
matheuscaceres has quit [Quit: matheuscaceres]
viod has joined #ruby
wIzjIn has quit []
thecopy has joined #ruby
RoryHughes has quit []
Hanmac has joined #ruby
Hanmac1 has quit [Ping timeout: 245 seconds]
RoryHughes has joined #ruby
RoryHughes has quit [Client Quit]
predator117 has joined #ruby
peregrine81 has quit []
mojjojo has joined #ruby
Mon_Ouie has quit [Read error: Operation timed out]
RoryHughes has joined #ruby
colonolGron has joined #ruby
MattStratton has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
relix has joined #ruby
matheuscaceres has joined #ruby
ewnd9 has quit [Ping timeout: 245 seconds]
nwertman has joined #ruby
ambushsabre has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
levin has joined #ruby
levin is now known as Guest68335
coldmethod has joined #ruby
nateberkopec has joined #ruby
defendguin has quit [Quit: Leaving.]
Ox6abe has joined #ruby
sumark_ is now known as sumark
havenwood has quit [Remote host closed the connection]
AzizLight has joined #ruby
<AzizLight> Hi everybody
havenwood has joined #ruby
nateberkopec has quit [Quit: Leaving...]
<AzizLight> I am trying to run `git add -p` from Ruby (without any success). User input is completely ignored. I tried using open3, and I do not want to use any gems. Any suggestions? (related SO question: http://stackoverflow.com/q/20597632/123016)
havenwood has quit [Read error: Connection reset by peer]
bricker`LA has joined #ruby
havenwood has joined #ruby
rootshift has joined #ruby
hogeo has joined #ruby
Ox6abe has quit [Ping timeout: 240 seconds]
klaut has quit [Remote host closed the connection]
fijimunk1i has joined #ruby
marcgg_ has joined #ruby
L8D has quit [Ping timeout: 248 seconds]
mojjojo has quit [Quit: mojjojo]
xk_id has joined #ruby
bricker`LA has quit [Ping timeout: 240 seconds]
eka has joined #ruby
<hoelzro> I'm guessing git add -p prefers to be run on a terminal
<hoelzro> so you'll probably have to use a pty
fijimunkii has quit [Ping timeout: 252 seconds]
Hanmac1 has joined #ruby
bricker`LA has joined #ruby
bricker`LA has quit [Client Quit]
hogeo has quit [Ping timeout: 264 seconds]
marcgg has quit [Ping timeout: 264 seconds]
fijimunk1i has quit [Ping timeout: 240 seconds]
mojjojo has joined #ruby
<AzizLight> hoelzro: I didn't know about pty, will look into it, thanks ;-)
Hanmac has quit [Ping timeout: 264 seconds]
drag00n has joined #ruby
decoponio has quit [Quit: Leaving...]
mojjojo has quit [Client Quit]
sevin has quit [Quit: Leaving]
momomomomo has joined #ruby
SHyx0rmZ has joined #ruby
mojjojo has joined #ruby
RoryHughes has quit []
rootshift has quit [Quit: rootshift]
_5kg_ has quit [K-Lined]
amacgregor_ has joined #ruby
yfeldblum has joined #ruby
noname001__ has quit [Ping timeout: 252 seconds]
nateberkopec has joined #ruby
ambushsabre has joined #ruby
klaut has joined #ruby
sevin has joined #ruby
bogeyd6 has quit [Ping timeout: 245 seconds]
IceDragon has quit [Ping timeout: 264 seconds]
predator117 has quit [Ping timeout: 264 seconds]
bogeyd6 has joined #ruby
predator117 has joined #ruby
ss_ has joined #ruby
mojjojo has quit [Quit: mojjojo]
mojjojo has joined #ruby
IceDragon has joined #ruby
DeProdigy has joined #ruby
pen has quit []
ElasticElephant has quit [Quit: ChatZilla 0.9.90.1 [Firefox 25.0.1/20131112160018]]
aryaching has joined #ruby
sevin has quit [Quit: ZNC - http://znc.in]
jibi has joined #ruby
Czupa has quit [Remote host closed the connection]
predator117 has quit [Ping timeout: 240 seconds]
<lethjakm1> hey, I can't seem to get ruby to compile with readline support on redhat with rbenv. anyone happen to know of any pointers?
fntzr has quit [Quit: Leaving]
gja has quit [Quit: This computer has gone to sleep]
ss_ has quit [Ping timeout: 240 seconds]
predator117 has joined #ruby
<hoelzro> lethjakm1: does the configure log tell you anything useful?
_Andres has joined #ruby
DeProdigy has quit [Ping timeout: 260 seconds]
aryaching_ has quit [Ping timeout: 260 seconds]
prc has joined #ruby
xiphias has quit [Ping timeout: 240 seconds]
colonolGron has quit [Quit: leaving]
xiphias has joined #ruby
gja has joined #ruby
mojjojo has quit [Quit: mojjojo]
floorpi has quit [Ping timeout: 245 seconds]
momomomomo has quit [Quit: momomomomo]
drag00n has quit [Ping timeout: 265 seconds]
reluctantlove has joined #ruby
<lethjakm1> hoelzro: where would I find that?
tvw has joined #ruby
<hoelzro> not sure, but I'm guessing ruby-install -v would do it.
DeProdigy has joined #ruby
samlt has quit [Quit: WeeChat 0.4.2]
arietis has quit [Quit: Textual IRC Client: http://www.textualapp.com/]
<hoelzro> er, rbenv install
<hoelzro> you know what I mea =)
havenwood has quit [Remote host closed the connection]
havenwood has joined #ruby
prc has quit [Read error: Connection reset by peer]
<lethjakm1> hmmm I can give that a shot, it'll take forever to reinstall though.
<hoelzro> you might not need to
prc has joined #ruby
<hoelzro> grr
<lethjakm1> when I use -v it just gives me the options I can use
prc has left #ruby [#ruby]
prc has joined #ruby
<hoelzro> on my machine, it's logging to a temporary location =(
<hoelzro> so it doesn't recognize -v =(
<hoelzro> the command didn't tell you about a log file when it failed?
crazymykl has joined #ruby
havenn has joined #ruby
havenwood has quit [Read error: Connection reset by peer]
choobie has quit [Quit: choobie]
AndroUser2 has joined #ruby
<lethjakm1> no, it didn't fail. I just can't press up anywhere and it asks for readline when I start rails
DeProdigy has quit [Ping timeout: 252 seconds]
<MrZYX> I'd make sure that libreadline-devel, or whatever the package is called on your OS, is installed and reinstall ruby
xiphias has quit [Ping timeout: 240 seconds]
tharindu_ has quit [Quit: Leaving...]
DeProdigy has joined #ruby
coffeina has joined #ruby
<lethjakm1> I'll try it with that
matchaw has quit [Read error: Operation timed out]
AndroUser2 has quit [Ping timeout: 240 seconds]
<AzizLight> hoelzro: do you know how I can display the stdin prompt that git displays using pty please? (I've updated the SO question: http://stackoverflow.com/q/20597632/123016)
tesuji has quit [Read error: Connection reset by peer]
<hoelzro> you should probably flush stdout
jamesaanderson has joined #ruby
DeProdigy has quit [Ping timeout: 260 seconds]
jamesaanderson has quit [Max SendQ exceeded]
jamesaanderson has joined #ruby
jonathanwallace1 has quit [Ping timeout: 248 seconds]
reluctantlove has quit [Quit: Lingo - http://www.lingoirc.com]
yeboot has quit [Remote host closed the connection]
xiphias has joined #ruby
sp3__ has joined #ruby
mr_snowf1ake has joined #ruby
<AzizLight> hoelzro: What do you mean? I tried this code, but it doesn't make a difference: http://git.io/A5Lwtg
momomomomo has joined #ruby
gja has quit [Quit: This computer has gone to sleep]
phipes has joined #ruby
<hoelzro> ok
<hoelzro> so you have this each loop, right?
<hoelzro> what is it doing?
mojjojo has joined #ruby
fridim_ has joined #ruby
matheuscaceres has quit [Quit: matheuscaceres]
<momomomomo> Morning
sp3_ has quit [Ping timeout: 264 seconds]
<AzizLight> hoelzro: I think, according to what I see, that it prints out each line of STDOUT
DeProdigy has joined #ruby
<hoelzro> AzizLight: STDOUT of the child process attached to the pty, right?
dzan_ is now known as dzan
<hoelzro> (well, that includes STDERR here, but let's forget that for now)
gja has joined #ruby
xiphias has quit [Ping timeout: 240 seconds]
<AzizLight> hoelzro: I tried to do r.flush as well, no difference...
<hoelzro> of course it makes no difference
<hoelzro> r is opened for reading
<AzizLight> hmm
<hoelzro> all I'm trying to point out is that you're grabbing each line of input from a pty
<hoelzro> so that each loop won't exit until the other side of the pty is closed
<hoelzro> so you're flushing STDOUT *after* receiving all of the output from the child
gja has quit [Client Quit]
<hoelzro> try flushing STDOUT inside of the each loop
amacgregor_ has quit [Ping timeout: 240 seconds]
<AzizLight> hoelzro: tried that as well. STDOUT.flush inside the block doesn't make a difference. r.flush at the end of the block shows only one line
<hoelzro> where are you flushing?
shedd has joined #ruby
krz has quit [Quit: WeeChat 0.4.2]
<AzizLight> hoelzro: I tried before and after the print line
<AzizLight> hoelzro: both didn't work
<hoelzro> hmm
krz has joined #ruby
krz has joined #ruby
krz has quit [Changing host]
DeProdigy has quit [Ping timeout: 240 seconds]
krz has quit [Client Quit]
sp3__ has quit [Ping timeout: 240 seconds]
krz has joined #ruby
mojjojo has quit [Quit: mojjojo]
gja has joined #ruby
krz has quit [Client Quit]
zipper has joined #ruby
jonathanwallace1 has joined #ruby
zipper is now known as Guest82467
w4pm has joined #ruby
krz has joined #ruby
krz has quit [Client Quit]
hogeo has joined #ruby
<hoelzro> hmm
<hoelzro> I think
<hoelzro> duh
krz has joined #ruby
krz has quit [Changing host]
krz has joined #ruby
Guest82467 has quit [Client Quit]
<hoelzro> I think it's because you're calling each on the pty
<hoelzro> so that's going to only yield you full lines
<hoelzro> but the prompt *isn't* full lines
zipper_ has joined #ruby
krz has quit [Client Quit]
xiphias has joined #ruby
Hanmac has joined #ruby
Guest97283 has quit [Quit: Textual IRC Client: www.textualapp.com]
<AzizLight> hoelzro: any solutions? :S
hogeo has quit [Ping timeout: 240 seconds]
Hanmac1 has quit [Ping timeout: 248 seconds]
mrfoto has joined #ruby
kraljev0 has joined #ruby
<hoelzro> just read a buffer of characters instead of by line
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
<kraljev0> why doesn't this output [:a], but rather nil?
w4pm has quit [Ping timeout: 240 seconds]
sp3_ has joined #ruby
<kraljev0> how can a class instance access class instance variables?
havenn has quit [Remote host closed the connection]
w4pm has joined #ruby
havenwood has joined #ruby
<AzizLight> hoelzro: awesome, now the prompt shows. Now I need to get the user input and send it back to git... -_-
three18t- is now known as three18ti
<hoelzro> \o/
<shevy> kraljev0 how does store :a work
joaoh82 has joined #ruby
sp3__ has joined #ruby
<shevy> kraljev0 it seems to store on the class level at A rather than the instance level that you created lateron when you call .new
starfox21 has joined #ruby
<MrZYX> kraljev0: it can't, since those values would be the same for all classes I'd just delegate to the class
joaoh82 has quit [Remote host closed the connection]
joaoh82 has joined #ruby
sp3_ has quit [Ping timeout: 240 seconds]
<MrZYX> class << self; attr_reader :storage; end; def storage; self.class.storage; end
<starfox21> hey guys, I was going thru ruby monk and I don't quite get this sentence "Kernel#proc factory method is identical to Proc.new. Note that proc is a method and not a literal form like -> nor a keyword like yield."
mackwic has joined #ruby
<mackwic> Hi there !
<starfox21> I don't quite get the difference between literal and keyword
<starfox21> the way they use it here
<MrZYX> kraljev0: check forwardable in stdlib if you'd need to define a lot of those
<kraljev0> thanks!
<AzizLight> hoelzro: no code seems to get executed after the block...
skaflem has quit [Quit: Leaving]
<hoelzro> which block?
<mackwic> I would want to replace the Thread class by a stub at test time. Object.send :remove_const, :Thread seams not very effective (I use thread/pool to augment the Thread class and it don't appreciate it very much). Do you think I'll need a feature switch inside the class ?
jamesaanderson has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<AzizLight> hoelzro: the `each_char` block https://gist.github.com/AzizLight/6bcd93d688bfa0ec831a
<hoelzro> AzizLight: like I said earlier
<MrZYX> starfox21: a literal is a value, like "foo", true or 123, a keyword is an action to do for the intepreter, like def, if, or and so on
<hoelzro> that block won't exit until after the other side of the pty is closed
<AzizLight> hmmm
roadt has quit [Ping timeout: 260 seconds]
<starfox21> mrZYX: is lambda a keyword then?
<shevy> >> lambda
<MrZYX> lambda is a method call like proc (http://rubydoc.info/stdlib/core/Kernel#lambda-instance_method), -> { } is a literal
<eval-in_> shevy => tried to create Proc object without a block (ArgumentError) ... (https://eval.in/79667)
<starfox21> MrZYX: makes sense, thanks
<AzizLight> hoelzro: I'm lost... how can I read stdout char by char without a block? Or how can I break out of the block when stdin kicks in?
krz has joined #ruby
krz has joined #ruby
krz has quit [Changing host]
<hoelzro> I would use select
<hoelzro> or an event loop
mroth has quit [Changing host]
mroth has joined #ruby
mroth has quit [Changing host]
mroth has joined #ruby
<mackwic> anyone does class substitution for testing purpose ?
jtgiri_ has joined #ruby
krz has quit [Ping timeout: 248 seconds]
lethjakman has joined #ruby
MartinR has joined #ruby
jtgiri_ has quit [Client Quit]
MartinR is now known as Guest71468
Guest71468 is now known as martis
fijimunkii has joined #ruby
lethjakm1 has quit [Ping timeout: 248 seconds]
jekt has joined #ruby
<AzizLight> hoelzro: seems complicated -_- Just bought Jesse Storimer's book on TCP sockets, maybe I can find something in there before asking stupid questions
noop has quit [Ping timeout: 245 seconds]
RoryHughes has joined #ruby
<hoelzro> it might have some input on select
<hoelzro> I think that ruby documentation on select (or the man page) will probably provide you with the information you need, though
Megtastique has quit []
predator117 has quit [Remote host closed the connection]
Advocation has quit [Quit: Advocation]
renklaf has joined #ruby
mklappstuhl has joined #ruby
mackwic has left #ruby ["_o/"]
mackwic has joined #ruby
mojjojo has joined #ruby
w1xz has quit [Quit: ZZZzzz…]
reach has joined #ruby
wallerdev has quit [Quit: wallerdev]
jtgiri_ has joined #ruby
jamest3 has joined #ruby
<kraljev0> Why is Array#concat without exclamation mark
<kraljev0> since it's mutable
<jamest3> hi can someone take a quick look at my gist (trying to solve an easy math problem object oriented), but i am not returning the right answer. https://gist.github.com/jamesjtong/7976931
<kraljev0> I have such inconsistencies!
RoryHughes has quit []
jtgiri_ has quit [Client Quit]
flubba has joined #ruby
<havenwood> kraljev0: the bang (!) means that there is already a non-bang version that doesn't modify the receiver
<mackwic> jamest3, 404
drumusician has joined #ruby
mrfoto has quit [Remote host closed the connection]
<havenwood> kraljev0: if there is just one method, and it modifies the receiver, no bang
<kraljev0> tell me, how useful is that?
tvw has quit []
<kraljev0> have #+ alias for #concat, then have #concat
<kraljev0> #concat!
<havenwood> kraljev0: there is more than one way to do it
matheuscaceres has joined #ruby
iliketur_ has joined #ruby
diegoviola has joined #ruby
mary5030 has joined #ruby
RoryHughes has joined #ruby
mklappstuhl has quit [Remote host closed the connection]
mbff_ has quit [Ping timeout: 240 seconds]
jrhorn424afk is now known as jrhorn424
mengu has joined #ruby
mengu has joined #ruby
mengu has quit [Changing host]
soulcake has quit [Quit: ZNC - http://znc.in]
Charliebr73 has joined #ruby
phipes has quit [Remote host closed the connection]
jamest3 has quit [Remote host closed the connection]
mbff_ has joined #ruby
jrhorn424 is now known as zz_jrhorn424
phipes has joined #ruby
starfox21 has quit [Quit: starfox21]
mojjojo has quit [Quit: mojjojo]
mklappstuhl has joined #ruby
OdNairy has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
phipes has quit [Ping timeout: 240 seconds]
esing has quit [Read error: Operation timed out]
matheuscaceres has quit [Quit: matheuscaceres]
danshultz has joined #ruby
maletor has joined #ruby
DeProdigy has joined #ruby
predator117 has joined #ruby
Charliebr73 has quit [Quit: Leaving]
<AzizLight> hoelzro: I can't figure out what to pass to IO.select... Here is what I've got now https://gist.github.com/AzizLight/d7d46bafeac1652a35e3
phipes has joined #ruby
RoryHughes has quit []
johnmilton has joined #ruby
ace_striker has joined #ruby
<hoelzro> that looks fine
wallerdev has joined #ruby
hogeo has joined #ruby
ua has quit [Ping timeout: 265 seconds]
rootshift has joined #ruby
iliketur_ has quit [Quit: zzzzz…..]
<AzizLight> hoelzro: how do I output STDOUT using that code? :S
anomaly_ has quit [Read error: Connection reset by peer]
<hoelzro> what you do is after you call select, iterate over ready
<hoelzro> if r is in ready, read some chars from it and handle them
anomaly_ has joined #ruby
<hoelzro> hmm
<hoelzro> actually
<hoelzro> you probably don't care about output handles being ready
<hoelzro> you just care about r and STDIN
Naoe-Kanno has joined #ruby
SHyx0rmZ has quit [Ping timeout: 264 seconds]
timonv has quit [Remote host closed the connection]
timonv has joined #ruby
Mon_Ouie has joined #ruby
Mon_Ouie has quit [Changing host]
Mon_Ouie has joined #ruby
assurbanipal has joined #ruby
* Hanmac found a new nice function in ruby's C-API ... beware!! ;P
sayan has joined #ruby
jtgiri_ has joined #ruby
hogeo has quit [Ping timeout: 264 seconds]
<DouweM> Hanmac is a tease
ckinni has joined #ruby
timonv has quit [Remote host closed the connection]
predator117 has quit [Ping timeout: 248 seconds]
mackwic has quit [Quit: _o/]
jtgiri_ has quit [Client Quit]
RoryHughes has joined #ruby
esing has joined #ruby
xiphias has quit [Ping timeout: 240 seconds]
soulcake has joined #ruby
ace_striker has quit [Ping timeout: 272 seconds]
xiphias has joined #ruby
mikemac has joined #ruby
maletor has quit [Quit: Computer has gone to sleep.]
crazymykl has quit [Quit: Konversation terminated!]
<Hanmac> shevy i found rb_check_frozen
<AzizLight> I just realized that I created Zombie processes that were taking 99% CPU each -_-
iliketur_ has joined #ruby
ua has joined #ruby
Guest26034 has quit [Quit: Connection closed for inactivity]
thecopy has left #ruby [#ruby]
xiphias has quit [Ping timeout: 240 seconds]
mklappst_ has joined #ruby
wallerdev has quit [Quit: wallerdev]
xiphias has joined #ruby
sheap has joined #ruby
<sp3__> exit
sp3__ has quit [Quit: leaving]
afhammad has joined #ruby
mklappstuhl has quit [Ping timeout: 252 seconds]
gja has quit [Quit: This computer has gone to sleep]
vikhyat has quit [Remote host closed the connection]
intuxicated has joined #ruby
subbyyy_ has joined #ruby
xiphias has quit [Ping timeout: 240 seconds]
jtgiri_ has joined #ruby
bradhe has quit [Remote host closed the connection]
jtgiri_ has quit [Client Quit]
xiphias has joined #ruby
bradhe has joined #ruby
diegoviola has quit [Ping timeout: 252 seconds]
subbyyy_ has quit [Ping timeout: 240 seconds]
peck__ has quit [Ping timeout: 240 seconds]
Es0teric has joined #ruby
peck_ has joined #ruby
bradhe has quit [Ping timeout: 265 seconds]
blandflakes has joined #ruby
floorpi has joined #ruby
floorpi has joined #ruby
floorpi has quit [Changing host]
vlad_starkov has joined #ruby
g0bl1n has joined #ruby
iliketur_ has quit [Quit: zzzzz…..]
OdNairy has joined #ruby
xiphias has quit [Ping timeout: 240 seconds]
xiphias has joined #ruby
predator117 has joined #ruby
_Andres has quit [Read error: Connection reset by peer]
iliketur_ has joined #ruby
AndroUser2 has joined #ruby
orionstein_away is now known as orionstein
OdNairy has quit [Ping timeout: 264 seconds]
maletor has joined #ruby
relix has quit [Quit: Textual IRC Client: www.textualapp.com]
Megtastique has joined #ruby
mmcdaris has joined #ruby
AndroUser2 has quit [Remote host closed the connection]
mlpinit has joined #ruby
reluctantlove has joined #ruby
lethjakman has quit [Ping timeout: 240 seconds]
mrfoto has joined #ruby
coda23 has quit [Quit: Leaving]
Xeago has joined #ruby
Konst has joined #ruby
Guest68335 has quit [Remote host closed the connection]
jtgiri_ has joined #ruby
mrfoto has quit [Ping timeout: 264 seconds]
zz_CripperZ is now known as CripperZ
CripperZ is now known as N00D
prakriti has joined #ruby
mmcdaris has quit [Quit: mmcdaris]
wallerdev has joined #ruby
matheuscaceres has joined #ruby
doodlehaus has joined #ruby
Derpinette has joined #ruby
bradhe has joined #ruby
mary5030 has quit [Remote host closed the connection]
mary5030 has joined #ruby
danshultz has quit [Remote host closed the connection]
xiphias has quit [Ping timeout: 240 seconds]
danshultz has joined #ruby
doodlehaus has quit [Remote host closed the connection]
xiphias has joined #ruby
danshultz has quit [Read error: Connection reset by peer]
Konst has quit [Ping timeout: 265 seconds]
danshult_ has joined #ruby
vlad_starkov has quit [Remote host closed the connection]
orionstein is now known as orionstein_away
jtgiri_ has quit [Quit: jtgiri_]
toroidalcode has joined #ruby
`MArceLL` has joined #ruby
doodlehaus has joined #ruby
phipes has quit [Remote host closed the connection]
lewix has joined #ruby
phipes has joined #ruby
xiphias has quit [Ping timeout: 240 seconds]
mlpinit has quit [Remote host closed the connection]
xiphias has joined #ruby
mlpinit has joined #ruby
vlad_starkov has joined #ruby
mklappst_ has quit [Remote host closed the connection]
Es0teric has quit [Quit: Computer has gone to sleep.]
vlad_starkov has quit [Read error: Connection reset by peer]
doodlehaus has quit []
hogeo has joined #ruby
matheuscaceres has quit [Quit: matheuscaceres]
fedesilva has quit [Remote host closed the connection]
_Andres has joined #ruby
mlpinit_ has joined #ruby
mlpinit has quit [Ping timeout: 264 seconds]
lkba has quit [Ping timeout: 264 seconds]
hogeo has quit [Ping timeout: 260 seconds]
kraljev0 has quit [Ping timeout: 260 seconds]
bradhe has quit [Remote host closed the connection]
kraljev0 has joined #ruby
lkba has joined #ruby
randomnick_ has joined #ruby
kraljev0 has quit [Client Quit]
fedesilva has joined #ruby
mercwithamouth has joined #ruby
kraljev0 has joined #ruby
ckinni has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
kraljev0 has quit [Client Quit]
reluctantlove has quit [Quit: Lingo - http://www.lingoirc.com]
aryaching has quit [Ping timeout: 264 seconds]
mercwithamouth has quit [Ping timeout: 260 seconds]
ggordan has joined #ruby
echevemaster has joined #ruby
mlpinit_ has quit [Remote host closed the connection]
vlad_starkov has joined #ruby
mrfoto has joined #ruby
mr_snowf1ake has quit [Ping timeout: 240 seconds]
havenn has joined #ruby
preller has quit [Ping timeout: 260 seconds]
vlad_starkov has quit [Read error: Connection reset by peer]
havenn has quit [Client Quit]
havenwood has quit [Ping timeout: 260 seconds]
martis has quit [Quit: Textual IRC Client: www.textualapp.com]
Konst has joined #ruby
mrfoto has quit [Ping timeout: 240 seconds]
mklappstuhl has joined #ruby
iliketur_ has quit [Quit: zzzzz…..]
jamesaanderson has joined #ruby
mercwithamouth has joined #ruby
jamesaanderson has quit [Max SendQ exceeded]
preller has joined #ruby
vlad_starkov has joined #ruby
jamesaanderson has joined #ruby
jtgiri_ has joined #ruby
assurbanipal has quit [Remote host closed the connection]
existensil_ has quit [Ping timeout: 260 seconds]
nettoweb has joined #ruby
popl has joined #ruby
popl has joined #ruby
popl has quit [Changing host]
phipes has quit [Remote host closed the connection]
defendguin has joined #ruby
jtgiri_ has quit [Client Quit]
io_syl has joined #ruby
havenwood has joined #ruby
tr0ss has joined #ruby
Ox6abe has joined #ruby
ddd is now known as deryl
havenwood has quit [Remote host closed the connection]
justsee has joined #ruby
justsee has joined #ruby
sergicles has quit [Quit: sergicles]
agjacome has quit [Ping timeout: 240 seconds]
ddd has joined #ruby
ddd has quit [Client Quit]
Es0teric has joined #ruby
lkba has quit [Ping timeout: 264 seconds]
agjacome has joined #ruby
Konst has quit []
Megtastique has quit []
phipes has joined #ruby
mikepack has joined #ruby
tr0ss has quit [Quit: leaving]
ddd has joined #ruby
culturel_ has joined #ruby
Jetchisel has joined #ruby
shedd has quit [Remote host closed the connection]
zipper_ is now known as zipper
Ox6abe has quit []
shime has quit [Read error: No route to host]
shime_ has joined #ruby
CpuID has joined #ruby
g0bl1n has quit [Ping timeout: 240 seconds]
kraljev0 has joined #ruby
deryl has quit [Quit: Leaving]
jamesaanderson has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
CpuID has quit [Client Quit]
jamesaanderson has joined #ruby
kraljev0 has quit [Read error: Connection reset by peer]
jamesaanderson has quit [Max SendQ exceeded]
kraljev0 has joined #ruby
floorpi has quit [Quit: Leaving]
jamesaanderson has joined #ruby
jamesaanderson has quit [Client Quit]
Megtastique has joined #ruby
Advocation has joined #ruby
jamesaanderson has joined #ruby
jamesaanderson has quit [Max SendQ exceeded]
phipes has quit [Remote host closed the connection]
jamesaanderson has joined #ruby
ckinni has joined #ruby
Hanmac1 has joined #ruby
coca_rails has joined #ruby
Hanmac has quit [Ping timeout: 240 seconds]
RoryHughes has quit []
mklappstuhl has quit [Remote host closed the connection]
timonv has joined #ruby
phipes has joined #ruby
maroloccio has quit [Quit: WeeChat 0.4.1]
ckinni has quit [Client Quit]
maroloccio has joined #ruby
maroloccio has quit [Client Quit]
kitak has quit [Remote host closed the connection]
kitak has joined #ruby
CpuID has joined #ruby
CpuID has quit [Changing host]
CpuID has joined #ruby
aryaching has joined #ruby
RoryHughes has joined #ruby
ckinni has joined #ruby
vlad_starkov has quit [Ping timeout: 240 seconds]
kraljev0 has quit [Quit: kraljev0]
maroloccio has joined #ruby
kraljev0 has joined #ruby
ckinni has quit [Client Quit]
Megtastique has quit []
ckinni has joined #ruby
timonv has quit [Ping timeout: 241 seconds]
jtgiri_ has joined #ruby
kraljev0 has quit [Read error: Connection reset by peer]
ckinni has quit [Client Quit]
kraljev0 has joined #ruby
mengu has quit [Remote host closed the connection]
s_e has quit [Excess Flood]
ckinni has joined #ruby
kraljev0 has quit [Client Quit]
kraljev0 has joined #ruby
nettoweb has quit [Quit: nettoweb]
Rollabunna has quit [Remote host closed the connection]
ambushsabre has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
ckinni has quit [Client Quit]
kraljev0 has quit [Client Quit]
Neomex has joined #ruby
kraljev0 has joined #ruby
cgore has joined #ruby
ckinni has joined #ruby
Hanmac1 has quit [Ping timeout: 260 seconds]
Rollabunna has joined #ruby
shredding has joined #ruby
Hanmac has joined #ruby
ckinni has quit [Client Quit]
sheap has quit [Ping timeout: 252 seconds]
s_e has joined #ruby
jxport has joined #ruby
predator117 has quit [Ping timeout: 264 seconds]
ckinni has joined #ruby
<jxport> I wish to map an operation across an Enumeration - but only on every third element; simply returning the original value if it's not every 3rd element. How can I best do this?
<jxport> Looping and %'ing the iteration counter doesn't seem Ruby
Neomex has quit [Client Quit]
RoryHughes has quit []
jamesaanderson has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
ckinni has quit [Client Quit]
renklaf has quit [Read error: Operation timed out]
ckinni has joined #ruby
<MrZYX> jxport: is that operation (available as) self modifying or do you need to retain the original list?
<Hanmac> jxport: like that?
<Hanmac> >> [*0..10].map.with_index {|x,idx| idx % 3 == 0 ? x.to_s : x}
<eval-in_> Hanmac => ["0", 1, 2, "3", 4, 5, "6", 7, 8, "9", 10] (https://eval.in/79678)
jtgiri_ has quit [Quit: jtgiri_]
ckinni has quit [Client Quit]
mercwithamouth has quit [Ping timeout: 260 seconds]
kraljev0 has quit [Read error: Connection reset by peer]
RoryHughes has joined #ruby
jamesaanderson has joined #ruby
jamesaanderson has quit [Max SendQ exceeded]
aspires has joined #ruby
ckinni has joined #ruby
ckinni has quit [Max SendQ exceeded]
jamesaanderson has joined #ruby
jamesaanderson has quit [Max SendQ exceeded]
ckinni has joined #ruby
kraljev0 has joined #ruby
jamesaanderson has joined #ruby
jamesaanderson has quit [Max SendQ exceeded]
kraljev0 has left #ruby [#ruby]
shedd has joined #ruby
ckinni has quit [Client Quit]
jamesaanderson has joined #ruby
defendguin has left #ruby [#ruby]
anomaly_ has quit [Read error: Connection reset by peer]
anomaly_ has joined #ruby
DeProdigy has quit [Ping timeout: 248 seconds]
relix has joined #ruby
predator117 has joined #ruby
justsee has quit [Ping timeout: 245 seconds]
justsee has joined #ruby
justsee has joined #ruby
justsee has quit [Changing host]
lethjakman has joined #ruby
fedesilva has quit [Remote host closed the connection]
RoryHughes has quit []
MattStratton has joined #ruby
SteveBenner9 has quit [Ping timeout: 265 seconds]
coca_rails has quit [Remote host closed the connection]
coca_rails has joined #ruby
<jxport> Hanmac: exactly - thank you
colonolGron has joined #ruby
shedd has quit [Ping timeout: 240 seconds]
psyl0n has joined #ruby
coca_rails has quit [Ping timeout: 245 seconds]
gregoriokusowski has joined #ruby
mlpinit has joined #ruby
predator117 has quit [Ping timeout: 265 seconds]
DeProdigy has joined #ruby
<jxport> Hanmac: I just realised I was lying - it's an Array, not an Enumerable. What would be the best course of action with that in mind?
<Hanmac> jxport: Array are Enumerable too
<jxport> I thought that. Hmm I'll re-read the error
LexicalScope has quit [Ping timeout: 240 seconds]
justsee has quit [Ping timeout: 240 seconds]
<jxport> undefined method `map_with_index' for [1, 2, 3, 4, 5, 6]:Array
elizar has joined #ruby
maroloccio has quit [Quit: WeeChat 0.4.1]
mlpinit has quit [Remote host closed the connection]
jtgiri_ has joined #ruby
sheap has joined #ruby
lupine has quit [Ping timeout: 245 seconds]
starfox21 has joined #ruby
Derpinette has quit []
elizar has quit [Quit: WeeChat 0.4.2]
nettoweb has joined #ruby
<jxport> That's with ruby 1.9.3p125 (2012-02-16 revision 34643) [i686-linux]
<MrZYX> it's map.with_index
<jxport> Oh. Thanks
shredding has quit [Quit: shredding]
<jxport> where is with_index defined?
<jxport> I don't see that in Enumerable
<Mon_Ouie> It's in Enumerator
<jxport> Thanks
Hanmac has quit [Ping timeout: 264 seconds]
Hanmac has joined #ruby
iliketur_ has joined #ruby
_Andres has quit [Read error: Connection reset by peer]
w1xz has joined #ruby
threesome has quit [Ping timeout: 240 seconds]
aspires has quit []
lkba has joined #ruby
kaiza has quit [Read error: Connection reset by peer]
<Hanmac> jxport: compare "map_with_index" with "map.with_index"
ambushsabre has joined #ruby
kaiza has joined #ruby
<Hanmac> shevy i commented mostly of the initialize methods on my binding ... do you want to see the diff?
kaiza has quit [Max SendQ exceeded]
kaiza has joined #ruby
echevemaster_ has joined #ruby
wallerdev has quit [Ping timeout: 240 seconds]
MattStratton has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
dev1x has joined #ruby
canton7 has quit [Ping timeout: 240 seconds]
dev1x has quit [Client Quit]
RoryHughes has joined #ruby
r0bby_ has quit [Ping timeout: 248 seconds]
culturel_ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
vlad_starkov has joined #ruby
<shevy> only in the year 2014
<shevy> :D
jtgiri_ has quit [Quit: jtgiri_]
r0bby_ has joined #ruby
ckinni has joined #ruby
bradhe has joined #ruby
mojjojo has joined #ruby
predator117 has joined #ruby
vlad_starkov has quit [Read error: No buffer space available]
jkhwan has joined #ruby
kitak has quit [Remote host closed the connection]
eka has quit [Quit: Computer has gone to sleep.]
davy_ has joined #ruby
afhammad has quit [Remote host closed the connection]
afhammad has joined #ruby
lupine has joined #ruby
hashpuppy has joined #ruby
amacgregor_ has joined #ruby
hogeo has joined #ruby
RoryHughes has quit []
zipper has quit [Quit: leaving]
claymore has quit [Quit: Leaving]
coderhs has quit [Quit: Leaving]
davy_ has quit [Ping timeout: 248 seconds]
sheap has left #ruby [#ruby]
fijimunk1i has joined #ruby
colluphid has quit [Read error: Connection reset by peer]
justsee has joined #ruby
justsee has joined #ruby
justsee has quit [Changing host]
nettoweb has quit [Quit: nettoweb]
amacgregor_ has quit [Quit: Leaving]
fijimunkii has quit [Ping timeout: 241 seconds]
hogeo has quit [Ping timeout: 265 seconds]
Advocation has quit [Quit: Advocation]
Autochthon has quit [Quit: WeeChat 0.4.2-rc1]
predator117 has quit [Ping timeout: 264 seconds]
blaskovicz has joined #ruby
popl has quit [Ping timeout: 245 seconds]
r0bby_ has quit [Read error: Operation timed out]
johnmilton has quit [Remote host closed the connection]
predator117 has joined #ruby
ckinni has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
tylersmith has joined #ruby
Scientz has joined #ruby
shedd has joined #ruby
tylersmi_ has joined #ruby
tylersmith has quit [Read error: Connection reset by peer]
predator117 has quit [Ping timeout: 240 seconds]
shuvarek has joined #ruby
fijimunk1i has quit [Ping timeout: 240 seconds]
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
justsee has quit [Ping timeout: 240 seconds]
kitak has joined #ruby
funburn has joined #ruby
justsee has joined #ruby
blaskovicz has quit [Quit: Leaving.]
blaskovicz1 has joined #ruby
starfox21 has quit [Quit: starfox21]
kirun has quit [Quit: Client exiting]
typicalbender has joined #ruby
vlad_starkov has joined #ruby
predator117 has joined #ruby
justsee has quit [Ping timeout: 240 seconds]
viod has quit [Ping timeout: 245 seconds]
aryaching has quit [Ping timeout: 248 seconds]
justsee has joined #ruby
vlad_starkov has quit [Read error: Connection reset by peer]
shedd has quit [Ping timeout: 264 seconds]
blaskovicz1 has quit [Ping timeout: 265 seconds]
siwica has joined #ruby
coffeina has quit [Quit: Wychodzi]
coffeina has joined #ruby
predator117 has quit [Ping timeout: 265 seconds]
preller has quit [Ping timeout: 252 seconds]
relix has joined #ruby
cmedeiros has joined #ruby
echevemaster_ has quit [Quit: Leaving]
preller has joined #ruby
Scientz has quit [Ping timeout: 248 seconds]
culturel_ has joined #ruby
fedesilva has joined #ruby
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
MrZYX is now known as MrZYX|off
fijimunkii has joined #ruby
jonahR has joined #ruby
sergicles has joined #ruby
mt_thor has joined #ruby
rubyracer has quit [Quit: Konversation terminated!]
w1xz has quit [Quit: .. lightyears a head but just a message away ..]
timonv has joined #ruby
w4pm has quit [Ping timeout: 264 seconds]
predator117 has joined #ruby
coffeina has quit [Quit: Wychodzi]
colonolGron has quit [Quit: leaving]
fedesilva has quit [Remote host closed the connection]
psyl0n has quit [Remote host closed the connection]
fedesilva has joined #ruby
timonv has quit [Ping timeout: 248 seconds]
Xeago has quit [Remote host closed the connection]
mt_thor has quit [Quit: Lingo - http://www.lingoirc.com]
predator117 has quit [Ping timeout: 260 seconds]
mojjojo has quit [Quit: mojjojo]
hogeo has joined #ruby
shime_ has quit [Ping timeout: 252 seconds]
gregoriokusowski has quit [Quit: gregoriokusowski]
brenix has joined #ruby
prakriti has quit [Ping timeout: 240 seconds]
Lostmonk has quit [Quit: Leaving]
hogeo has quit [Ping timeout: 265 seconds]
fitlessm has joined #ruby
fitlessm has quit [Remote host closed the connection]
xk_id is now known as KingDoge
bricker`LA has joined #ruby
mojjojo has joined #ruby
justsee_ has joined #ruby
mercwithamouth has joined #ruby
nari has joined #ruby
petey has joined #ruby
anomaly_ has quit [Read error: Connection reset by peer]
anomaly_ has joined #ruby
Rollabunna has quit [Remote host closed the connection]
Jetchisel has left #ruby ["Unfortunately time is always against us -- *Morpheus*"]
peregrine81 has joined #ruby