apeiros changed the topic of #ruby to: Ruby 2.0.0-p195: http://ruby-lang.org (Ruby 1.9.3-p429) || Paste >3 lines of text on http://gist.github.com
pitzips has joined #ruby
nowthatsamatt has quit [Quit: nowthatsamatt]
Inside has quit [Ping timeout: 264 seconds]
wmoxam_ has quit [Ping timeout: 240 seconds]
<joesavage> egon1: Using "eval" is never great practice either, so I'm guessing that's contributing to the massive annoyance of this problem, but I can't think of any other way to do this..
jimg has joined #ruby
jdunck has quit [Quit: Computer has gone to sleep.]
circ-user-IN26m has joined #ruby
louism2_ has left #ruby ["Leaving"]
anderson has quit [Ping timeout: 245 seconds]
F1skr has quit [Quit: WeeChat 0.4.1]
<circ-user-IN26m> Hey all. I'm trying to setup logging for when a method is entered and then when it is exited. Is that possible?
circ-user-IN26m is now known as bitcycle
_maes_ has joined #ruby
infecto has joined #ruby
jimg has quit [Ping timeout: 248 seconds]
joesavage has quit [Quit: Page closed]
dambler has quit [Quit: Textual IRC Client: www.textualapp.com]
freeayu has joined #ruby
ivanoats has quit [Remote host closed the connection]
atno has quit [Remote host closed the connection]
<Spooner> bitcycle, Yes, it is.
atno has joined #ruby
<bitcycle> Spooner: Would you happen to know of an example that I can learn from?
Inside has joined #ruby
Inside has quit [Changing host]
Inside has joined #ruby
<sn0wb1rdz> When I do an object.inspect it prints out the name of the class the object is in and a hex number like this Namespace::Client:0x10cf51038.
<sn0wb1rdz> Where did that hex number come from?
Guedes has joined #ruby
Guedes has quit [Changing host]
Guedes has joined #ruby
<sn0wb1rdz> How do I get that inside a ruby program?
<Spooner> That is the unique ID of the object.
<sn0wb1rdz> How do I get that?
<Spooner> sn0wb1rdz, You can use object.__id__ to get it
<Spooner> Though you should never need it. It is mainly useful just to tell that two objects are different.
<sn0wb1rdz> Spooner: But that prints a numeric ID. Is this just the hexadecimal conversion?
ner0x has joined #ruby
kenichi has quit [Ping timeout: 252 seconds]
<sn0wb1rdz> irb(main):010:0> @client.__id__
<sn0wb1rdz> => 2256177180
<sn0wb1rdz> irb(main):010:0> @client.__id__
<sn0wb1rdz> => 2256177180
<sn0wb1rdz> irb(main):010:0> @client.__id__ => 2256177180
brotatos has quit [Quit: WeeChat 0.4.1]
<Spooner> >> Object.new.__id__.to_s(16)
<eval-in_> Spooner => "20d8492c" (http://eval.in/32434)
snearch has quit [Quit: Verlassend]
drPoggs has quit [Ping timeout: 264 seconds]
notVert has joined #ruby
alexwh has quit [Ping timeout: 252 seconds]
JStoker has quit [Ping timeout: 252 seconds]
jeebster has quit [Read error: Connection reset by peer]
jeebster has joined #ruby
kenichi has joined #ruby
<Xeago> isn't 0xabc, the memory offset?
notVert has quit [Read error: Connection reset by peer]
Vert has quit [Read error: Connection reset by peer]
Rennex has quit [Ping timeout: 252 seconds]
tethra has quit [Ping timeout: 264 seconds]
DonRichie has quit [Quit: Verlassend]
tethra has joined #ruby
alexwh has joined #ruby
drPoggs has joined #ruby
<Spooner> You might be right, Xeago. The ID and that number in the description aren't the same now I come to actually check it.
Rennex has joined #ruby
asdfqwer has joined #ruby
freeayu has quit [Ping timeout: 248 seconds]
<Spooner> Ah, but they are related...
<Spooner> >> o = Object.new; [(o.__id__ * 2).to_s(16), o]
<eval-in_> Spooner => ["417e1170", #<Object:0x417e1170>] (http://eval.in/32436)
<sn0wb1rdz> Yeah. the hex number in the inspect seems to be the memory offset.
<Spooner> At least in CRuby, it seems, __id__ is half the memory address for proper objects.
<Xeago> I think that is the way ruby has objects
wmoxam has joined #ruby
Mattix has quit [Ping timeout: 240 seconds]
<Xeago> the first bit is for value/reference stuff iirc
<Xeago> so it <<1 all values otherwise displayed
<Xeago> hence the times 2
<Spooner> Makes sense.
<Xeago> or soemthing along those lines
Michael has joined #ruby
<Xeago> or division by 2, depending on how you look at it
brotatos has joined #ruby
<sn0wb1rdz> eval-in_ that works
bean__ has joined #ruby
<Spooner> But really, they are both only guaranteed to be unique identifiers. Implementation dependent what they actually will be.
Michael is now known as Guest12067
banjara has quit [Quit: Leaving.]
devoldmx3 has joined #ruby
JStoker has joined #ruby
devoldmx has quit [Ping timeout: 245 seconds]
Andreo__ has quit [Read error: Connection reset by peer]
Inoperable has quit [Quit: Coyote finally caught me]
aces1up has joined #ruby
nowthatsamatt has joined #ruby
slainer68 has quit [Remote host closed the connection]
tomzx_mac_ has joined #ruby
tomzx_mac has quit [Ping timeout: 245 seconds]
pipework has quit [Remote host closed the connection]
aces1up23 has quit [Ping timeout: 260 seconds]
freerobby has joined #ruby
reset has quit [Ping timeout: 252 seconds]
Mattix has joined #ruby
asdfqwer has quit []
slash_nick has joined #ruby
Vert has joined #ruby
johnnyfuchs has quit [Remote host closed the connection]
freeayu has joined #ruby
tjbiddle has quit [Ping timeout: 252 seconds]
adkron_ has joined #ruby
ablemike has quit [Remote host closed the connection]
adkron has quit [Ping timeout: 256 seconds]
mikepack has quit [Remote host closed the connection]
pr0ton has joined #ruby
mattbl has joined #ruby
AlSquire has quit [Quit: This computer has gone to sleep]
wsterling has joined #ruby
rickruby has joined #ruby
wsterling has quit [Ping timeout: 252 seconds]
jeebster has quit [Read error: Connection reset by peer]
jeebster has joined #ruby
harrymoreno_ has joined #ruby
harrymoreno has quit [Ping timeout: 248 seconds]
harrymoreno_ is now known as harrymoreno
<aces1up> anyone know if i can do a ruby hash.merge! without overwriting duplicate keys?
<r0bglees0n> lol
bricker is now known as bricker`away
jeebster1 has joined #ruby
jeebster has quit [Read error: Connection reset by peer]
<r0bglees0n> aces1up: keys in a hash are unique, how else should lookup happen? I guess the keys could stack values in arrays, but that's not how it works in ruby. keys are unique. you can't have duplicates.
<r0bglees0n> aces1up: you might be able to reverse the order merge!(…) is called to get the desired results.
adkron_ has quit [Ping timeout: 240 seconds]
<r0bglees0n> aces1up: so if you have a hash in 'foo', and 'bar', but want to keep the duplicate key in bar, you'd say foo.merge!(bar)
Xeago has quit [Remote host closed the connection]
harrymoreno has quit [Ping timeout: 256 seconds]
bean__ has quit [Quit: Computer has gone to sleep.]
<bitcycle> Ok. I'm super confused about this. All I want to do is define a single method that wraps every other method printing "enter" on entry and printing "exit" on exit. The methods that're being wrapped are just normal functions inside a ruby file, without a Module or Class or Class Instance designation. Is _that_ possible?
Gooder`` has joined #ruby
harrymoreno has joined #ruby
<r0bglees0n> bitcycle: wrap it how?
<r0bglees0n> bitcycle: got some example code?
Gooder` has quit [Ping timeout: 248 seconds]
<Spooner> bitcycle, I gave you an example.
<bitcycle> Spooner: It doesn't address the case of a normal method without being associated to a class.
banjara has joined #ruby
jeebster1 has quit [Quit: Leaving.]
<Spooner> You can't magically find all_methods, since the outer scope has plenty of methods in it.
chrishough has quit [Quit: chrishough]
harrymoreno has quit [Ping timeout: 256 seconds]
<bitcycle> Spooner: k, so if I knew the list of all methods (mix of class methods, normal functions, etc).... would that be feasible?
harrymoreno has joined #ruby
<Spooner> Yes, if you could make a list of them (or a list of modules and classes with them in), it would be possible.
slainer68 has joined #ruby
robscomputer_ has joined #ruby
pr0ton has quit [Quit: pr0ton]
<r0bglees0n> set_trace_func might be easier to use, but it is slow
huoxito has quit [Quit: Leaving]
Starttoday has joined #ruby
tomzx_mac_ has quit [Ping timeout: 260 seconds]
Nisstyre-laptop has quit [Quit: Leaving]
saarinen has quit [Quit: saarinen]
fridim_ has joined #ruby
robscomputer has quit [Ping timeout: 276 seconds]
robscomputer_ has quit [Ping timeout: 245 seconds]
infecto1 has joined #ruby
icole has quit [Remote host closed the connection]
icole has joined #ruby
Ortuna has joined #ruby
Ortuna has quit [Remote host closed the connection]
emmanuelux has quit [Ping timeout: 245 seconds]
Ortuna has joined #ruby
sqa_bm has joined #ruby
infecto has quit [Ping timeout: 240 seconds]
Mon_Ouie has quit [Ping timeout: 256 seconds]
lucianosousa has joined #ruby
<lewix> ruby -c foo.rb
slainer68 has quit [Ping timeout: 245 seconds]
io_syl has quit [Quit: Computer has gone to sleep.]
<lewix> hwo do you run ruby from the command line to parse the code without executing it again? not just the syntax
<r0bglees0n> ruby -e 'puts "Foo"'
<r0bglees0n> oh
<r0bglees0n> sorry
<r0bglees0n> without exeucuting it
<r0bglees0n> not sure, ruby -h should have it
<r0bglees0n> yup
<r0bglees0n> -c
kofno has joined #ruby
<r0bglees0n> so: ruby -c -e "puts 'hi'"
jjbohn has joined #ruby
Gooder`` has quit [Read error: Connection reset by peer]
Gooder``` has joined #ruby
tomzx_mac has joined #ruby
niklasb has quit [Ping timeout: 256 seconds]
<lewix> -c check the syntax
timkohrumel has quit [Remote host closed the connection]
<r0bglees0n> correct
<lewix> it does not check things such as undefined method
<r0bglees0n> no, that happens at runtime
Voodoofish430 has quit [Quit: Leaving.]
<r0bglees0n> so, you have to run the code for that
rburton- has joined #ruby
timkohrumel has joined #ruby
<lewix> i see
<lewix> thanks you
<r0bglees0n> sure
timkohrumel has quit [Read error: No route to host]
daniel_- has quit [Ping timeout: 248 seconds]
GeissT has joined #ruby
Starttoday has quit []
mixel has quit [Quit: mixel]
voidpirate has joined #ruby
monkegjinni has quit [Remote host closed the connection]
wsterling has joined #ruby
mattbl has quit [Ping timeout: 246 seconds]
jokke has quit [Ping timeout: 240 seconds]
arya_ has quit [Ping timeout: 245 seconds]
ericmathison has quit [Quit: leaving]
idoru has quit [Read error: Connection timed out]
bionhart has joined #ruby
mattbl has joined #ruby
arya has joined #ruby
mattbl has quit [Remote host closed the connection]
twoism has quit [Remote host closed the connection]
niklasb has joined #ruby
<Spooner> bitcycle, I needed to flex my metaskills: https://gist.github.com/Spooner/4e44a735f1b9d3339821
h4mz1d has joined #ruby
JZTech101 has quit [Quit: Hmm... What to do now?]
bionhart has quit [Read error: No route to host]
<r0bglees0n> Spooner: thats pretty cool
jkline has joined #ruby
bionhart has joined #ruby
egon1 has quit [Remote host closed the connection]
<r0bglees0n> Spooner: now write a recursive functiom that uses #constants to wrap ALL THE THINGS.
<Spooner> All the things?
jjbohn has quit [Quit: Leaving...]
ner0x has quit [Quit: Leaving]
<bitcycle> Spooner: Dude. That's awesome!! Thank you SO much for writing that.
<r0bglees0n> Spooner: it's an internet thing. i just meant every single thing.
wsterling has quit [Remote host closed the connection]
jimg has joined #ruby
bitcycle has quit [Remote host closed the connection]
igaiga has joined #ruby
jacktrick has joined #ruby
rburton- has quit [Quit: Leaving...]
Z_Mass has joined #ruby
jimg has quit [Ping timeout: 264 seconds]
adkron has joined #ruby
tomsthumb has joined #ruby
h4mz1d has quit [Ping timeout: 252 seconds]
phipes has quit [Quit: phipes]
<Spooner> r0bglees0n, Ack, I cleaned it up, but bitcycle has left ;)
hamakn has quit [Remote host closed the connection]
hamakn has joined #ruby
lyanchih has joined #ruby
Guest12067 has quit [Remote host closed the connection]
<Spooner> r0bglees0n, Oh well, I added recursive wrapping for you ;)
Hanmac1 has joined #ruby
jdunck has joined #ruby
hamakn has quit [Ping timeout: 245 seconds]
<r0bglees0n> Spooner: good job!
harrymoreno_ has joined #ruby
jbueza has quit [Quit: Leaving.]
<Spooner> I'm writing mostly in Python at the moment, so I need the practice ;)
<r0bglees0n> are you still writing games?
<Spooner> About 50/50.
harrymoreno has quit [Ping timeout: 248 seconds]
harrymoreno_ is now known as harrymoreno
<Spooner> But getting paid now, which is a nice change!
thomasle_ has quit [Read error: Connection reset by peer]
<Spooner> (That is 50% games and 50% general contracts).
<r0bglees0n> congrats.
Hanmac has quit [Ping timeout: 252 seconds]
druonysus has quit [Ping timeout: 256 seconds]
atno has quit [Remote host closed the connection]
atno has joined #ruby
eploko has quit [Quit: Z-z-zzz...]
cj3kim has quit [Remote host closed the connection]
hakunin has quit [Read error: Connection reset by peer]
apeiros has joined #ruby
hakunin has joined #ruby
postmodern has quit [Remote host closed the connection]
postmodern has joined #ruby
osvico has joined #ruby
devoldmx3 has quit [Ping timeout: 246 seconds]
devoldmx has joined #ruby
viszu has joined #ruby
slash_nick has quit [Ping timeout: 248 seconds]
Spooner has quit [Quit: Leaving]
druonysus has joined #ruby
druonysus has joined #ruby
druonysus has quit [Changing host]
kenneth has quit [Quit: kenneth]
phipes has joined #ruby
voidpirate has quit [Remote host closed the connection]
devoldmx has quit [Read error: Connection reset by peer]
brunoro has quit [Ping timeout: 260 seconds]
aedornm has quit [Ping timeout: 276 seconds]
aedornm has joined #ruby
infecto1 has quit [Quit: Leaving.]
brunoro has joined #ruby
wargasm has quit [Ping timeout: 256 seconds]
lucianosousa has quit [Quit: lucianosousa]
arubin has quit [Quit: Textual IRC Client: www.textualapp.com]
igaiga has quit [Remote host closed the connection]
mahmoudimus has quit [Quit: Computer has gone to sleep.]
cj3kim has joined #ruby
havenwood has quit [Remote host closed the connection]
igaiga has joined #ruby
havenwood has joined #ruby
krombr has quit [Remote host closed the connection]
jasonkuhrt has joined #ruby
dhruvasagar has joined #ruby
io_syl has joined #ruby
timkohrumel has joined #ruby
druonysus has quit [Ping timeout: 256 seconds]
timkohrumel has quit [Remote host closed the connection]
havenwood has quit [Ping timeout: 245 seconds]
chrisseaton has joined #ruby
paissad_ has joined #ruby
<chrisseaton> Hi - relative Ruby newbie here - can anyone explain this functionality to me? http://pastebin.com/8N8DwrkQ. I don't get what the rule is to decide when the block de-splats and when it doesn't.
igaiga has quit [Remote host closed the connection]
LennyLinux has quit [Remote host closed the connection]
InFlames has quit [Ping timeout: 256 seconds]
hogeo has joined #ruby
mattbl has joined #ruby
voidpirate has joined #ruby
<jkline> chrisseaton: puts will echo a new line for every comma, are you accounting for that?
<r0bglees0n> chrisseaton: you're just confused.
<jkline> try puts "x is #{x} and y is #{y}"
<r0bglees0n> puts outputs each element in the array
<r0bglees0n> so, first one is puts [1,2]
<r0bglees0n> second is puts [1] puts [2]
Davey has joined #ruby
kenneth has joined #ruby
<r0bglees0n> but ruby iterates each element and prints it
<r0bglees0n> so thats why it appears odd
InFlames has joined #ruby
paissad has quit [Ping timeout: 252 seconds]
<chrisseaton> No, I mean a block with two parameters, when passed an array, will destructure it. Even though there's no * operator in the argument list. Methods don't do that, do they?
Davey has quit [Max SendQ exceeded]
krombr has joined #ruby
<r0bglees0n> it doesn't destructure it
<r0bglees0n> do you mean for the second example?
luckyruby has quit [Remote host closed the connection]
<chrisseaton> Yeah - the first and last make sense to me. I don't get why the second appears to destructure without any * annotation.
Davey has joined #ruby
Davey has quit [Max SendQ exceeded]
<r0bglees0n> yeah, ruby is intelligent depending on the arity
<r0bglees0n> it tries to do the best thing
<r0bglees0n> it can get more complex than that
<r0bglees0n> you could say |(a,b),c|
Davey has joined #ruby
sayan has quit [Read error: Connection reset by peer]
<chrisseaton> This is different to methods though isn't it? Methods don't destructure without any annotation.
<r0bglees0n> well, you can check the arity of a method and decide what parameters to send depending on what it is
<chrisseaton> So do you think I'm right if I say that the semantics are: if I expect multiple parameters, and I get just one, and it's an array, destructure it
<heftig> chrisseaton: the automatic destructuring only happens for procs, when the arity is != 1 and a single array is passed as parameter
rickruby has quit [Remote host closed the connection]
<heftig> chrisseaton: yes.
<chrisseaton> heftig: ok, i can understand that - although this isn't a proc - it's a block - procs aren't blocks unless you reify them are they?
<heftig> blocks have proc semantics
<chrisseaton> heftig: and when you say proc, you mean as opposed to lambda or methods?
<heftig> yes
<r0bglees0n> you might be thinking of lambdas
<chrisseaton> I wish that ISO spec - there's really no formal documentation of all this stuff is there? It's all just ad hoc, try it and see, or try to work it out from the narrative of a book.
<heftig> chrisseaton: sadly, no. i guess rubyspec is the closest thing we have to any spec
radic__ has joined #ruby
<heftig> and even it tries just to document what MRI does
<chrisseaton> ok, thanks everyone
<r0bglees0n> yeah rubyspec is a good place to learn
<r0bglees0n> rubinius itself is also great if you want to learn more about ruby in ruby
matematikaadit has joined #ruby
<heftig> though i don't like how the amount of primitives grows
<r0bglees0n> yeah.. that's when you hit a brick wall as far as reading ruby goes.
chxane has joined #ruby
igherest has joined #ruby
<chrisseaton> Semantics is always tricky. You know when they designed Haskell they planned to write a formal operational semantics for all of the language, and never got around to it, so even the most static languages still struggle to define it formally.
<jkline> I'm building my own gems, and then installing them. They include an executable script. Ruby gems generates a wrapper with #!/usr/bin/env ruby . The problem is that the ruby binary is called ruby1.9 on my system. How can I tell gem to change the name of the binary?
<jkline> I'm not entirely sure if this is a build-time, or install-time problem.
iamjarvo has joined #ruby
radic_ has quit [Ping timeout: 260 seconds]
nfk has quit [Quit: yawn]
<r0bglees0n> install-time.
<r0bglees0n> gem1.9 install yourgem should fix it.
<r0bglees0n> chrisseaton: yeah its interesting, did you read the draft spec that had been written?
igherest has left #ruby [#ruby]
<jkline> but why not gem1.9 build r0bglees0n ?
adkron_ has joined #ruby
<r0bglees0n> because the wrapper is installed at install time, and it wouldn't make sense for the build machine to hardcode the path when the code is destined for another machine (possibly, rubygems)
<chrisseaton> r0bglees0n: no - I didn't know they got that far. I know there's some joke about asking what the range of functions is - and I think they now regret all the partial functions in the prelude.
sqa_bm has quit [Remote host closed the connection]
<jkline> Ok, that makes sense mostly. What do you mean by the parenthetical remark "possibly, rubygems" ?
wsterling has joined #ruby
<r0bglees0n> there was a draft floating around, based on 1.8.7 i think.
<chrisseaton> r0bglees0n: oh I thought you meant haskell. There's the ISO spec but it's behind a (big) paywall.
<r0bglees0n> jkline: a rubygem might be built on your machine, pushed to rubygems.org, and installed on multiple other machines.
jurbat has joined #ruby
<r0bglees0n> chrisseaton: what's the paywall?
<jkline> r0bglees0n: right, of course. So the ruby binary on each of those machines has a, potentially different, name. Therefore the installer makes a wrapper.
<r0bglees0n> yeah
<r0bglees0n> it pulls that from RbConfig probably
adkron has quit [Ping timeout: 264 seconds]
<jkline> where/what is RbConfig?
brotatos has quit [Quit: WeeChat 0.4.1]
igaiga has joined #ruby
<r0bglees0n> it's an object that knows all about your ruby build
<r0bglees0n> require 'rbconfig'
<jkline> false
<r0bglees0n> ok, so thats fine, its already loaded
<chrisseaton> r0bglees0n: ISO - it's like $250 to get a copy http://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=59579
<r0bglees0n> >> RbConfig
<eval-in_> r0bglees0n => RbConfig (http://eval.in/32448)
wsterling has quit [Ping timeout: 256 seconds]
<r0bglees0n> >> RbConfig.methods
<eval-in_> r0bglees0n => [:expand, :ruby, :freeze, :===, :==, :<=>, :<, :<=, :>, :>=, :to_s, :inspect, :included_modules, :include?, :name, :ancestors, :instance_methods, :public_instance_methods, :protected_instance_methods, ... (http://eval.in/32449)
<r0bglees0n> >> RbConfig.ruby
<eval-in_> r0bglees0n => "/execpad/interpreters/ruby-2.0.0-p0/bin/ruby" (http://eval.in/32450)
<r0bglees0n> chrisseaton: ah i see, didn't know that.
<jkline> well, in irb1.9 RbConfig.ruby is /usr/bin/ruby1.9 , which is correct
<jkline> unfortunately my colleague, who was doing most of the work on this, is not here right now, so I cannot ask 100% of follow up questions.
<r0bglees0n> wait
jdunck has quit [Quit: Computer has gone to sleep.]
* jkline waiting for r0bglees0n
<r0bglees0n> what does env ruby -e 'p RbConfig.ruby' say?
<r0bglees0n> i think the problem is that 'env' points to the wrong ruby
<jkline> ok, so /usr/bin/ruby -e 'p RbConfig.ruby' says "uninitialized constant RbConfig" (That's ruby 1.8.7 btw). /usr/bin/ruby1.9 -e 'p RbConfig.ruby' says "/usr/bin/ruby1.9"
Jackneill has joined #ruby
<r0bglees0n> jkline: env ruby -rrbconfig -e 'p RbConfig.ruby'
<r0bglees0n> copy+paste exactly that
<r0bglees0n> the 'env' part as well
lewix has quit [Remote host closed the connection]
sayan has joined #ruby
<jkline> "/usr/bin/ruby1.9" (because ~/bin/ruby is a symlink to /usr/bin/ruby1.9, which might be a bad idea)
Guedes has quit [Ping timeout: 246 seconds]
<r0bglees0n> so your wrapper should point there
<r0bglees0n> the shebang line will point at whatever env points to
mattbl has quit [Read error: Connection reset by peer]
keanehsiao has joined #ruby
mattbl has joined #ruby
<jkline> so the problem is the gem is installed as root, and root thinks that ruby means "/usr/bin/ruby" ?
matematikaadit has quit [Quit: used jmIrc]
infecto has joined #ruby
<jkline> ok, so my colleague is online again. He says that he first made an rpm of the gem using fpm. The problem #! line comes from fpm. If we install the gem using /usr/bin/gem1.9 the #! line is /usr/bin/ruby1.9
adkron_ has quit [Ping timeout: 245 seconds]
ebobby has quit [Quit: Lost terminal]
robert_ has joined #ruby
robert_ has quit [Changing host]
robert_ has joined #ruby
hogeo has quit [Remote host closed the connection]
<jkline> thanks r0bglees0n . Perhaps Monday we'll hae this discussion again in #fpm :)
hogeo has joined #ruby
danslo has joined #ruby
wting_ is now known as wting
<r0bglees0n> jkline: sure, no
<r0bglees0n> np*
bricker`LA has joined #ruby
banghouse has quit [Remote host closed the connection]
viszu has quit [Quit: Leaving.]
hogeo has quit [Ping timeout: 245 seconds]
igaiga has quit [Remote host closed the connection]
sayan has quit [Read error: Connection reset by peer]
infecto has quit [Quit: Leaving.]
freerobby1 has joined #ruby
mattbl has quit [Ping timeout: 240 seconds]
cj3kim has quit [Remote host closed the connection]
freerobby has quit [Ping timeout: 256 seconds]
decoponio has joined #ruby
jasonkuhrt has quit [Quit: Leaving...]
jkline has quit [Quit: jkline]
chrisseaton has quit [Quit: Page closed]
cj3kim has joined #ruby
cj3kim has quit [Remote host closed the connection]
`p has quit [Ping timeout: 256 seconds]
pkrnj has quit [Ping timeout: 276 seconds]
Vivekananda has joined #ruby
pkrnj has joined #ruby
pkrnj has quit [Remote host closed the connection]
wmoxam has quit [Ping timeout: 264 seconds]
stkowski has quit [Quit: stkowski]
Cultofme_ has quit [Read error: Connection reset by peer]
Cultofmetatron has joined #ruby
wsterling has joined #ruby
jacktrick has quit [Quit: Leaving]
jbueza has joined #ruby
Nisstyre-laptop has joined #ruby
ninegrid_ is now known as ninegrid
cj3kim has joined #ruby
v0n has joined #ruby
infecto has joined #ruby
wmoxam has joined #ruby
thomaslee has joined #ruby
rickruby has joined #ruby
ElderFain has joined #ruby
jamesfung14 has quit [Quit: Leaving]
rezzack has quit [Quit: Leaving.]
goodman1 has joined #ruby
goodman1 has quit [Client Quit]
goodman1 has joined #ruby
infecto has quit [Ping timeout: 246 seconds]
csaunders has joined #ruby
threesome has quit [Ping timeout: 245 seconds]
voidpirate has quit [Remote host closed the connection]
icole has quit [Remote host closed the connection]
iamjarvo has quit [Quit: Leaving.]
n_blownapart has joined #ruby
n_blownapart has quit [Remote host closed the connection]
juarlex has joined #ruby
voidpirate has joined #ruby
yacks has joined #ruby
harrymoreno_ has joined #ruby
igaiga has joined #ruby
brunoro has quit [Ping timeout: 252 seconds]
tomzx_mac has quit [Quit: return 0;]
tomzx_mac has joined #ruby
harrymoreno has quit [Ping timeout: 264 seconds]
harrymoreno_ is now known as harrymoreno
Eaven has joined #ruby
igaiga has quit [Remote host closed the connection]
infecto has joined #ruby
brunoro has joined #ruby
baroquebobcat has joined #ruby
hogeo has joined #ruby
wmoxam has quit [Ping timeout: 248 seconds]
faulkner has quit [Quit: boo.]
diadara has joined #ruby
arya has quit [Ping timeout: 256 seconds]
DomKM has joined #ruby
goodman1 has quit []
wu_lmao has quit [Quit: wu_lmao]
krombr has quit [Remote host closed the connection]
Guest36167 has joined #ruby
arya has joined #ruby
voidpirate has quit [Remote host closed the connection]
hogeo_ has joined #ruby
sqa_bm has joined #ruby
sam113101 has joined #ruby
thomaslee has quit [Read error: Connection reset by peer]
timkohrumel has joined #ruby
icole has joined #ruby
hogeo has quit [Ping timeout: 240 seconds]
Inoperable has joined #ruby
danslo has quit [Quit: danslo]
wedgeV_ has joined #ruby
brunoro has quit [Read error: Operation timed out]
sqa_bm has quit [Ping timeout: 252 seconds]
cofin_ has joined #ruby
nopper has quit [Ping timeout: 246 seconds]
ia___ has joined #ruby
alex88_ has joined #ruby
Rennex has quit [Ping timeout: 246 seconds]
cofin has quit [Ping timeout: 246 seconds]
cj3kim has quit [Remote host closed the connection]
dhruvasagar has quit [Ping timeout: 246 seconds]
kidoz has quit [Ping timeout: 246 seconds]
phreax_ has quit [Ping timeout: 246 seconds]
jacobw has quit [Ping timeout: 246 seconds]
Astralum has joined #ruby
joelteon has quit [Quit: bye]
joelteon has joined #ruby
Guest36167 has quit [Quit: Leaving]
wsterling has quit [Remote host closed the connection]
nw has quit [Ping timeout: 248 seconds]
phreax has joined #ruby
Davey has quit [Quit: Computer has gone to sleep.]
dhruvasagar has joined #ruby
araujo has quit [Quit: Leaving]
nw has joined #ruby
Astral_ has quit [Ping timeout: 259 seconds]
mattbl has joined #ruby
asuka has quit [Ping timeout: 246 seconds]
yekta_ has joined #ruby
kidoz has joined #ruby
thomaslee has joined #ruby
asuka has joined #ruby
Caldrin has quit [Ping timeout: 246 seconds]
nopper has joined #ruby
jacobw has joined #ruby
cj3kim has joined #ruby
lewix has joined #ruby
csaunders has quit [Quit: Computer has gone to sleep.]
jimg has joined #ruby
s0ber_ has joined #ruby
s0ber has quit [Remote host closed the connection]
pcarrier_ has quit [Ping timeout: 276 seconds]
Qwak has quit [Ping timeout: 276 seconds]
nemesit|- has quit [Ping timeout: 276 seconds]
s0ber_ is now known as s0ber
alex88 has quit [Ping timeout: 240 seconds]
wedgeV has quit [Ping timeout: 240 seconds]
alex88_ is now known as alex88
Villadelfia has quit [Ping timeout: 276 seconds]
LucidDreamZzZ has joined #ruby
hogeo_ has quit [Remote host closed the connection]
s00pcan has quit [Ping timeout: 276 seconds]
bjeanes has quit [Ping timeout: 276 seconds]
banjara1 has joined #ruby
hogeo has joined #ruby
ia___ has quit [Ping timeout: 276 seconds]
Iszak has quit [Ping timeout: 276 seconds]
hogeo has quit [Read error: Connection reset by peer]
Jackneill has quit [Ping timeout: 276 seconds]
Hanmac1 has quit [Ping timeout: 276 seconds]
grn_ has quit [Ping timeout: 276 seconds]
Guedes0 has quit [Ping timeout: 276 seconds]
__main__ has quit [Ping timeout: 276 seconds]
yxhuvud has quit [Ping timeout: 276 seconds]
hogeo has joined #ruby
Rennex has joined #ruby
pcarrier_ has joined #ruby
kofno has quit [Remote host closed the connection]
Ortuna has quit [Quit: Computer has gone to sleep.]
Iszak has joined #ruby
RORgasm has joined #ruby
sam113101 has quit [Read error: Operation timed out]
Villadelfia has joined #ruby
denken has quit [Ping timeout: 276 seconds]
nhhagen has quit [Ping timeout: 276 seconds]
busybox42 has quit [Ping timeout: 276 seconds]
lewix has quit [Ping timeout: 256 seconds]
grn has joined #ruby
jeffean has quit [Ping timeout: 276 seconds]
shaman42_ has joined #ruby
weeb1e_ has joined #ruby
denken has joined #ruby
jimg has quit [Ping timeout: 246 seconds]
mattbl has quit [Read error: Connection reset by peer]
staafl_alt has joined #ruby
busybox42 has joined #ruby
s00pcan has joined #ruby
yxhuvud has joined #ruby
yekta_ has quit [Quit: yekta_]
timkohru_ has joined #ruby
__main__ has joined #ruby
bhaak_ has joined #ruby
drfreeze_ has joined #ruby
Qwak has joined #ruby
bionhart_ has joined #ruby
sam113101 has joined #ruby
rubycode_ has quit [Quit: Connection closed for inactivity]
shaman42 has quit [Ping timeout: 276 seconds]
dnyy has quit [Ping timeout: 276 seconds]
bionhart has quit [Ping timeout: 276 seconds]
weeb1e has quit [Ping timeout: 276 seconds]
bhaak has quit [Ping timeout: 276 seconds]
Caelum has quit [Ping timeout: 276 seconds]
banjara has quit [Ping timeout: 276 seconds]
autumn has quit [Ping timeout: 276 seconds]
RORgasm_ has quit [Read error: Connection reset by peer]
drfreeze has quit [Remote host closed the connection]
ping-pong has quit [Ping timeout: 276 seconds]
DefV_ has quit [Ping timeout: 276 seconds]
kevinykchan has quit [Ping timeout: 276 seconds]
Caldrin has joined #ruby
timkohrumel has quit [Ping timeout: 276 seconds]
Sou|cutter has quit [Ping timeout: 276 seconds]
nemesit|znc has joined #ruby
Sou|cutter has joined #ruby
Caelum has joined #ruby
hogeo has quit [Remote host closed the connection]
kevinykchan has joined #ruby
hogeo has joined #ruby
rickruby_ has joined #ruby
autumn has joined #ruby
Opettaja has joined #ruby
Opettaja has quit [Client Quit]
thesheff17 has quit [Ping timeout: 276 seconds]
Tarential has quit [Ping timeout: 276 seconds]
SeanTAllen has quit [Ping timeout: 276 seconds]
Naeblis has quit [Ping timeout: 276 seconds]
wallerdev has quit [Ping timeout: 276 seconds]
rickruby has quit [Ping timeout: 276 seconds]
Tarential has joined #ruby
ia___ has joined #ruby
hogeo has quit [Ping timeout: 252 seconds]
Guedes0 has joined #ruby
coderhut has joined #ruby
hogeo has joined #ruby
suprbly has joined #ruby
Jackneill has joined #ruby
bjeanes has joined #ruby
ping-pong has joined #ruby
thesheff17 has joined #ruby
Hanmac has joined #ruby
ananthakumaran has joined #ruby
Guga_ has quit [Quit: ~]
Eaven has quit [Remote host closed the connection]
zeade has joined #ruby
DefV has joined #ruby
_veer has joined #ruby
_veer has quit [Changing host]
_veer has joined #ruby
zeade has quit [Client Quit]
brianherman has joined #ruby
coreinfo99 has quit [Read error: Connection reset by peer]
coreinfo99 has joined #ruby
hogeo_ has joined #ruby
Yulli has joined #ruby
hogeo has quit [Ping timeout: 245 seconds]
InFlames has quit [Quit: This computer has gone to sleep]
arya has quit [Ping timeout: 260 seconds]
freerobby1 has quit [Quit: Leaving.]
coderhut has quit [Quit: Page closed]
<Yulli> Is there any analogue to Mechanize that supports JS?
harrymoreno has quit [Ping timeout: 252 seconds]
harrymoreno_ has joined #ruby
bionhart_ has quit [Remote host closed the connection]
diadara has quit [Ping timeout: 248 seconds]
arya has joined #ruby
mahmoudimus has joined #ruby
Kabaka has quit [Ping timeout: 240 seconds]
Leighton has joined #ruby
devoldmx has joined #ruby
timkohru_ has quit [Remote host closed the connection]
kevinykchan has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
Kabaka has joined #ruby
voidpirate has joined #ruby
kevinykchan has joined #ruby
ivanoats has joined #ruby
nari has joined #ruby
kiri has quit [Read error: Operation timed out]
niklasb_ has joined #ruby
kiri has joined #ruby
ntus1017 has joined #ruby
niklasb has quit [Ping timeout: 256 seconds]
stoic_squirrel has joined #ruby
chrishough has joined #ruby
Kabaka has quit [Ping timeout: 245 seconds]
freeayu has quit [Read error: Connection reset by peer]
igaiga has joined #ruby
yacks has quit [Ping timeout: 245 seconds]
igaiga has quit [Ping timeout: 276 seconds]
macmartine has joined #ruby
arya has quit [Ping timeout: 256 seconds]
infecto has quit [Ping timeout: 246 seconds]
hogeo has joined #ruby
hogeo has quit [Remote host closed the connection]
hogeo has joined #ruby
Kabaka has joined #ruby
hogeo has quit [Read error: Connection reset by peer]
freerobby has joined #ruby
hogeo has joined #ruby
hogeo_ has quit [Ping timeout: 256 seconds]
arya has joined #ruby
jimg has joined #ruby
areil has joined #ruby
Inside_ has joined #ruby
jurbat has quit [Quit: Computer has gone to sleep.]
suprbly has quit [Quit: leaving]
ihme-TTilus has quit [Ping timeout: 248 seconds]
freeayu has joined #ruby
ElderFain has quit [Quit: ElderFain]
jasonkuhrt has joined #ruby
jimg has quit [Ping timeout: 264 seconds]
Inside has quit [Ping timeout: 248 seconds]
freerobby has quit [Ping timeout: 264 seconds]
jasonkuhrt has quit [Ping timeout: 256 seconds]
wallerdev has joined #ruby
freakazoid0223 has quit [Ping timeout: 248 seconds]
lyanchih has quit [Quit: lyanchih]
_ffio_ has quit [Ping timeout: 240 seconds]
arya has quit [Ping timeout: 256 seconds]
pitzips has quit [Read error: Connection reset by peer]
matematikaadit has joined #ruby
rburton- has joined #ruby
arya has joined #ruby
takeru has joined #ruby
fridim_ has quit [Read error: Operation timed out]
ttt has joined #ruby
rburton- has quit [Quit: Linkinus - http://linkinus.com]
pcarrier_ has quit [Quit: Computer has gone to sleep.]
takeru has quit [Ping timeout: 248 seconds]
thomaslee has quit [Read error: Connection timed out]
ttt has quit [Remote host closed the connection]
krisfremen has quit [Read error: Connection reset by peer]
ttt has joined #ruby
thomaslee has joined #ruby
noop_ has joined #ruby
_ffio_ has joined #ruby
Cultofmetatron has quit [Remote host closed the connection]
diadara has joined #ruby
ivanoats has quit [Remote host closed the connection]
krisfremen has joined #ruby
krisfremen has quit [Changing host]
krisfremen has joined #ruby
Liothen has joined #ruby
Liothen has joined #ruby
Liothen has quit [Changing host]
ttt has quit [Ping timeout: 276 seconds]
hogeo has quit [Ping timeout: 240 seconds]
timkohrumel has joined #ruby
hogeo has joined #ruby
nari has quit [Ping timeout: 256 seconds]
tomsthumb has quit [Quit: Leaving.]
diadara has quit [Ping timeout: 264 seconds]
arya has quit [Ping timeout: 245 seconds]
yacks has joined #ruby
havenwood has joined #ruby
tomzx_mac has quit [Read error: Operation timed out]
voidpirate has quit [Remote host closed the connection]
arya has joined #ruby
pcarrier_ has joined #ruby
infecto has joined #ruby
diadara has joined #ruby
arya has quit [Ping timeout: 252 seconds]
thomaslee has quit [Remote host closed the connection]
arya has joined #ruby
bradhe has joined #ruby
arya has quit [Ping timeout: 240 seconds]
matematikaadit has quit [Quit: used jmIrc]
cj3kim has quit [Remote host closed the connection]
atno has quit [Ping timeout: 260 seconds]
adkron has joined #ruby
macmartine has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
freerobby has joined #ruby
cj3kim has joined #ruby
arya has joined #ruby
adkron has quit [Ping timeout: 240 seconds]
Mon_Ouie has joined #ruby
Mon_Ouie has joined #ruby
adkron has joined #ruby
freerobby has quit [Ping timeout: 248 seconds]
dnyy has joined #ruby
dik_dak has joined #ruby
baroquebobcat has quit [Quit: baroquebobcat]
nari has joined #ruby
hogeo has quit [Read error: Connection reset by peer]
hogeo_ has joined #ruby
dik_dak has quit [Client Quit]
jeffean has joined #ruby
persand has joined #ruby
adkron_ has joined #ruby
adkron has quit [Ping timeout: 240 seconds]
chxane has quit [Quit: Leaving]
Naeblis has joined #ruby
Spami has joined #ruby
Spami has quit [Changing host]
Spami has joined #ruby
timkohrumel has quit [Remote host closed the connection]
arya has quit [Ping timeout: 276 seconds]
persand has quit [Client Quit]
SeanTAllen has joined #ruby
adkron_ has quit [Ping timeout: 264 seconds]
Spami has quit [Client Quit]
adkron has joined #ruby
Spami has joined #ruby
Spami has quit [Changing host]
Spami has joined #ruby
ryan_turner is now known as ryan_turner_
lyanchih has joined #ruby
cofin_ has quit [Quit: cofin_]
Spami has quit [Client Quit]
Cultofmetatron has joined #ruby
ryan_turner_ is now known as ryan_turner
rippa has joined #ruby
lewix has joined #ruby
arya has joined #ruby
teclator has quit [Ping timeout: 264 seconds]
arya has quit [Ping timeout: 248 seconds]
infecto has quit [Quit: Leaving.]
bionhart has joined #ruby
freerobby has joined #ruby
bionhart has quit [Remote host closed the connection]
diadara has quit [Ping timeout: 264 seconds]
nari has quit [Ping timeout: 248 seconds]
grzywacz has joined #ruby
arya has joined #ruby
jimg has joined #ruby
txdv has quit [Remote host closed the connection]
hogeo_ has quit [Read error: Connection reset by peer]
freerobby has quit [Ping timeout: 256 seconds]
ttt has joined #ruby
ttt has quit [Remote host closed the connection]
ayaz has joined #ruby
sgkim126l has quit [Ping timeout: 240 seconds]
ttt has joined #ruby
arya_ has joined #ruby
txdv has joined #ruby
arya has quit [Ping timeout: 248 seconds]
sgkim126l has joined #ruby
jimg has quit [Ping timeout: 252 seconds]
Vivekananda has quit [Remote host closed the connection]
DomKM has quit [Quit: Leaving.]
ttt_ has joined #ruby
ttt_ has quit [Remote host closed the connection]
Heero has joined #ruby
Heero has quit [Changing host]
Heero has joined #ruby
aetaric has quit [Ping timeout: 240 seconds]
ttt has quit [Ping timeout: 276 seconds]
stoic_squirrel has quit [Quit: Textual IRC Client: www.textualapp.com]
BSaboia has joined #ruby
echevemaster has quit [Quit: Leaving]
matematikaadit has joined #ruby
matematikaadit has quit [Client Quit]
slash_nick has joined #ruby
aetaric has joined #ruby
slash_nick has quit [Ping timeout: 246 seconds]
Inside_ has quit [Ping timeout: 248 seconds]
generalissimo has quit [Remote host closed the connection]
BSaboia has quit [Ping timeout: 245 seconds]
whowantstolivefo has quit [Ping timeout: 256 seconds]
arya_ has quit [Ping timeout: 248 seconds]
Bry8Star{T2 has joined #ruby
eldariof has joined #ruby
igaiga has joined #ruby
grzywacz has quit [Ping timeout: 276 seconds]
vlad_starkov has quit [Ping timeout: 260 seconds]
Psy-Q_ is now known as Psy-Q
igaiga has quit [Remote host closed the connection]
arya has joined #ruby
Zolo has joined #ruby
Zolo has quit [Remote host closed the connection]
Nahra_ has joined #ruby
Nahra_ has quit [Client Quit]
adkron has quit [Ping timeout: 245 seconds]
adkron has joined #ruby
bionhart has joined #ruby
takezawa has joined #ruby
noop_ has quit [Ping timeout: 256 seconds]
<bnagy> Yulli: check celerity or capybara with poltergeist as a driver
<Yulli> bnagy: Thanks. I'll look into it.
bionhart has quit [Remote host closed the connection]
bothra has quit [Read error: Operation timed out]
sideshowcoder has quit [Read error: Operation timed out]
infecto has joined #ruby
rickruby_ has quit [Remote host closed the connection]
harrymoreno has joined #ruby
sideshowcoder has joined #ruby
dr0p has joined #ruby
Hanmac has quit [Read error: Operation timed out]
harrymoreno_ has quit [Ping timeout: 245 seconds]
diadara has joined #ruby
pcarrier_ has quit [Quit: Computer has gone to sleep.]
nari has joined #ruby
adkron_ has joined #ruby
xxi has quit [Read error: Operation timed out]
lessless has joined #ruby
ixx has joined #ruby
<lessless> do I always need to join threads?
ixx is now known as Guest86166
adkron has quit [Ping timeout: 245 seconds]
ia___ has quit [Quit: ia___]
vlad_starkov has joined #ruby
whitedawg has joined #ruby
jnoob22 has joined #ruby
tvw has joined #ruby
Zolo has joined #ruby
harrymoreno has quit [Ping timeout: 256 seconds]
<bnagy> no
freerobby has joined #ruby
harrymoreno has joined #ruby
BizarreCake has joined #ruby
jimg has joined #ruby
arya_ has joined #ruby
freerobby has quit [Ping timeout: 248 seconds]
arya has quit [Ping timeout: 248 seconds]
diadara has quit [Ping timeout: 240 seconds]
arya_ has quit [Ping timeout: 248 seconds]
jimg has quit [Ping timeout: 256 seconds]
diadara has joined #ruby
swex has quit [Ping timeout: 256 seconds]
crodas has joined #ruby
AgentWillyWonka has joined #ruby
adkron has joined #ruby
bothra has joined #ruby
ayaz has quit [Read error: Connection reset by peer]
ayaz has joined #ruby
adkron_ has quit [Ping timeout: 240 seconds]
brianherman has quit [Read error: Connection reset by peer]
arya has joined #ruby
Z_Mass has quit [Ping timeout: 252 seconds]
johnkary has joined #ruby
rippa has quit [Ping timeout: 240 seconds]
nari has quit [Ping timeout: 245 seconds]
DonRichie has joined #ruby
bhaak_ is now known as bhaak
rippa has joined #ruby
swex has joined #ruby
hex20dec has left #ruby [#ruby]
v0n has quit [Ping timeout: 252 seconds]
brendal has joined #ruby
yashshah has quit [Read error: Connection reset by peer]
yashshah has joined #ruby
yshh has quit [Remote host closed the connection]
toekutr has joined #ruby
nari has joined #ruby
whitedawg has quit [Quit: Leaving.]
rippa has quit [Ping timeout: 240 seconds]
adkron_ has joined #ruby
bradhe has quit [Remote host closed the connection]
freerobby has joined #ruby
arya has quit [Ping timeout: 246 seconds]
adkron has quit [Ping timeout: 256 seconds]
wallerdev has quit [Quit: wallerdev]
arya has joined #ruby
ttt has joined #ruby
adkron has joined #ruby
tms has quit [Quit: Konversation terminated!]
freerobby has quit [Ping timeout: 252 seconds]
dfdf has joined #ruby
Zespre has quit [Ping timeout: 246 seconds]
Zespre has joined #ruby
nari has quit [Ping timeout: 256 seconds]
adkron_ has quit [Ping timeout: 248 seconds]
ybart has joined #ruby
charliesome has joined #ruby
Neomex has joined #ruby
Neomex has quit [Client Quit]
marr has joined #ruby
adkron_ has joined #ruby
jasonkuhrt has joined #ruby
dr0p has quit [Ping timeout: 246 seconds]
icole_ has joined #ruby
Zespre_ has joined #ruby
AgentWillyWonka has quit [Quit: Linkinus - http://linkinus.com]
adkron has quit [Ping timeout: 276 seconds]
dash_ has joined #ruby
Zespre has quit [Ping timeout: 276 seconds]
icole has quit [Ping timeout: 264 seconds]
arya has quit [Ping timeout: 240 seconds]
ttt has quit [Remote host closed the connection]
Neomex has joined #ruby
ntus1017 has quit [Remote host closed the connection]
jasonkuhrt has quit [Ping timeout: 245 seconds]
arya has joined #ruby
adkron has joined #ruby
Zespre_ has quit [Ping timeout: 240 seconds]
icole_ has quit [Remote host closed the connection]
jimg has joined #ruby
Zespre has joined #ruby
arya_ has joined #ruby
adkron_ has quit [Ping timeout: 276 seconds]
vlad_starkov has quit [Ping timeout: 245 seconds]
arya has quit [Ping timeout: 256 seconds]
Iszak_ has joined #ruby
cj3kim has quit [Remote host closed the connection]
<lessless> Guys, as I can't find answer @ #RoR, I'll ask it here: Is it possible to start thread in observer and kill it in the model instance method?
AndChat| has quit [Ping timeout: 260 seconds]
arya_ has quit [Ping timeout: 248 seconds]
ananthakumaran has quit [Ping timeout: 260 seconds]
adkron has quit [Ping timeout: 245 seconds]
io_syl has quit [Quit: Computer has gone to sleep.]
Banistergalaxy has joined #ruby
infecto has quit [Quit: Leaving.]
AlbireoX has quit [Remote host closed the connection]
m8 has joined #ruby
sr78ger has joined #ruby
lkba has quit [Ping timeout: 241 seconds]
adkron has joined #ruby
arya has joined #ruby
lkba has joined #ruby
hamed_r has joined #ruby
ananthakumaran has joined #ruby
ananthakumaran has quit [Max SendQ exceeded]
ananthakumaran has joined #ruby
arya_ has joined #ruby
Heero has quit [Ping timeout: 256 seconds]
arya has quit [Ping timeout: 248 seconds]
Heero has joined #ruby
Heero has quit [Changing host]
Heero has joined #ruby
adkron_ has joined #ruby
Banistergalaxy has quit [Ping timeout: 260 seconds]
dr0p has joined #ruby
Banistergalaxy has joined #ruby
adkron has quit [Ping timeout: 276 seconds]
Godd2 has joined #ruby
Hanmac has joined #ruby
<Godd2> I was reading "Programming Ruby" available on ruby-doc and I was a bit confused when he was talking about creating your own ranges
sr78ger has quit [Quit: Qui]
<Godd2> he said you have to define a succ method and a <=> method first
adkron has joined #ruby
<Godd2> but when you make a class, doesn't it automatically have <=> available to it from the Object class?
kobain has quit [Quit: l'unica verità.. è la morte stessa!]
<Godd2> In his example he goes on to define the <=> method for the class in his example, but isn't it already defined?
workmad3 has joined #ruby
adkron_ has quit [Ping timeout: 260 seconds]
<Godd2> My only explanation was that he was just showing it as a trivial example, and that you don't "have" to define it, but I wasn't sure if that was true or not.
lkba has quit [Ping timeout: 260 seconds]
dallasm has joined #ruby
Zolo has quit [Remote host closed the connection]
dallasm has quit [Client Quit]
ntus1017 has joined #ruby
adkron_ has joined #ruby
workmad3 has quit [Ping timeout: 260 seconds]
<brendal> Godd2: that depends on what class it is
choobie has quit [Ping timeout: 248 seconds]
lyanchih has quit [Quit: lyanchih]
<brendal> Godd2: link?
Kar- has joined #ruby
adkron has quit [Ping timeout: 245 seconds]
adkron has joined #ruby
Chepra has joined #ruby
<Chepra> Hey
adkron_ has quit [Ping timeout: 260 seconds]
<Chepra> Can I run a piece of code on a mini::test after something failed?
johnkary has quit [Quit: @johnkary]
<Chepra> I am using selenium and want to take a screenshot when an error happens
<Godd2> If you ctrl+F "class VU" its in that example
araujo has joined #ruby
araujo has joined #ruby
harrymoreno_ has joined #ruby
harrymoreno has quit [Ping timeout: 245 seconds]
harrymoreno_ is now known as harrymoreno
m8 has quit [Quit: Sto andando via]
adkron_ has joined #ruby
Vadelius has joined #ruby
adkron has quit [Ping timeout: 264 seconds]
dfdf is now known as bugg
choobie has joined #ruby
vlad_starkov has joined #ruby
arya has joined #ruby
vlad_starkov has quit [Read error: Connection reset by peer]
vlad_starkov has joined #ruby
spider-mario has joined #ruby
freerobby has joined #ruby
Eaven has joined #ruby
arya_ has quit [Ping timeout: 248 seconds]
workmad3 has joined #ruby
freerobby has quit [Ping timeout: 248 seconds]
keppy has joined #ruby
Cultofmetatron has quit [Remote host closed the connection]
arya_ has joined #ruby
osvico has quit [Ping timeout: 264 seconds]
osvico has joined #ruby
timkohrumel has joined #ruby
jasonkuhrt has joined #ruby
arya has quit [Ping timeout: 248 seconds]
jimg has quit [Remote host closed the connection]
bradhe has joined #ruby
arya_ has quit [Ping timeout: 248 seconds]
eldariof has quit [Ping timeout: 245 seconds]
jasonkuhrt has quit [Ping timeout: 245 seconds]
takeru has joined #ruby
marr has quit [Ping timeout: 252 seconds]
bradhe has quit [Ping timeout: 245 seconds]
workmad3 has quit [Ping timeout: 240 seconds]
gasbakid has joined #ruby
phipes has quit [Quit: phipes]
beiter has joined #ruby
stonevil has joined #ruby
takezawa has quit [Remote host closed the connection]
Spami has joined #ruby
Spami has joined #ruby
adkron has joined #ruby
harrymoreno has quit [Quit: harrymoreno]
justsee has joined #ruby
justsee has joined #ruby
justsee has quit [Changing host]
Spami has quit [Client Quit]
adkron_ has quit [Ping timeout: 276 seconds]
AgentWillyWonka has joined #ruby
freeayu has quit [Read error: Connection reset by peer]
dr0p has quit [Ping timeout: 252 seconds]
arya has joined #ruby
osvico has quit [Ping timeout: 240 seconds]
wereHamster has quit [Changing host]
wereHamster has joined #ruby
adkron_ has joined #ruby
razi has joined #ruby
joesavage has joined #ruby
freerobby has joined #ruby
Neomex has quit [Quit: Neomex]
cj3kim has joined #ruby
Neomex has joined #ruby
takeru has quit [Remote host closed the connection]
workmad3 has joined #ruby
keppy has quit [Ping timeout: 245 seconds]
<lewix> Chepra: do you have a mac?
<Chepra> yes
<lewix> crt shift 4
<lewix> cmd shift 4
<Chepra> haha! :D
<joesavage> How can I get "defined?" to check an "eval" call properly to see if an eval'd variable exists without just returning "method"? For example: http://pastebin.com/YjVDiihu
adkron has quit [Ping timeout: 276 seconds]
<lewix> ok im heading to bed
<lewix> it 2:30
freeayu has joined #ruby
freerobby has quit [Ping timeout: 256 seconds]
cj3kim has quit [Ping timeout: 245 seconds]
<Hanmac> joesavage: no you cant and you try to avoid eval as far as you can
<joesavage> Hanmac: Is there really no way to at least do something similar? And I know 'eval' is very bad practice, but for this very specific situation it's actually saving a whole lot of work.
chrishough has quit [Quit: chrishough]
jimg has joined #ruby
<Hanmac> >> abilities = {}; abilities["grandmaster"] = "Some Text"; ability = "grandmaster"; abilities[ability]
<eval-in_> Hanmac => "Some Text" (http://eval.in/32458)
mikewintermute has joined #ruby
<joesavage> Hanmac: Using a hash in this situation would create so much more work than it solves
mikewintermute has quit [Client Quit]
agjacome has joined #ruby
<Hanmac> joesavage: if you wanted to use eval for this than ruby is not your language for that
[rust] has joined #ruby
<joesavage> Hanmac: I know that using a hash is about a billion times better in terms of code, it's just that this specific situation as part of a bigger partially pre-created system wouldn't really fit with it
<Vadelius> out of cuiriosity, most people use rubymine, or?
<Hanmac> Vadelius: the bugtracker or the ide ?
<Vadelius> ide sorry
<Godd2> rubymine, vim, textmate I think are the most used ones.
<Hanmac> joesavage: you need to understand that defined? does not work that way as you think
<Hanmac> Godd2: i use gedit and eclipse
<joesavage> Hanmac: Out of interest, why doesn't it work as I'm expecting it to? Is it just not possible to accomplish what I'm trying via 'eval'?
<Vadelius> Ok was just curious, i prev, used eclipse (java) and rubymine is looking pretty nifty
<Godd2> joesavage: think about what eval returns
kidoz has quit [Quit: Ухожу я от вас]
Xeago has joined #ruby
arietis has joined #ruby
bjeanes has quit [Ping timeout: 276 seconds]
<Hanmac> joesavage: because defined? works on parser level not on code one
Vadelius has quit [Quit: - nbs-irc 2.39 - www.nbs-irc.net -]
ToApolytoXaos has joined #ruby
bjeanes has joined #ruby
<Godd2> that conditional will always run, if I'm not mistaken
dhruvasagar has quit [Ping timeout: 240 seconds]
obs has joined #ruby
<Godd2> your eval will return "method" even if grandmaster_ability isn't set
<Hanmac> joesavage: because the part in defined?(...) is never executed
<Hanmac> >> defined?(haha + this + works)
<eval-in_> Hanmac => nil (http://eval.in/32459)
bamdad has joined #ruby
daniel_- has joined #ruby
<Hanmac> joesavage: use: local_variables.any? {|s| s.to_s == ability + "_ability" } # but imo you cant trust this, thats why you shoud use array or hash when you have multible similar variables
<Godd2> joesavage: there are ways to see if a variable exists. Or rather, what is it you're trying to do?
<joesavage> Godd2: Checking if a variable exists is exactly what I'm trying to exist
mityaz has joined #ruby
arya has quit [Ping timeout: 248 seconds]
<joesavage> Hanmac: Huh, that's interesting. Maybe I can use that to load local variables into a hash or something?
<joesavage> Godd2: trying to do*
<Godd2> I knew what you meant ;)
<Hanmac> just throw your idea away and rethink about why you need this tons of local variables
yshh has joined #ruby
ananthakumaran has quit [Ping timeout: 245 seconds]
lkba has joined #ruby
<joesavage> Hanmac: Pretty much it's the way this static site generation system is set up
<Hanmac> thats smells like that you use rails but does not know ruby enough to use it correct ...
toekutr has quit [Remote host closed the connection]
<joesavage> Hanmac: I'm using Frank: https://github.com/blahed/frank/ -- Pretty much the variables in the model files go straight to local variables usable in the views
UnnamedUser has joined #ruby
<Godd2> Im curious as to why you can't just create an enum and iterate over the possible variable names...? Or do you not know what the names are ahead of time?
obs has quit [Remote host closed the connection]
ananthakumaran has joined #ruby
<joesavage> Godd2: I probably could, but I have this nice little concise piece of code to repeat a certain HTML snippet in the view for a number of variation off a base variable name -- for example one_ability, one_cooldown, one_range, two_ability, two_cooldown, etc.
<joesavage> However some of those things -- for example one_cooldown -- may not exist
<UnnamedUser> hi im new to rails and i get problem every step during installation but the most unreasonable one is that http://sdrv.ms/12VD1Wu
<UnnamedUser> any ideas ?
<UnnamedUser> i just try to rails generate
<UnnamedUser> i got that error http://sdrv.ms/12VD1Wu
freerobby has joined #ruby
<UnnamedUser> i need help
<joesavage> Hanmac: In an ideal world I'd re-write Frank just a little to store all model variables in a hash, but that seems very scary to a Ruby beginner like me right now. Not to mention it'd probably break things.
<UnnamedUser> can anybody tell me whats that error ? http://sdrv.ms/12VD1Wu
elliptical has joined #ruby
vlad_starkov has quit [Remote host closed the connection]
vlad_starkov has joined #ruby
UnnamedUser has quit [Quit: UnnamedUser]
adkron has joined #ruby
elliptical is now known as ellipse
freerobby has quit [Ping timeout: 252 seconds]
balr0g_ has quit [Quit: Connection closed for inactivity]
boxmein has joined #ruby
adkron_ has quit [Ping timeout: 246 seconds]
yacks has quit [Ping timeout: 256 seconds]
UnnamedUser has joined #ruby
tvw has quit [Read error: Connection reset by peer]
<UnnamedUser> plz i need to know whats is this error i just typed Rails Generate controller home index http://sdrv.ms/12VD1Wu
vlad_starkov has quit [Ping timeout: 245 seconds]
adkron_ has joined #ruby
<Godd2> you need to get the linguistics gem, but that bit of code will cycle through one_ability, one_cooldown, one_range, two_ability, two_cooldown, two_range, three_ability, ...
yshh has quit [Remote host closed the connection]
ferdev has quit [Quit: ferdev]
<joesavage> Godd2: But then what if "one_cooldown" doesn't exist? This is the heart of my issue, not all abilities have a cooldown
adkron has quit [Ping timeout: 245 seconds]
<Godd2> that's when you can use the defined? method
<Godd2> it will return nil if the variable you're asking about hasn't been defined
<Godd2> Ill modify my code so you can see
<joesavage> Godd2: I may be incorrect as a beginner reading your code, but it seems like your code would just output "one_ability" rather than the contents of the variable "one_ability"
[rust] has quit [Quit: Leaving]
UnnamedUser has quit [Ping timeout: 256 seconds]
arya has joined #ruby
<Godd2> are these local variables or instance variables?
<joesavage> Local
<Godd2> and you would be correct that my code simply spits out the strings
darkapex has quit [Ping timeout: 240 seconds]
<joesavage> I already have a loop similar to yours, however instead I simply "eval" the string you're creating and then try and see if it exists with "defined?", which is the problem I'm having
Senjai has quit [Quit: "BYE"]
daniel_- has quit [Read error: Operation timed out]
obs has joined #ruby
darkapex has joined #ruby
takezawa has joined #ruby
monkegjinni has joined #ruby
arya has quit [Ping timeout: 260 seconds]
UnnamedUser has joined #ruby
<UnnamedUser> hi
<UnnamedUser> im newbi ruby on rails
<joesavage> Godd2: So I think my original problem still applies to your snippet, as using "defined?" upon eval'ing the string wouldn't work
<UnnamedUser> i started learning couple of days ago
<UnnamedUser> i stated to hate it
<UnnamedUser> im facing problems every step
<Godd2> joesavage: thats correct. Im furiously googling to see other options though
darkapex has quit [Ping timeout: 252 seconds]
nfk has joined #ruby
nfk has joined #ruby
nfk has quit [Changing host]
<joesavage> Godd2: Hah, ok, thanks for all the help so far - hopefully we can come up with something that works
<UnnamedUser> when i came to rails generate controller home index i got this error
darkapex has joined #ruby
<UnnamedUser> plz take a loot and tell me what is that fucken error http://sdrv.ms/12VD1Wu
yshh has joined #ruby
<UnnamedUser> im getting pissed off really
arya has joined #ruby
Michael has joined #ruby
<UnnamedUser> can anybody tell me whats this error ?
<Hanmac> UnnamedUser: #rubyonrails
Michael is now known as Guest25694
machuga|away has quit [Excess Flood]
machuga has joined #ruby
<Godd2> joesavage: Do you know how ||= works?
<joesavage> Godd2: I do not -- In my searches for solutions I ran across it, but discarded it after it wasn't working as I expected
ntus1017 has quit [Remote host closed the connection]
UnnamedUser has left #ruby [#ruby]
machuga has quit [Excess Flood]
machuga has joined #ruby
ananthakumaran has quit [Ping timeout: 264 seconds]
<Godd2> joesavage: I think you should write a quick class
<Godd2> that way you can use instance_variable_set and instance_variable_get with strings as arguments to check definedness
viszu has joined #ruby
justsee has quit [Ping timeout: 256 seconds]
<joesavage> Godd2: Hmm, that sounds interesting however I'm not quite sure how I'd put the local variables into this -- would you be able to write up a quick example for me?
<Godd2> can you pm me? I have a few questions and I dont want to congest the room
<Godd2> I don't know how to pm people in this webchat client
kiri has quit [Ping timeout: 260 seconds]
<joesavage> :D Ok
freerobby has joined #ruby
kiri has joined #ruby
Neomex has quit [Quit: Neomex]
beiter has quit [Ping timeout: 246 seconds]
arya_ has joined #ruby
ericmathison has joined #ruby
yshh has quit [Remote host closed the connection]
kofno has joined #ruby
gstudent2 is now known as germanstudent
darkapex has quit [Ping timeout: 260 seconds]
Guest25694 has quit [Remote host closed the connection]
vlad_starkov has joined #ruby
vlad_starkov has quit [Read error: Connection reset by peer]
arya has quit [Ping timeout: 264 seconds]
freerobby has quit [Ping timeout: 256 seconds]
arya has joined #ruby
vlad_starkov has joined #ruby
end_guy has quit [Ping timeout: 240 seconds]
Sirupsen has quit [Quit: Connection closed for inactivity]
AgentWillyWonka has quit [Quit: Linkinus - http://linkinus.com]
arya_ has quit [Ping timeout: 256 seconds]
end_guy has joined #ruby
monkegjinni has quit [Remote host closed the connection]
eploko has joined #ruby
zommi has joined #ruby
boxmein_ has joined #ruby
boxmein_ has quit [Max SendQ exceeded]
boxmein_ has joined #ruby
boxmein_ has quit [Max SendQ exceeded]
boxmein_ has joined #ruby
boxmein_ has quit [Max SendQ exceeded]
timkohrumel has quit [Remote host closed the connection]
workmad3 has quit [Ping timeout: 264 seconds]
dr0p has joined #ruby
boxmein_ has joined #ruby
zommi has quit [Remote host closed the connection]
arya_ has joined #ruby
arya has quit [Ping timeout: 248 seconds]
boxmein_ has quit [Client Quit]
boxmein has quit [Ping timeout: 252 seconds]
AgentWillyWonka has joined #ruby
apeiros_ has joined #ruby
DonRichie has quit [Quit: Verlassend]
bugg has quit [Remote host closed the connection]
monkegjinni has joined #ruby
danslo has joined #ruby
darkapex has joined #ruby
kirun has joined #ruby
vlad_starkov has quit [Remote host closed the connection]
apeiros has quit [Ping timeout: 264 seconds]
beiter has joined #ruby
davetherat has quit [Remote host closed the connection]
davetherat has joined #ruby
arya_ has quit [Ping timeout: 248 seconds]
darkapex has quit [Ping timeout: 240 seconds]
evenix has joined #ruby
arya has joined #ruby
vlad_starkov has joined #ruby
fridim has joined #ruby
foohey has joined #ruby
radd has joined #ruby
yacks has joined #ruby
Trynemjoel has quit [Ping timeout: 245 seconds]
jcromartie has joined #ruby
stonevil has quit [Remote host closed the connection]
mklappstuhl has joined #ruby
stonevil has joined #ruby
freerobby has joined #ruby
niklasb_ is now known as niklasb
darkapex has joined #ruby
darkapex has joined #ruby
darkapex has quit [Changing host]
Trynemjoel has joined #ruby
ntus1017 has joined #ruby
jacobbednarz has joined #ruby
stonevil has quit [Ping timeout: 252 seconds]
braoru has joined #ruby
timonv has joined #ruby
mklappstuhl has quit [Remote host closed the connection]
freerobby has quit [Ping timeout: 276 seconds]
darkapex has quit [Ping timeout: 260 seconds]
darkapex has joined #ruby
ananthakumaran has joined #ruby
jimg has quit [Remote host closed the connection]
beiter has left #ruby [#ruby]
workmad3 has joined #ruby
Chepra has left #ruby ["Leaving"]
robustus has quit [Ping timeout: 248 seconds]
darkapex has quit [Ping timeout: 260 seconds]
darkapex has joined #ruby
robustus has joined #ruby
mklappstuhl has joined #ruby
bugg has joined #ruby
takeru has joined #ruby
m8 has joined #ruby
darkapex has quit [Ping timeout: 240 seconds]
calmyournerves_ is now known as calmyournerves
tk_ has joined #ruby
jbpros has joined #ruby
darkapex has joined #ruby
ferdev has joined #ruby
darkapex has quit [Ping timeout: 260 seconds]
senayar has joined #ruby
justsee has joined #ruby
justsee has joined #ruby
justsee has quit [Changing host]
monkegjinni has quit [Remote host closed the connection]
jokke has joined #ruby
obs has quit [Quit: Saliendo]
Ortuna has joined #ruby
northelks has quit [Read error: Connection reset by peer]
northelks has joined #ruby
freerobby has joined #ruby
arietis has quit [Quit: Textual IRC Client: http://www.textualapp.com/]
workmad3 has quit [Ping timeout: 245 seconds]
naquad has quit [Quit: ZNC - http://znc.in]
slainer68 has joined #ruby
naquad has joined #ruby
ayaz has quit [Quit: ayaz]
F1skr has joined #ruby
takeru has quit [Remote host closed the connection]
radd has quit [Ping timeout: 240 seconds]
freerobby has quit [Ping timeout: 252 seconds]
machuga is now known as machuga|away
tk__ has joined #ruby
tk_ has quit [Ping timeout: 245 seconds]
jimg has joined #ruby
jacobbednarz has quit [Quit: Computer has gone to sleep.]
Banistergalaxy has quit [Ping timeout: 245 seconds]
workmad3 has joined #ruby
Banistergalaxy has joined #ruby
mixel has joined #ruby
yshh has joined #ruby
radd has joined #ruby
Michael__ has joined #ruby
Proshot has joined #ruby
yacks has quit [Quit: Leaving]
dagnachew has joined #ruby
arya has quit [Ping timeout: 248 seconds]
jbpros has quit [Quit: jbpros]
darkapex has joined #ruby
darkapex has quit [Changing host]
darkapex has joined #ruby
yshh has quit [Read error: No route to host]
yshh_ has joined #ruby
jimg has quit [Ping timeout: 245 seconds]
arya_ has joined #ruby
Michael__ has quit [Ping timeout: 260 seconds]
fridim has quit [Quit: Leaving]
aspiers has joined #ruby
ferdev has quit [Quit: ferdev]
timkohrumel has joined #ruby
ferdev has joined #ruby
daniel_- has joined #ruby
tk__ has quit [Quit: ばいばい]
yshh_ has quit [Ping timeout: 246 seconds]
<aspiers> how can I make optparse.OptionParser#help output a footer underneath the options?
sambao21 has joined #ruby
timkohrumel has quit [Ping timeout: 248 seconds]
<aspiers> (other than overriding #help for the instance)
igaiga has joined #ruby
monkegjinni has joined #ruby
dagnachew has quit [Read error: Connection reset by peer]
dagnachew has joined #ruby
alem0lars has joined #ruby
arya_ has quit [Ping timeout: 256 seconds]
decoponio has quit [Quit: Leaving...]
<Godd2> If you want to change the behavior of a method, either catch its output and modify it after the fact, or override it
arya has joined #ruby
<bnagy> aspiers: nobody really uses option parser, afaik
<bnagy> I use trollop, there are other good gems as well
igaiga has quit [Remote host closed the connection]
igaiga has joined #ruby
<aspiers> bnagy: :( ok thanks. that sucks that the native library is not popular
freerobby has joined #ruby
daniel_- has quit [Ping timeout: 248 seconds]
mityaz has quit [Quit: See ya!]
<lessless> is there a way to get number of running threads in current app?
<Godd2> Thread.list ?
ferdev has quit [Quit: ferdev]
<Godd2> Thread.list.length I would guess
freerobby has quit [Ping timeout: 260 seconds]
gyre007 has joined #ruby
mklappstuhl has quit [Remote host closed the connection]
arya has quit [Ping timeout: 256 seconds]
jasonkuhrt has joined #ruby
obs has joined #ruby
<lessless> thanx
rangle has joined #ruby
ferdev has joined #ruby
Mattix has quit [Ping timeout: 240 seconds]
dagnachew has quit [Quit: Leaving]
jasonkuhrt has quit [Ping timeout: 248 seconds]
arya has joined #ruby
jimg has joined #ruby
boxmein has joined #ruby
takeru has joined #ruby
jokke has quit [Ping timeout: 260 seconds]
iamjarvo has joined #ruby
jimg has quit [Ping timeout: 260 seconds]
<bnagy> I cannot see how that code would work
<lessless> bnagy, why?
Guga_ has joined #ruby
<bnagy> whatever.join should just Not Work
<bnagy> because I don't see how you would get anything that responds to join from that ObjectSpace line
<lessless> each_object - Calls the block once for each living, nonimmediate object in this Ruby process. It should return a Thread object
<bnagy> uh, no
<lessless> what was created at line 39
<bnagy> why would it return a Thread?
jonathanwallace has quit [Ping timeout: 245 seconds]
<bnagy> each_object just iterates over each, like, object
LennyLinux has joined #ruby
Spooner has joined #ruby
<bnagy> >> ObjectSpace.each_object(Class) {}
<eval-in_> bnagy => 254 (http://eval.in/32460)
rangle has quit [Quit: Textual IRC Client: www.textualapp.com]
Eaven_ has joined #ruby
rangle has joined #ruby
coderhut has joined #ruby
<lessless> oh my...
Mattix has joined #ruby
obs has quit [Remote host closed the connection]
ferdev has quit [Quit: ferdev]
Eaven has quit [Ping timeout: 248 seconds]
<lessless> bnagy, but here it returns a desired object http://pastie.org/7992934 ?
workmad3 has quit [Ping timeout: 260 seconds]
<bnagy> it doesn't
<bnagy> it sets the blog var, which was initialized outside the block ( which makes it visible )
rangle has quit [Client Quit]
Cyrus has joined #ruby
lyanchih has joined #ruby
monkegji_ has joined #ruby
monkegjinni has quit [Read error: Connection reset by peer]
monkegjinni has joined #ruby
takeru has quit [Remote host closed the connection]
bamdad has quit [Quit: bamdad]
Neomex has joined #ruby
<apeiros_> oh my god
<apeiros_> lessless: do NOT use ObjectSpace for anything but debugging
<apeiros_> this is horrible code
stonevil has joined #ruby
<apeiros_> besides of line 14 being ugly too… %-S
Heero has quit [Ping timeout: 248 seconds]
justsee has quit [Ping timeout: 248 seconds]
<r0bglees0n> apeiros_: it'd be fine if that was as complex it got
<lessless> apeiros_, lol
monkegji_ has quit [Read error: Connection reset by peer]
<lessless> I'm just looking my way to pass data from thread to the worker
<r0bglees0n> use a queue
<bnagy> lessless: Queue
monkegji_ has joined #ruby
<apeiros_> ^
kevinykchan has quit [Quit: Computer has gone to sleep.]
<apeiros_> I wonder how you got from "pass data to worker" to "let's (ab)use ObjectSpace for that!"
<r0bglees0n> i think its an interesting idea
<r0bglees0n> even if it is pretty terrible :P
<lessless> and the constraint is that thread must be created in Observer and data must be pulled in Reservation
<lessless> r0bglees0n, exactly!
<lessless> thanx
lucianosousa has joined #ruby
freerobby has joined #ruby
<r0bglees0n> it reminds me of some type of in-memory search, but outside that script i think you'd start having issues ;)
Neomex has quit [Client Quit]
vlad_starkov has quit [Remote host closed the connection]
<apeiros_> "I need a single instance of a known class I wrote myself - oh I know, lets search the whole app's memory!"
<apeiros_> bad idea is bad
<lessless> apeiros_, :D
<lessless> just do not want to use sidekiq for such a simple task
cofin has joined #ruby
<apeiros_> that's rather unrelated
<r0bglees0n> apeiros_: sure, but in that example there's just three blogs, it's fine for an experiment
<Godd2> apeiros_: well, he'll find it eventually that way.
<apeiros_> r0bglees0n: no it's not
<r0bglees0n> i think it is
<apeiros_> it grooms the idea of using ObjectSpace was viable
<r0bglees0n> it doesn't though
monkegjinni has quit [Ping timeout: 252 seconds]
<r0bglees0n> its not that serious
<r0bglees0n> its just a experiment
<apeiros_> Godd2: you haven't seen enough horrible code in production
<Godd2> Frankenstein was "just an experiment"
<apeiros_> "but it works!"
<lessless> I have never did a IPC before and I know nothing abpout it
gyre008 has joined #ruby
* apeiros_ rolls eyes
<r0bglees0n> i dont think anyone uses ObjectSpace in production :)
<lessless> some how I need to learn
SeanTAllen has quit [Quit: Connection closed for inactivity]
<lessless> ?
<Xeago> I know people who use ObjectSpace in production
<apeiros_> lessless: yes. you just learned that ObjectSpace is a no-no
<Xeago> and it is a mess
<lessless> :D
<Xeago> partly a reason why I left them
<apeiros_> you also learned that you should investigate Queues for interthreadcommunication
<r0bglees0n> ive never seen it used much apart from quick hacks in irb/pry
iamjarvo has quit [Quit: Leaving.]
freerobby has quit [Ping timeout: 252 seconds]
<apeiros_> lessless: learning is all fine and dandy. but sometimes learning comes in the form of "what you did is horrible. don't."
<lessless> apeiros_, do I need a mutex or something?
<r0bglees0n> nope, queue handles that for you.
<apeiros_> with a queue you don't need a mutex.
gyre007 has quit [Ping timeout: 260 seconds]
<apeiros_> or rather: you should not need a mutex.
<r0bglees0n> there's SizedQueue too
<apeiros_> oh? in stdlib?
<r0bglees0n> yup
<apeiros_> nice, that's new
kil0byte has joined #ruby
<apeiros_> wtf is wrong with my pry?
<apeiros_> [2] pry(main)> q = SizedQueue.new(5)
<apeiros_> SyntaxError: <main>:1: syntax error, unexpected '='
<apeiros_> oooh
kirun has quit [Ping timeout: 245 seconds]
<apeiros_> lol, gotta poke bani over that
<apeiros_> Banistergalaxy: seems pry doesn't like it if I alias exit to q, it has issues then with assigning to an lvar with that name
sqa_bm has joined #ruby
jurbat has joined #ruby
<Xeago> apeiros_: what would you expect?
<apeiros_> I'd expect the local to shadow the alias
<apeiros_> same as with ruby methods
diadara has quit [Read error: Connection reset by peer]
atno has joined #ruby
diadara_ has joined #ruby
jjbohn has joined #ruby
<Xeago> that is expecting the alias to be a normal ruby thing
<r0bglees0n> you can still access a shadowed variable in pry too
<r0bglees0n> shadowed by a command that is
<r0bglees0n> so it should work
jjbohn has quit [Client Quit]
<apeiros_> r0bglees0n: assigning does rather obviously not work :)
<r0bglees0n> ah
<apeiros_> and yes, I know that I can do ' q=1'
<r0bglees0n> there we go
<r0bglees0n> yeah
<r0bglees0n> just discovered that too
radd has quit [Ping timeout: 241 seconds]
<r0bglees0n> apeiros_: what are you working on these days?
atno has quit [Remote host closed the connection]
<apeiros_> not much
agjacome has quit [Ping timeout: 256 seconds]
iamjarvo has joined #ruby
goganchic has joined #ruby
atno has joined #ruby
arya_ has joined #ruby
madb055 has joined #ruby
arya has quit [Ping timeout: 240 seconds]
jokke has joined #ruby
<apeiros_> wrote a little starcraft 2 build order help utility
io_syl has joined #ruby
<r0bglees0n> is 'Tess' still around?
<apeiros_> takes files in the form of 'mm:ss: Thing to build'
<r0bglees0n> i remember he was helping on baretest
agjacome has joined #ruby
<apeiros_> tass?
<r0bglees0n> or FreakGuard?
<apeiros_> he moved to 'murica
<r0bglees0n> ah
<r0bglees0n> he disappeared after i guess :)
<apeiros_> but yes, he's still around. not so much on irc, though :-/
<r0bglees0n> only the hardcore stay
JZTech101 has joined #ruby
sambao21 has quit [Ping timeout: 248 seconds]
madb055 has quit [Ping timeout: 246 seconds]
JZTech101 has quit [Max SendQ exceeded]
arya_ has quit [Ping timeout: 260 seconds]
sambao21 has joined #ruby
thomas` has quit [Ping timeout: 256 seconds]
igaiga has quit [Remote host closed the connection]
echevemaster has joined #ruby
echevemaster has joined #ruby
brjannc| has quit [Ping timeout: 256 seconds]
ferdev has joined #ruby
brjannc has joined #ruby
sambao21 has quit [Client Quit]
boxmein has quit [Quit: - Not today.]
goganchic has quit [Quit: Leaving.]
lucianosousa has quit [Quit: lucianosousa]
keanehsiao has quit [Quit: Linkinus - http://linkinus.com]
adambeynon has joined #ruby
teclator has joined #ruby
kofno has quit [Remote host closed the connection]
adambeynon has quit [Max SendQ exceeded]
freerobby has joined #ruby
takeru has joined #ruby
Neomex has joined #ruby
kevinykchan has joined #ruby
ffio has joined #ruby
adambeynon has joined #ruby
ferdev has quit [Quit: ferdev]
_ffio_ has quit [Ping timeout: 245 seconds]
neku has joined #ruby
boxmein has joined #ruby
boxmein has quit [Max SendQ exceeded]
iamjarvo has quit [Quit: Leaving.]
ferdev has joined #ruby
yacks has joined #ruby
freerobby has quit [Ping timeout: 246 seconds]
<lessless> If my program will process multiple requests than I also need to manage a relations between request and thread myself, right?
cortes has joined #ruby
elliptical has joined #ruby
ellipse has quit [Ping timeout: 256 seconds]
sambao21 has joined #ruby
iamjarvo has joined #ruby
mklappstuhl has joined #ruby
ellipse has joined #ruby
elliptical has quit [Read error: Connection reset by peer]
monkegji_ has quit [Ping timeout: 246 seconds]
<lessless> apeiros_, can I pass Queue between observer and model in rails ?
Neomex has quit [Quit: Neomex]
neku has quit [Quit: Leaving...]
gasbakid_ has joined #ruby
Gues_____ has joined #ruby
Gues_____ has quit [Client Quit]
freerobby has joined #ruby
Z_Mass has joined #ruby
Gues_____ has joined #ruby
Gues_____ has quit [Max SendQ exceeded]
darthdeus has joined #ruby
Gues_____ has joined #ruby
Gues_____ has quit [Max SendQ exceeded]
takeru has quit [Remote host closed the connection]
gasbakid has quit [Ping timeout: 252 seconds]
arya has joined #ruby
braoru has quit [Ping timeout: 248 seconds]
<Hanmac> lessless: why not asking at #rubyonrails ?
<apeiros_> lessless: whether you can pass something is only a question of whether you can call a method
<apeiros_> if you can call a method, you can pass something
monkegjinni has joined #ruby
<Xeago> seeing his earlier logic, he could just add an ivar with the queue :3
hamed_r has quit [Quit: Leaving]
coderhut has quit [Quit: Page closed]
lyanchih has quit [Quit: lyanchih]
eploko has quit [Ping timeout: 245 seconds]
sambao21 has quit [Quit: Computer has gone to sleep.]
jonathanwallace has joined #ruby
arya_ has joined #ruby
arya_ has quit [Client Quit]
interactionjaxsn has joined #ruby
razi has quit [Quit: Leaving.]
arya has quit [Ping timeout: 256 seconds]
AgentWillyWonka has quit [Quit: Leaving...]
<aedornm> I need to automate VirtualBox .. not like Vagrant, more like interaction. Manually building an ISO, booting off it, installing (or trying to install) is taking far too long.
<aedornm> hmmm.. not sure how I would do that, but I do have an idea on how to automate making breakfast. I should do that instead.
kirun has joined #ruby
Z_Mass has quit [Ping timeout: 264 seconds]
mklappstuhl has quit [Remote host closed the connection]
vlad_starkov has joined #ruby
ia___ has joined #ruby
jmeeuwen has quit [Ping timeout: 264 seconds]
ellipse has quit [Ping timeout: 256 seconds]
Iszak_ has quit [Read error: Connection reset by peer]
Spooner has quit [Remote host closed the connection]
sqa_bm has quit [Remote host closed the connection]
sqa_bm has joined #ruby
Spooner has joined #ruby
generalissimo has joined #ruby
jmeeuwen has joined #ruby
monkegjinni has quit [Ping timeout: 240 seconds]
forced_request has joined #ruby
eldariof has joined #ruby
lyanchih has joined #ruby
Iszak_ has joined #ruby
vlad_starkov has quit [Ping timeout: 260 seconds]
BSaboia has joined #ruby
stonevil has quit [Remote host closed the connection]
sqa_bm has quit [Ping timeout: 245 seconds]
iamjarvo has quit [Quit: Leaving.]
atno has quit [Remote host closed the connection]
atno has joined #ruby
verto has joined #ruby
spider-mario has quit [Ping timeout: 256 seconds]
atno has quit [Remote host closed the connection]
atno has joined #ruby
jimg has joined #ruby
vlad_starkov has joined #ruby
ybart has quit [Quit: ybart]
iamjarvo has joined #ruby
jmeeuwen has quit [Ping timeout: 248 seconds]
ravster has joined #ruby
Zeeraw has quit [Quit: Computer has gone to sleep.]
jimg has quit [Ping timeout: 256 seconds]
jonathanwallace has quit [Quit: WeeChat 0.4.0]
TheDick_ has joined #ruby
vlad_starkov has quit [Ping timeout: 245 seconds]
jmeeuwen has joined #ruby
Zeeraw has joined #ruby
monkegjinni has joined #ruby
TheDick has quit [Ping timeout: 252 seconds]
TheDick_ is now known as TheDick
viszu has quit [Quit: Leaving.]
sqa_bm has joined #ruby
diadara_ has quit [Ping timeout: 246 seconds]
monkegjinni has quit [Read error: Connection reset by peer]
monkegjinni has joined #ruby
manu has joined #ruby
manu is now known as Guest30312
rickruby has joined #ruby
echevemaster has quit [Quit: Leaving]
stonevil has joined #ruby
monkegji_ has joined #ruby
monkegjinni has quit [Ping timeout: 256 seconds]
banghouse has joined #ruby
sqa_bm has quit [Remote host closed the connection]
banghouse is now known as Guest98885
rickruby has quit [Ping timeout: 248 seconds]
iamjarvo has quit [Quit: Leaving.]
Guest98885 is now known as banghouse
replay has quit [Ping timeout: 264 seconds]
Godd2 has quit [Quit: Page closed]
Guest30312 has quit [Ping timeout: 245 seconds]
Z_Mass has joined #ruby
Proshot has quit [Quit: Leaving]
arya has joined #ruby
monkegji_ has quit [Ping timeout: 256 seconds]
mixel has quit [Quit: mixel]
nightfly has quit [Ping timeout: 256 seconds]
r0bglees0n has quit [Ping timeout: 252 seconds]
freerobby has quit [Quit: Leaving.]
jasonkuhrt has joined #ruby
freerobby has joined #ruby
arya has quit [Ping timeout: 256 seconds]
postmodern has quit [Quit: Leaving]
Michael__ has joined #ruby
eploko_ has joined #ruby
arya has joined #ruby
ivanoats has joined #ruby
jasonkuhrt has quit [Ping timeout: 260 seconds]
senayar has quit [Read error: Operation timed out]
vlad_starkov has joined #ruby
vlad_starkov has quit [Remote host closed the connection]
Inside_ has joined #ruby
freerobby has quit [Quit: Leaving.]
vlad_starkov has joined #ruby
diadara has joined #ruby
vlad_sta_ has joined #ruby
neku has joined #ruby
sqa_bm has joined #ruby
vlad_starkov has quit [Ping timeout: 245 seconds]
Ortuna has quit [Quit: Textual IRC Client: www.textualapp.com]
generalissimo has quit [Remote host closed the connection]
rippa has joined #ruby
sqa_bm has quit [Ping timeout: 246 seconds]
obs has joined #ruby
paszo2008 has joined #ruby
ariedler has joined #ruby
jds_ has joined #ruby
kil0byte has quit [Ping timeout: 246 seconds]
arya has quit [Ping timeout: 256 seconds]
arya has joined #ruby
yshh has joined #ruby
kjellski has joined #ruby
Eaven_ has quit [Remote host closed the connection]
m_3 has quit [Remote host closed the connection]
GeissT has quit [Quit: MillBroChat AdIRC User]
wu_lmao has joined #ruby
lewix has quit [Remote host closed the connection]
Z_Mass has quit [Ping timeout: 252 seconds]
kil0byte has joined #ruby
mklappstuhl has joined #ruby
arya has quit [Ping timeout: 256 seconds]
jimg has joined #ruby
multi_io has joined #ruby
mklappstuhl has quit [Read error: Connection reset by peer]
takezawa has quit [Remote host closed the connection]
mklappstuhl has joined #ruby
lessless has quit [Remote host closed the connection]
jimg has quit [Ping timeout: 240 seconds]
arya has joined #ruby
eploko_ has quit [Quit: Z-z-zzz...]
jamesfung14 has joined #ruby
kjellski has quit [Ping timeout: 240 seconds]
ARCADIVS has quit [Quit: WeeChat 0.3.8]
thomas` has joined #ruby
malkomalko has joined #ruby
cj3kim has joined #ruby
cj3kim has quit [Remote host closed the connection]
danslo has quit [Quit: danslo]
lkba has quit [Ping timeout: 260 seconds]
mklappstuhl has quit [Remote host closed the connection]
kjellski has joined #ruby
spider-mario has joined #ruby
WhereIsMySpoon_ has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
WhereIsMySpoon has joined #ruby
WhereIsMySpoon has joined #ruby
WhereIsMySpoon has quit [Changing host]
splittingred has joined #ruby
Squarepy has joined #ruby
freerobby has joined #ruby
apeiros has joined #ruby
monkegjinni has joined #ruby
<multi_io> I'm looking for a simple 2D pixel drawing library, i.e. something that allows you to create a simple 2d drawing area of specific dimensions, then set pixels, draw lines, ellipses etc. Ideally there sould be multiple backends, e.g. x11, png etc. I don't need user interactions. What would you recommend?
lathiat has quit [Ping timeout: 256 seconds]
jokke has quit [Ping timeout: 245 seconds]
arya has quit [Ping timeout: 260 seconds]
spider-mario has quit [Remote host closed the connection]
apeiros_ has quit [Ping timeout: 245 seconds]
ybart has joined #ruby
northelks__ has joined #ruby
cj3kim has joined #ruby
northelks__ has left #ruby [#ruby]
northelks__ has joined #ruby
<Spooner> multi_io, RMagick is popular, but a pain to install for some people (since it has external dependencies).
northelks__ has left #ruby [#ruby]
<Spooner> Or cairo with rcairo.
closer009 has joined #ruby
vlad_sta_ has quit [Ping timeout: 245 seconds]
arya has joined #ruby
closer has quit [*.net *.split]
ybart has quit [Client Quit]
danslo has joined #ruby
<multi_io> Spooner: thanks
danslo has quit [Client Quit]
lathiat has joined #ruby
snearch has joined #ruby
<paszo2008> hi i have problems running the rails server how to check if i have everything ok?
iamjarvo has joined #ruby
AgentWillyWonka has joined #ruby
<paszo2008> i try to run webrick using rails server
thesheff17 has quit [Disconnected by services]
<Spooner> paszo2008, #rubyonrails channel might be better for you
danslo has joined #ruby
thesheff17 has joined #ruby
Proshot has joined #ruby
northelks_ has joined #ruby
shammancer has joined #ruby
takeru has joined #ruby
infecto has joined #ruby
kjellski_ has joined #ruby
machuga|away is now known as machuga
northelks_ has quit [Quit: Leaving]
northelks_ has joined #ruby
atno has quit [Quit: Leaving]
northelks_ has quit [Client Quit]
yshh has quit [Remote host closed the connection]
northelks_ has joined #ruby
Cultofmetatron has joined #ruby
osvico has joined #ruby
takeru has quit [Ping timeout: 276 seconds]
kjellski has quit [Ping timeout: 245 seconds]
workmad3 has joined #ruby
razi has joined #ruby
Eaven has joined #ruby
<joshu> hi guys
Cultofmetatron has quit [Remote host closed the connection]
ariedler has quit [Remote host closed the connection]
<joshu> I have an ubuntu server vanilla at the moment which will host my ruby script. Just wondering about the details of installing ruby in production. Do I follow the same type of procedure as I do on my local dev machine, e.g. install rbenv, bundler etc?
<joshu> Or should ruby be installed differently in production?
pagios_ has joined #ruby
pskosinski has joined #ruby
<pagios_> what is the easiest way to extract filename from "filename.extension" where filename is a dynamic text
Iszak_ has quit [Quit: Textual IRC Client: www.textualapp.com]
pagios_ has left #ruby ["Leaving"]
northelks_ has quit [Quit: ...]
northelks_ has joined #ruby
jamesfung14 has quit [Ping timeout: 245 seconds]
<joshu> pagios_ maybe filename.extension.split('.').firt
<joshu> *first
northelks_ has left #ruby [#ruby]
razi has quit [Quit: Leaving.]
northelks_ has joined #ruby
<joshu> so file = "filename.extension"
<joshu> file_name = file.split('.').first
<joshu> untested but I think that's the way to do it
fridim_ has joined #ruby
ereslibre has quit [Ping timeout: 240 seconds]
<joshu> regarding my question about ruby install in production. I just came across this link http://stackoverflow.com/questions/15715090/rails-production-environment-with-rbenv-and-ruby-build
aalmenar has quit [Ping timeout: 260 seconds]
<joshu> Is the script in that stack overflow question the way to do it?
diadara has quit [Read error: Connection reset by peer]
cesarerocchi has joined #ruby
<cesarerocchi> hi there
razi has joined #ruby
altamic has joined #ruby
altamic has left #ruby [#ruby]
cesarerocchi has quit [Client Quit]
braoru has joined #ruby
ravster has quit [Quit: Leaving.]
lemonsparrow has joined #ruby
ereslibre has joined #ruby
aalmenar has joined #ruby
aalmenar has quit [Changing host]
aalmenar has joined #ruby
<lemonsparrow> hi
<lemonsparrow> what is the api in ruby to remove white spaces ?
slash_nick has joined #ruby
<Morrolan> Leading / following spaces, or spaces anywhere in the string?
<Morrolan> s/spaces/white space/
<lemonsparrow> Morrolan: any whitespace
altamic has joined #ruby
altamic has left #ruby [#ruby]
martxel has quit [Quit: leaving]
wallerdev has joined #ruby
<Spooner> lemonsparrow, " str ing ".gsub(" ", "") #=> "string"
<lemonsparrow> Spooner: wont str.strip! work ?
<Spooner> strip just takes it off the ends.
<Spooner> You said any spaces.
<Spooner> Though if you want any whitespace, probably better to:
<Spooner> lemonsparrow, " str ing ".gsub(/\s/, "") #=> "string"
martxel has joined #ruby
<lemonsparrow> Spooner: thanks a lot :)
martxel is now known as Guest598
Guest598 is now known as martxel_
diadara has joined #ruby
martxel_ has quit [Changing host]
martxel_ has joined #ruby
kjellski_ has quit [Quit: This computer has gone to sleep]
<Spooner> joshu, file.split('.').first doesn't work well, since you can have "frog.tar.gz"
<Morrolan> Keep in mind that, depending on the Regex flavour, \s will remove things other than spaces, too. (Tabs, carriage returns, newlines, ...)
martxel_ is now known as martxel
jamesfung14 has joined #ruby
<joshu> Spooner oh ok well pagios seems to have left anyway. For my own learning how would you do it?
incorvia has joined #ruby
<Spooner> "x.tar.gz".chomp(File.extname(file)) => "x.tar"
dankest has joined #ruby
<Spooner> Morrolan, They did say "any whitespace" when pressed.
<incorvia> Can someone help me find a list of all available dtrace probe / probenames built into ruby 2.0 if such a list exists?
<Morrolan> Spooner: True. I'd rather tell him now, than have him wonder why it removed line breaks too, though. :)
dhruvasagar has joined #ruby
<joshu> Spooner ok and then you could use split to just get "x" if you wanted?
<Spooner> joshu the other messy one is something like: "my_app2.0.zip" (where the .0 isn't an extension).
<Spooner> Yeah. Extensions are messy things!
niklasb has quit [Ping timeout: 245 seconds]
<apeiros> filename.sub(/\.[^.]*\z/,'')
<apeiros> def File.strip_ext(filename) … end
charliesome has quit [Quit: Textual IRC Client: www.textualapp.com]
<davidcelis> wouldn't that return an empty string if you pass in a dotfile
<Spooner> Yeah, better to use File.extname since it knows about dotfiles.
spider-mario has joined #ruby
<Spooner> File.extname ".gitignore"=> ""
Eaven has quit [Ping timeout: 276 seconds]
dhruvasagar has quit [Ping timeout: 240 seconds]
<joshu> cool saved for future use
<joshu> so you have any thoughts on ruby production install?
brianherman has joined #ruby
Cultofmetatron has joined #ruby
<davidcelis> what about it
<Spooner> Can't see a reason for production to be different. However, you don't strictly need to use rbenv, because unlike a development machine, you usually don't use multiple versions of ruby at once.
slash_nick is now known as slash-nick
Cultofmetatron has quit [Remote host closed the connection]
<Spooner> But for consistency, it is probably easier to set it up in the same way.
diadara has quit [Quit: Leaving]
slash-nick has quit [Changing host]
slash-nick has joined #ruby
<joshu> So Spooner you would install rbenv, ruby-build, bundler or do what this script does http://stackoverflow.com/questions/15715090/rails-production-environment-with-?
aalmenar has quit [Ping timeout: 240 seconds]
Z_Mass has joined #ruby
ereslibre has quit [Ping timeout: 240 seconds]
rburton- has joined #ruby
<joshu> davidcelis just asking for advice as I need to setup a new ubuntu server to run a ruby script
<Spooner> That suggestion seems reasonably. At least it is avoiding using system ruby (which is a nightmare ;D).
Yulli has left #ruby ["Leaving..."]
<joshu> hmm ok might just use that script then
<davidcelis> joshu: that script seems fine; it's just using ruby-build
monkegji_ has joined #ruby
incorvia has quit [Remote host closed the connection]
lkba has joined #ruby
<joshu> davidcelis yeah I was reading this now https://github.com/sstephenson/rbenv/wiki/Deploying-with-rbenv but although I have rbenv, bundler on my mac for dev. I'm just confused by binstubs and all that, so I don't know. Honestly, for someone like me who's relatively new to ruby and web dev googling results in so many different views and opinions on how to do standard things such as deployment that a newcomer gets totality confused
monkegjinni has quit [Ping timeout: 246 seconds]
aalmenar has joined #ruby
<joshu> there doesn't seem to be an accepted "standard", "boilerplate" for essential things
<joshu> or maybe I'm missing something
infecto has quit [Quit: Leaving.]
ereslibre has joined #ruby
danslo has quit [Ping timeout: 260 seconds]
Z_Mass has quit [Quit: Leaving]
danslo has joined #ruby
<davidcelis> there is no accepted standard
<davidcelis> you must make a choice
ybart has joined #ruby
lucaaa has joined #ruby
rickruby has joined #ruby
kindjal has joined #ruby
rickruby has quit [Remote host closed the connection]
<lucaaa> ciao
<lucaaa> !list
lucaaa has quit [Client Quit]
incorvia has joined #ruby
nkts has joined #ruby
nightfly has joined #ruby
mklappstuhl has joined #ruby
kofno has joined #ruby
kjellski has joined #ruby
bugg has quit [Remote host closed the connection]
diadara has joined #ruby
rburton- has left #ruby ["Linkinus - http://linkinus.com"]
mixel has joined #ruby
ybart has quit [Quit: ybart]
kofno has quit [Ping timeout: 245 seconds]
mklappstuhl has quit [Ping timeout: 245 seconds]
workmad3 has quit [Ping timeout: 256 seconds]
stonevil has quit [Remote host closed the connection]
yshh has joined #ruby
agjacome has quit [Quit: leaving]
jasonkuhrt has joined #ruby
ivanoats has quit [Remote host closed the connection]
|RicharD| has joined #ruby
<|RicharD|> hi to all
<|RicharD|> anyone know a good gem for mysql sanitize etc… ?
Guest30312 has joined #ruby
<|RicharD|> now i'm using db.query(...)
slash-nick has quit [Ping timeout: 256 seconds]
<nightfly> Find a library the doesn't treat queries as just strings.
tonini has joined #ruby
<kindjal> anyone know what sets GEM PATH to /usr/lib or /var/lib or whatever? I have the same ruby1.8 and same rubygems1.8 on Ubuntu Lucid servers, but some have GEM PATH of /var/lib and others /usr/lib. Can't figure out why they're different.
<|RicharD|> any suggest ? some good name ?
<davidcelis> |RicharD|: check out sequel
<|RicharD|> seems good
areil has quit [Remote host closed the connection]
incorvia has quit [Read error: Connection reset by peer]
Dummies_freelanc has quit [Read error: Connection reset by peer]
incorvia has joined #ruby
jimg has joined #ruby
jasonkuhrt has quit [Ping timeout: 245 seconds]
JZTech101 has joined #ruby
JZTech101 has quit [Max SendQ exceeded]
JZTech101 has joined #ruby
Michael__ has quit [Remote host closed the connection]
jimg has quit [Ping timeout: 260 seconds]
sqa_bm has joined #ruby
razi has quit [Quit: Leaving.]
interactionjaxsn has quit [Remote host closed the connection]
Cultofmetatron has joined #ruby
interactionjaxsn has joined #ruby
sqa_bm has quit [Ping timeout: 252 seconds]
blaxter has joined #ruby
<joshu> is it customary to add "#!/usr/bin/env rake" to Rakefiles as it is to ruby script files "#!/usr/bin/env ruby" ?
phipes has joined #ruby
interactionjaxsn has quit [Ping timeout: 245 seconds]
arya has quit [Ping timeout: 264 seconds]
tonini has quit [Ping timeout: 248 seconds]
icole has joined #ruby
arya has joined #ruby
<aedornm> joshu: no. Rake generally acts as a standalone executable that just reads in the rake file and adds tasks to itself. So you don't run the rakefile, just run rake
yshh has quit [Remote host closed the connection]
<joshu> aedornm ok thanks
diadara_ has joined #ruby
diadara has quit [Read error: Connection reset by peer]
ferdev has quit [Quit: ferdev]
huoxito has joined #ruby
alem0lars has quit [Quit: Leaving]
Liothen has quit [Read error: Connection reset by peer]
Michael__ has joined #ruby
saarinen has joined #ruby
Liothen has joined #ruby
Liothen has joined #ruby
Liothen has quit [Changing host]
wallerdev has quit [Quit: wallerdev]
cj3kim has quit [Remote host closed the connection]
AgentWillyWonka has quit [Ping timeout: 246 seconds]
razi has joined #ruby
Cultofme_ has joined #ruby
Cultofmetatron has quit [Read error: Connection reset by peer]
sqa_bm has joined #ruby
monkegji_ has quit [Remote host closed the connection]
diadara_ has quit [Ping timeout: 260 seconds]
yacks has quit [Remote host closed the connection]
DomKM has joined #ruby
freeayu has quit [Remote host closed the connection]
rickruby has joined #ruby
phipes has quit [Quit: phipes]
<joshu> I have a gem in my GemFile development group called letter_opener. I only use this when testing my script manually. How do I "disable" "unrequire" that gem when I run minitest and later when I put it into production? I can comment that line of code, but there must be a better way of doing it. Is it done in the Gemfile or in my code?
teclator has quit [Ping timeout: 276 seconds]
jarjar_prime has joined #ruby
b0oh has joined #ruby
baroquebobcat has joined #ruby
arya has quit [Ping timeout: 256 seconds]
monkegjinni has joined #ruby
<fryguy> joshu: add it to the development group
cj3kim has joined #ruby
LennyLinux has quit [Remote host closed the connection]
<joshu> so fryguy I have it in the dev group. But when I execute the script like this ruby myscript.rb then there's no concept of dev or production, right?
<fryguy> there's also no concept of bundler unless you are adding it
<fryguy> in which case you can specify it
banister_ has joined #ruby
slyv has joined #ruby
slyv has quit [Max SendQ exceeded]
incorvia has quit [Remote host closed the connection]
voidpirate has joined #ruby
<|RicharD|> sequel rocks!
jurbat has quit [Quit: Computer has gone to sleep.]
LennyLinux has joined #ruby
arya has joined #ruby
freakazoid0223 has joined #ruby
neku has quit [Quit: Leaving...]
graydot has quit [Ping timeout: 252 seconds]
bricker`LA has quit [Ping timeout: 264 seconds]
kjellski has quit [Quit: Leaving]
banister_ has quit [Ping timeout: 256 seconds]
arya has quit [Ping timeout: 246 seconds]
banisterfiend has joined #ruby
baroquebobcat has quit [Quit: baroquebobcat]
jamesfung14 has quit [Ping timeout: 245 seconds]
fridim_ has quit [Ping timeout: 276 seconds]
wallerdev has joined #ruby
arya has joined #ruby
osvico has quit []
saarinen has quit [Quit: saarinen]
jokke has joined #ruby
phipes has joined #ruby
razi has quit [Quit: Leaving.]
verto has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
verto has joined #ruby
mguy has joined #ruby
osvico has joined #ruby
daniel_- has joined #ruby
Guest30312 has quit [Remote host closed the connection]
vlad_starkov has joined #ruby
moos3 has quit [Quit: Computer has gone to sleep.]
wu_lmao has quit [Quit: wu_lmao]
jarjar_prime has quit [Quit: Sleep time.]
iamjarvo has quit [Quit: Leaving.]
leonidlm has quit [Ping timeout: 252 seconds]
splittingred has quit [Quit: splittingred]
kindjal has quit [Ping timeout: 264 seconds]
AgentWillyWonka has joined #ruby
tomzx_mac has joined #ruby
monkegjinni has quit [Remote host closed the connection]
jimg has joined #ruby
machuga is now known as machuga|away
bean__ has joined #ruby
kindjal has joined #ruby
<joshu> fryguy so what I should be doing is executing my script like this bundle exec ruby myscript.rb?
monkegjinni has joined #ruby
JoeTheGuest has quit [Quit: Connection closed for inactivity]
shevy has quit [Ping timeout: 256 seconds]
shevy has joined #ruby
takezawa has joined #ruby
incorvia has joined #ruby
workmad3 has joined #ruby
b0oh has quit [Quit: Leaving.]
bricker`LA has joined #ruby
osvico has quit []
apeiros_ has joined #ruby
jimg has quit [Ping timeout: 260 seconds]
apeiros has quit [Read error: Operation timed out]
ehaliewicz has joined #ruby
adambeynon has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
m8 has quit [Read error: Connection reset by peer]
osvico has joined #ruby
alexmreis has joined #ruby
pcarrier_ has joined #ruby
incorvia has quit [Ping timeout: 256 seconds]
wu_lmao has joined #ruby
cofin has quit [Quit: cofin]
codecop has joined #ruby
Leighton has quit [Quit: Leaving]
kobain has joined #ruby
nowthatsamatt has quit [Quit: nowthatsamatt]
tonini has joined #ruby
cofin has joined #ruby
alexmreis has quit [Quit: Leaving.]
arya has quit [Ping timeout: 264 seconds]
bricker`LA has quit [Ping timeout: 260 seconds]
Michael__ has quit [Remote host closed the connection]
gyre008 has quit [Remote host closed the connection]
Michael__ has joined #ruby
Michael__ has quit [Read error: Connection reset by peer]
arya has joined #ruby
yshh has joined #ruby
Senjai has joined #ruby
Michael__ has joined #ruby
cortes has quit [Remote host closed the connection]
bean__ has quit [Quit: Computer has gone to sleep.]
Muz has quit [Ping timeout: 248 seconds]
yshh has quit [Ping timeout: 276 seconds]
Michael__ has quit [Ping timeout: 256 seconds]
ariedler has joined #ruby
LennyLinux has quit [Remote host closed the connection]
lyanchih has quit [Quit: lyanchih]
verto has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
workmad3 has quit [Read error: Operation timed out]
Muz has joined #ruby
jbpros has joined #ruby
b0oh has joined #ruby
vlad_sta_ has joined #ruby
ntus1017 has quit [Remote host closed the connection]
AgentWillyWonka has quit [Quit: Linkinus - http://linkinus.com]
jjbohn has joined #ruby
jacktrick has joined #ruby
jetblack has quit [Quit: leaving]
mixel has quit [Quit: mixel]
stewarf has joined #ruby
vlad_starkov has quit [Ping timeout: 240 seconds]
sambao21 has joined #ruby
incorvia has joined #ruby
butblack has joined #ruby
<Spooner> joshu, You can group things inside your gemfile, then require them by group in your application.
mikepack has joined #ruby
<apeiros_> ew
tonini has quit [Quit: Lost terminal]
* apeiros_ doesn't like how bundler creeps from an external utility to an internal dependency
<apeiros_> also by solving non-problems.
cj3kim has quit [Remote host closed the connection]
krawchyk has joined #ruby
jjbohn has quit [Quit: Leaving...]
b0oh has quit [Ping timeout: 248 seconds]
incorvia has quit [Ping timeout: 256 seconds]
butblack has quit [Ping timeout: 260 seconds]
tmewett has joined #ruby
<tmewett> i am trying to run gem install jekyll
iamjarvo has joined #ruby
<tmewett> but, my shell complains that I "don't have write permissions for the /usr/lib/ruby/gems/1.9.1 directory"
IceDragon has joined #ruby
<tmewett> so, naturally, i use "sudo" to run the gem command.
butblack has joined #ruby
skattyadz has joined #ruby
<tmewett> but then it "cannot load such file -- mkmf" and halts during the native extension building.
<tmewett> anyone had this issue before?
rickruby has quit [Remote host closed the connection]
pbertain has quit [Quit: pbertain]
<tmewett> i don't see what i can be doing wrong, everything is fresh and default
cofin has quit [Quit: cofin]
pbertain has joined #ruby
<Spooner> tmewett, We generally install Ruby for the user (with rvm/rbenv/chruby) so we never need to touch sudo.
<Spooner> System ruby is more trouble than it is worth, most of the time :)
<tmewett> ah, right
BizarreCake has quit [Read error: Operation timed out]
<tmewett> should i uninstall and get it with RVM instead of Apt?
lemonsparrow has quit [Ping timeout: 250 seconds]
<apeiros_> missing mkmf is a different issue, though
<tmewett> i've read that it happens because sudo uses different ENV
<apeiros_> it means you're having an incomplete ruby installation. your package manager probably has something like ruby-dev or so
<tmewett> for ruby
<tmewett> argh!
<tmewett> this is so annoying.
kpshek has joined #ruby
cofin has joined #ruby
pbertain has quit [Client Quit]
pbertain has joined #ruby
blaxter has quit [Ping timeout: 245 seconds]
LennyLinux has joined #ruby
<tmewett> ah well
<tmewett> i gtg, thanks for the help
colonolGron has joined #ruby
baroquebobcat has joined #ruby
tmewett has quit [Quit: ChatZilla 0.9.90 [Iceweasel 10.0.12/20130108202048]]
[Neurotic] has quit [K-Lined]
mtlatif__ has quit [K-Lined]
notbrent_ has quit [K-Lined]
TheHodge has quit [K-Lined]
fcoury__ has quit [K-Lined]
NimeshNeema has quit [K-Lined]
mroth has quit [K-Lined]
Naeblis has quit [K-Lined]
guilleiguaran_ has quit [K-Lined]
cool has quit [K-Lined]
phasma has quit [K-Lined]
[0x1a] has quit [K-Lined]
niftylettuce has quit [K-Lined]
_rgn has quit [K-Lined]
dnyy has quit [K-Lined]
bluehavana has quit [K-Lined]
cam` has quit [K-Lined]
randym_ has quit [K-Lined]
rwz_ has quit [K-Lined]
spanx__ has quit [K-Lined]
patricksroberts_ has quit [K-Lined]
strax has quit [K-Lined]
marten has quit [K-Lined]
Guest85414_ has quit [K-Lined]
moeSeth has quit [K-Lined]
yeban has quit [K-Lined]
rcsheets has quit [K-Lined]
octarine has quit [K-Lined]
lectrick has quit [K-Lined]
keyvan has quit [K-Lined]
karnowski has quit [K-Lined]
Spaceghost|cloud has quit [K-Lined]
ziyadb has quit [K-Lined]
im0b has quit [K-Lined]
xerxas has quit [K-Lined]
davidboy has quit [K-Lined]
kaichanvong has quit [K-Lined]
heidar has quit [K-Lined]
pkondzior___ has quit [K-Lined]
kapowaz has quit [K-Lined]
thejefflarson__ has quit [K-Lined]
keppy has joined #ruby
kpshek has quit []
wu_lmao has quit [Quit: wu_lmao]
bradhe has joined #ruby
ferdev has joined #ruby
Z_Mass has joined #ruby
<apeiros_> interesting
fridim_ has joined #ruby
arya has quit [Ping timeout: 245 seconds]
moeSeth has joined #ruby
ziyadb has joined #ruby
heidar has joined #ruby
Naeblis has joined #ruby
phasma has joined #ruby
lectrick has joined #ruby
cam` has joined #ruby
skattyadz has quit [Quit: skattyadz]
kaichanvong has joined #ruby
dambler has joined #ruby
randym_ has joined #ruby
mtlatif__ has joined #ruby
kapowaz has joined #ruby
Nahra has quit [Read error: Connection reset by peer]
davidboy has joined #ruby
karnowski has joined #ruby
marten has joined #ruby
_rgn has joined #ruby
octarine has joined #ruby
arya has joined #ruby
pkondzior___ has joined #ruby
guilleiguaran_ has joined #ruby
mroth has joined #ruby
yeban has joined #ruby
thejefflarson__ has joined #ruby
Spaceghost|cloud has joined #ruby
Nahra has joined #ruby
Nahra has quit [Changing host]
Nahra has joined #ruby
im0b has joined #ruby
xerxas has joined #ruby
Nahra has quit [Client Quit]
patricksroberts_ has joined #ruby
strax has joined #ruby
niftylettuce has joined #ruby
bluehavana_ has joined #ruby
Guest85414_ has joined #ruby
TheHodge has joined #ruby
keyvan has joined #ruby
[Neurotic] has joined #ruby
jcromartie has quit [Remote host closed the connection]
fcoury__ has joined #ruby
rcsheets has joined #ruby
cool has joined #ruby
rwz_ has joined #ruby
notbrent_ has joined #ruby
jcromartie has joined #ruby
marten has quit [Client Quit]
bradhe has quit [Remote host closed the connection]
druonysus has joined #ruby
druonysus has quit [Changing host]
druonysus has joined #ruby
NimeshNeema has joined #ruby
havenwood has quit [Read error: Connection reset by peer]
Nahra has joined #ruby
Nahra has quit [Changing host]
Nahra has joined #ruby
ksmth has joined #ruby
allanm has joined #ruby
vlad_sta_ has quit [Ping timeout: 246 seconds]
vlad_starkov has joined #ruby
rickruby has joined #ruby
cj3kim has joined #ruby
wu_lmao has joined #ruby
timkohrumel has joined #ruby
banisterfiend is now known as banister`shop
jokke has quit [Ping timeout: 252 seconds]
sambao21 has quit [Quit: Computer has gone to sleep.]
danslo has quit [Quit: danslo]
haxrbyte has quit [Remote host closed the connection]
haxrbyte has joined #ruby
jetblack has joined #ruby
Animawish has joined #ruby
pcarrier_ has quit [Ping timeout: 276 seconds]
timkohrumel has quit [Ping timeout: 256 seconds]
obs has quit [Read error: Operation timed out]
BSaboia has quit [Remote host closed the connection]
Nisstyre has joined #ruby
cj3kim has quit [Ping timeout: 246 seconds]
Spooner has quit [Remote host closed the connection]
Michael__ has joined #ruby
banister`shop has quit [Remote host closed the connection]
arya has quit [Ping timeout: 264 seconds]
nowthatsamatt has joined #ruby
jimg has joined #ruby
phipes has quit [Quit: phipes]
arya has joined #ruby
pinpin404 has joined #ruby
jbpros has quit [Quit: jbpros]
druonysus has quit [Ping timeout: 246 seconds]
ioNull has quit [Quit: Textual IRC Client: www.textualapp.com]
stewarf has quit [Quit: xD]
ioNull has joined #ruby
ioNull has quit [Max SendQ exceeded]
jimg has quit [Ping timeout: 256 seconds]
ioNull has joined #ruby
Godd2 has joined #ruby
pcarrier_ has joined #ruby
jamesfung14 has joined #ruby
AgentWillyWonka has joined #ruby
havenwood has joined #ruby
vlad_starkov has quit [Remote host closed the connection]
bradhe has joined #ruby
JimmyNeutron has joined #ruby
byprdct has joined #ruby
adambeynon has joined #ruby
ananthakumaran has quit [Quit: Leaving.]
teclator has joined #ruby
krombr has joined #ruby
brianpWins has quit [Quit: brianpWins]
vlad_starkov has joined #ruby
AndChat| has joined #ruby
Banistergalaxy has quit [Ping timeout: 264 seconds]
BadDesign has joined #ruby
BadDesign has joined #ruby
AgentWillyWonka has quit [Quit: Linkinus - http://linkinus.com]
johnkary has joined #ruby
bradhe has quit [Ping timeout: 256 seconds]
Vert has quit [Quit: quit]
malkomalko has quit [Remote host closed the connection]
dmiller has joined #ruby
sventon has joined #ruby
<sventon> hi all
<sventon> I have this code:
<sventon> it looks really weird so is there a better way to do this?
workmad3 has joined #ruby
<sventon> basically I want to be able to pass arguments inside a loop
brendal has quit [Quit: Leaving]
<apeiros_> .to_enum.with_index(1).each # <-- total and utter blurp :-p
<apeiros_> Array#each_with_index
sr78ger has joined #ruby
vlad_starkov has quit [Remote host closed the connection]
<sventon> apeiros_: I see
RagingDave has joined #ruby
jztech101_ has joined #ruby
andikr has joined #ruby
<Godd2> I would use yield
JZTech101 has quit [Ping timeout: 248 seconds]
zigomir has joined #ruby
<sventon> Godd2: yes, that looks much cleaner, thanks!
<Godd2> and then yea, clean up that iteration
foxiness has joined #ruby
<sventon> Godd2: already done : )
obs has joined #ruby
workmad3 has quit [Ping timeout: 256 seconds]
jonathanwallace has joined #ruby
skattyadz has joined #ruby
jbpros has joined #ruby
kindjal has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
atno has joined #ruby
txdv has quit [Read error: Operation timed out]
Criztian has joined #ruby
jokke has joined #ruby
HektoR has joined #ruby
sr78ger has quit [Quit: Qui]
colonolGron has quit [Ping timeout: 264 seconds]
<HektoR> hello guys. anyone knows simple http web proxy written in Ruby ? i want to access websites something like that localhost:1234/google.com
atno has quit [Remote host closed the connection]
atno has joined #ruby
bricker`LA has joined #ruby
txdv has joined #ruby
byprdct has quit [Quit: Textual IRC Client: www.textualapp.com]
byprdct has joined #ruby
Kov|sumika has joined #ruby
teclator has quit [Read error: Operation timed out]
Spooner has joined #ruby
LanaDelRey has joined #ruby
arya has quit [Ping timeout: 248 seconds]
colonolGron has joined #ruby
ksmth has quit []
bradhe has joined #ruby
Kovensky has quit [Ping timeout: 256 seconds]
Kov|sumika is now known as Kovensky
aedornm has quit [Remote host closed the connection]
Jackneill has quit [Read error: Operation timed out]
arya has joined #ruby
<mguy> HektoR: why do you want to do that?
bradhe has quit [Ping timeout: 248 seconds]
<HektoR> mguy: because of iframe. so i'll be able to to avoid cross origin policy
JimmyNeutron has quit [Quit: Leaving]
krombr has quit [Remote host closed the connection]
timonv has quit [Remote host closed the connection]
reset has joined #ruby
neku has joined #ruby
andikr has quit [Remote host closed the connection]
viszu has joined #ruby
annaaaaa has joined #ruby
<annaaaaa> hi, my naked photos;d www.fajnania.rox.pl free and hard
annaaaaa has left #ruby [#ruby]
teclator has joined #ruby
dnyy has joined #ruby
snearch has quit [Read error: Connection reset by peer]
jasonkuhrt has joined #ruby
LanaDelRey has quit [Ping timeout: 256 seconds]
jimg has joined #ruby
graydot has joined #ruby
jnoob22_ has joined #ruby
interactionjaxsn has joined #ruby
staafl_alt has quit [Read error: Connection reset by peer]
jnoob22 has quit [Ping timeout: 245 seconds]
dallasm has joined #ruby
dallasm has quit [Remote host closed the connection]
jimg has quit [Ping timeout: 245 seconds]
jasonkuhrt has quit [Ping timeout: 252 seconds]
<jacktrick> ...
dambler has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
mercwithamouth has joined #ruby
<butblack> hi, can someone explain this to me?
<butblack> from what i understand, it says the the Person class inherits the attributes name age rows
<Spooner> What isn't clear, butblack
HektoR has quit [Remote host closed the connection]
haxrbyte has quit [Remote host closed the connection]
<Spooner> It inherits from a newly created Struct class, which has those attributes.
interactionjaxsn has quit [Remote host closed the connection]
neku has quit [Quit: Leaving...]
<butblack> ok, and why wouldn't the class just have those attributes in an initialize method?
<butblack> why would you do that?
Shirakawasuna has joined #ruby
harrymoreno has joined #ruby
danslo has joined #ruby
interactionjaxsn has joined #ruby
<Spooner> Because it is marginally quicker to use Struct as a base, rather than explicitly have attr_accessors and a defined #initialize.
jztech101_ has quit [Remote host closed the connection]
<Spooner> There isn't really much to gain from that idiom, unless Person is pretty trivial.
<butblack> Spooner: ok thanks
jbueza has quit [Quit: Leaving.]
brian_000_ has joined #ruby
JZTech101 has joined #ruby
JZTech101 has quit [Max SendQ exceeded]
Squarepy has quit [Ping timeout: 245 seconds]
<Spooner> Better than that idiom, however, is: Person = Struct.new(:name, :age, :race) do; def hello; puts "Hello"; end; end
<Spooner> butblack, Since then you aren't creating a class just to be inherited from, but rather add other methods to a Struct.
Spooner has quit [Remote host closed the connection]
brian_000_ has quit [Client Quit]
interactionjaxsn has quit [Ping timeout: 256 seconds]
<joshu> another question about moving to production. I have dotenv and a .env file on my dev machine. When I move my finished script as a gem on the production server (ubuntu) should I drop the .env file and provide the env vars in the user shell profile?
LanaDelRey has joined #ruby
Squarepy has joined #ruby
brianherman has quit [Ping timeout: 245 seconds]
Spooner has joined #ruby
Inside_ has quit [Ping timeout: 264 seconds]
<jacktrick> I don't know what's best practice but I'd set them in my $HOME/.bash_profile
<jacktrick> I imagine it would be slightly more secure
Davey has joined #ruby
kindjal has joined #ruby
<jacktrick> can't accidentally add it to vcs and push it to github that way
dmiller has quit [Remote host closed the connection]
<joshu> jacktrick yeah I'm googling the subject now and getting different suggestions
<joshu> some suggest loading a yaml config file
mikewintermute has joined #ruby
LanaDelRey has quit [Ping timeout: 245 seconds]
lewis has joined #ruby
<jacktrick> I'd imagine it's mostly up to personal preference
marr has joined #ruby
<jacktrick> if you're packaging whatever you're doing as a gem it'd probably be more convenient to keep everything together, actually. Like if you change host, you can't just forget to add that stuff into your profile again. x:
<jacktrick> Follow your heart~ :D
sambao21 has joined #ruby
love_color_text has joined #ruby
<joshu> jacktrick hehe you know it's a constant battle between heart and mind ;)
monkegjinni has quit [Remote host closed the connection]
teddyp1cker has joined #ruby
LanaDelRey has joined #ruby
braoru has quit [Ping timeout: 260 seconds]
devoldmx3 has joined #ruby
infecto has joined #ruby
devoldmx has quit [Ping timeout: 248 seconds]
<joshu> when you move the contents of Gemfile to gemspecs what happens with groups? does gemspecs have this concept as well?
jasonkuhrt has joined #ruby
iamjarvo has quit [Quit: Leaving.]
egon1 has joined #ruby
interactionjaxsn has joined #ruby
haxrbyte has joined #ruby
BadDesign has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
sambao21 has quit [Quit: Computer has gone to sleep.]
Michael__ has quit [Remote host closed the connection]
Michael__ has joined #ruby
shadewind has joined #ruby
egon1 has quit [Remote host closed the connection]
jasonkuhrt has quit [Ping timeout: 240 seconds]
<shadewind> is it possible to call the superclass implementation of a method other than the current one?
BadDesign has joined #ruby
sambao21 has joined #ruby
<shadewind> I assume it's possible using reflection but I'm thinking if it's possible using some more conventional method
dmiller has joined #ruby
Michael__ has quit [Ping timeout: 256 seconds]
love_color_text has quit [Remote host closed the connection]
sventon has quit [Remote host closed the connection]
xerxas has quit [Quit: Connection closed for inactivity]
bradhe has joined #ruby
wu_lmao has quit [Ping timeout: 256 seconds]
Guga_ has quit [Quit: ~]
skattyadz has quit [Quit: skattyadz]
Kar- has quit [Remote host closed the connection]
danslo has quit [Quit: danslo]
jamesfung14 has quit [Ping timeout: 256 seconds]
bradhe has quit [Ping timeout: 246 seconds]
ArchBeOS has joined #ruby
ArchBeOS has quit [Changing host]
ArchBeOS has joined #ruby
s0ber_ has joined #ruby
leonidlm has joined #ruby
<joshu> when you write tests using minitest against a ruby script which has a lib/myscript.rb and bin/myscript. You are testing against the library and the binary is not involved in testing correct?
s0ber has quit [Ping timeout: 246 seconds]
s0ber_ is now known as s0ber
Astralum has quit [Read error: Connection reset by peer]
Astralum has joined #ruby
aedornm has joined #ruby
sambao21 has quit [Quit: Computer has gone to sleep.]
brendal has joined #ruby
timkohrumel has joined #ruby
phipes has joined #ruby
workmad3 has joined #ruby
jamesfung14 has joined #ruby
mguy has left #ruby [#ruby]
adambeynon has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
Michael__ has joined #ruby
monkegjinni has joined #ruby
ElderFain has joined #ruby
mmgg has joined #ruby
daniel_- has quit [Ping timeout: 256 seconds]
paszo2008 has left #ruby [#ruby]
mmgg has quit [Client Quit]
eploko has joined #ruby
timkohrumel has quit [Ping timeout: 276 seconds]
bionhart has joined #ruby
vlad_starkov has joined #ruby
pcarrier_ has quit [Quit: Computer has gone to sleep.]
jbpros has quit [Quit: jbpros]
bionhart has quit [Remote host closed the connection]
echevemaster has joined #ruby
jztech101_ has joined #ruby
b0oh has joined #ruby
TheFuzzball has quit [Read error: Operation timed out]
sambao21 has joined #ruby
Guga_ has joined #ruby
teddyp1cker has quit [Remote host closed the connection]
davetherat has quit [Remote host closed the connection]
davetherat has joined #ruby
<Spooner> joshu, bundler-parsed gemspecs only use :default and :development bundler groups
jonathanwallace has quit [Ping timeout: 264 seconds]
<joshu> Spooner so if I have a testing group what happens?
danslo has joined #ruby
<Spooner> No way to set a testing group via a gemspec, as far as I know.
ffio has quit [Quit: WeeChat 0.4.0]
emmanuelux has joined #ruby
eldariof has quit [Ping timeout: 246 seconds]
<Spooner> Just add testing stuff as a development dependency in the gemspec.
<Spooner> Since it isn't _required_ to run the gem normally.
Evixion` has joined #ruby
<Spooner> (gemspec just has #add_development_dependency and #add_dependency)
Evixion has quit [Ping timeout: 260 seconds]
eploko has quit [Ping timeout: 264 seconds]
eploko has joined #ruby
ArchBeOS has left #ruby ["Leaving"]
<joshu> Spooner so when you develop a gem the Gemfile just has require 'gem specs' and if you use say minitest which would be in the gem file's testing group, you would put at as a development dependency in the gemspec file?
jztech101_ has quit [Remote host closed the connection]
Guga_ has quit [Quit: ~]
sambao21 has quit [Quit: Computer has gone to sleep.]
gasbakid_ has quit [Ping timeout: 260 seconds]
Mon_Ouie has quit [Ping timeout: 252 seconds]
Mon_Ouie has joined #ruby
voidpirate has left #ruby [#ruby]
Ortuna has joined #ruby
<Spooner> No, the Gemfile just has "source 'https://rubygems.org\ngemspec\n"
<Spooner> No, the Gemfile just has "source 'https://rubygems.org'\ngemspec\n" (forgot a quote and I can't assume people can think while copyingpasting)
jonathanwallace has joined #ruby
<Spooner> But really, this is all pretty well documented and there are 100s of gems set up this way for you to look at.
danneu has joined #ruby
danneu has quit [Client Quit]
ephemerian has joined #ruby
eploko has quit [Ping timeout: 252 seconds]
<joshu> Spooner ok I've seen different variations thus my question
jacobbednarz has joined #ruby
<joshu> has dev and test groups in the gemfile and no dev dependencies in the gem spec file https://github.com/soffes/quesadilla/blob/master/quesadilla.gemspec
<Spooner> Well, lines 1-4 are all you actually need. You don't need the other stuff in groups really.
<joshu> maybe this is just a "bad" example
<Spooner> Yeah, I don't think that is a good example really.
eploko has joined #ruby
jimg has joined #ruby
takeru has joined #ruby
<joshu> Spooner ok what you would have done is put the test and dev group gems as dev dependencies in the gem specs file and that would be a "good example"
jimg has quit [Ping timeout: 245 seconds]
cofin has quit [Quit: cofin]
rippa has quit [Ping timeout: 240 seconds]
takeru has quit [Ping timeout: 260 seconds]
<shadewind> is there a way to load YAML safely in Ruby?
freerobby has quit [Quit: Leaving.]
arya has quit [Ping timeout: 252 seconds]
LyonJT has joined #ruby
LyonJT has quit [Client Quit]
jacobbednarz has quit [Read error: Connection reset by peer]
JZTech101 has joined #ruby
arya has joined #ruby
Michael__ has quit [Remote host closed the connection]
Michae___ has joined #ruby
mikewintermute has quit [Quit: mikewintermute]
<shadewind> havenwood: that wasn't very easy to find..
<shadewind> googling for "ruby yaml safe" yielded loads and loads of security vulnerability discussions with no hint of a solution
<havenwood> shadewind: It is a very new feature.
<shadewind> havenwood: 2.0?
vlad_starkov has quit [Remote host closed the connection]
Criztian has quit [Remote host closed the connection]
vlad_starkov has joined #ruby
graydot has quit [Quit: graydot]
vlad_sta_ has joined #ruby
arya has quit [Ping timeout: 264 seconds]
emmanuelux has quit [Ping timeout: 246 seconds]
ToApolytoXaos has quit [Quit: Leaving]
cj3kim has joined #ruby
|RicharD| has quit [Quit: Sto andando via]
Squarepy has quit [Quit: Leaving]
vlad_starkov has quit [Ping timeout: 256 seconds]
<havenwood> shadewind: There is a gem version as well: https://github.com/dtao/safe_yaml#readme
Davey has quit [Quit: Textual IRC Client: http://www.textualapp.com/]
vlad_sta_ has quit [Remote host closed the connection]
keppy has quit [Read error: Operation timed out]
arya has joined #ruby
cj3kim has quit [Ping timeout: 241 seconds]
banister`shop has joined #ruby
pcarrier_ has joined #ruby
b0oh has quit [Quit: Leaving.]
freerobby has joined #ruby
momomomomo has joined #ruby
arya has quit [Client Quit]
<shadewind> havenwood: however, I do have a case where I actually want to allow ruby objects but I'm trying to find out how this conversion is being done
<shadewind> havenwood: any pointers?
<banister`shop> can someone here help me with a basic css question?
<banister`shop> not the right channel, i know, but the relevant channels appear dead
cofin has joined #ruby
b0oh has joined #ruby
<workmad3> banister`shop: I might be able to
<banister`shop> ok cool
<banister`shop> i have two questions about this jsfiddle: 1. why can't i specify .b as 30% (if i do, it appears on the next line) 2. why is there a gap between the red and blue divs? http://jsfiddle.net/dYXZb/6/
b0oh has quit [Client Quit]
<banister`shop> workmad3: :)
<joshu> workmad3 hey
TheFuzzball has joined #ruby
<joshu> workmad3 remember the other day you suggested I convert the pdf to an image and try that in word
jacktrick has quit [Quit: Leaving]
<workmad3> banister`shop: ah, it'll be because of the nature of inline-block
<joshu> workmad3 well it took me an hour of trial and error and to my surprise I was able to add this annoying fields on top of the image in word and it was accepted by the fax provider service
<joshu> workmad3 so just wanted to say thanks ;)
<workmad3> banister`shop: and the fact the two divs have whitespace between them
<banister`shop> workmad3: ah ok...waht's the best way to have the two divs sitting snuggly side by side then, and being able to specify 70% for one and 30% for the other?
<workmad3> joshu: cool :)
<workmad3> banister`shop: you could float them
<workmad3> banister`shop: you could have them as table cells
Nisstyre-laptop has quit [Ping timeout: 245 seconds]
<brendal> banister`shop, to get rid of the mag set and and b float: left
<workmad3> banister`shop: or you could remove the whitespace separation between the elements in the source
<Spooner> Or give .b margin-left: -2%; width: 30%
kindjal has quit [Ping timeout: 246 seconds]
<Spooner> (though that is crazy)
<brendal> banister`shop, ignore that just set a and b to float: left
<workmad3> banister`shop: http://jsfiddle.net/dYXZb/14/
<banister`shop> thanks
<banister`shop> float works
Retistic has joined #ruby
<workmad3> banister`shop: also http://jsfiddle.net/dYXZb/16/
<Spooner> Unless you try on another browser (or browser version), in which case anything could happen. Gods, I hate web design :D
bionhart has joined #ruby
<banister`shop> i'm trying to understand how this works --- click 'about' and it slides out a div from the right, if you look at the html you can see the div on the left (#editors) gets set to 70% after 'about' is clicked, but it's 100% before: http://www.json-generator.com/
dash_ has quit [Quit: Time to beer :)]
pcarrier_ has quit [Ping timeout: 264 seconds]
<banister`shop> err the this* refers to the link at the end of that text
<banister`shop> but there's no float: left for those ivs
<banister`shop> divs*
kindjal has joined #ruby
<workmad3> banister`shop: they're absolutely positioned
<workmad3> banister`shop: the editors is absolutely positioned to left:0; top:0
<workmad3> banister`shop: and the container with the about in gets positioned absolutely to right:0; top:0
<workmad3> banister`shop: and then js sets the widths
arquebus has joined #ruby
Hanmac1 has joined #ruby
<workmad3> banister`shop: incidentally, the most cross-browser compatible (if you need to target back to IE6 sort of levels) would be either the absolute positioning in that json-generator link, or using floats
<banister`shop> workmad3: the widths just seem to be set at 70% for the #editors and 30% for teh about div though
<workmad3> banister`shop: yes
eploko has quit [Ping timeout: 256 seconds]
<banister`shop> so it does/doesn't need js to set the widths?
<workmad3> banister`shop: when you click the button, 'width:70%' is added to the editors div
<banister`shop> ah
<workmad3> banister`shop: and 'width:30%' is added to the about div
<workmad3> banister`shop: that bit is done with JS ;)
<banister`shop> workmad3: cool, so..if i set up the divs in my example to use absolute positioning instead and set the widths to 70% and 30% respectively it should work?
<banister`shop> let me try
bamdad has joined #ruby
<workmad3> banister`shop: in your example you'd need to set your container to have position:relative first
<banister`shop> workmad3: ah ok thx
<workmad3> banister`shop: e.g. http://jsfiddle.net/dYXZb/23/
moos3 has joined #ruby
<banister`shop> workmad3: works, thanks!
krainboltgreene has joined #ruby
Hanmac has quit [Ping timeout: 276 seconds]
bamdad has quit [Client Quit]
Davey has joined #ruby
bamdad has joined #ruby
<workmad3> banister`shop: beware though, if you make a mistake with absolute positioning you don't get the browser relaying things out and telling you
incorvia has joined #ruby
<workmad3> banister`shop: you just get containers that overlay each other
incorvia has quit [Read error: Connection reset by peer]
jds_ has quit [Remote host closed the connection]
<workmad3> banister`shop: e.g. http://jsfiddle.net/dYXZb/26/
<banister`shop> workmad3: haha this was another fix from ryanf on #pry http://jsfiddle.net/dYXZb/27/
colonolG1on has joined #ruby
<workmad3> banister`shop: that was my *first* fix :P
<banister`shop> oh
<banister`shop> sorry i missed it :P
<workmad3> banister`shop: http://jsfiddle.net/dYXZb/14/ ;)
<banister`shop> hehe
<banister`shop> my tab bar is full up with jsfiddle tabs right now hehe
<workmad3> :)
<workmad3> lots of fixes though ;)
<workmad3> right, I'm off to bed
<workmad3> out of power
kindjal has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
Speed has joined #ruby
krainboltgreene has quit [Client Quit]
daniel_- has joined #ruby
<banister`shop> workmad3: night, thanks :)
workmad3 has quit [Read error: Operation timed out]
colonolGron has quit [Ping timeout: 276 seconds]
mercwithamouth has quit [Ping timeout: 264 seconds]
eploko has joined #ruby
pcarrier_ has joined #ruby
Markvilla has joined #ruby
dambler has joined #ruby
LanaDelRey has quit [Quit: Leaving]
vlad_starkov has joined #ruby
infecto has quit [Quit: Leaving.]
bluehavana_ has quit [Quit: Connection closed for inactivity]
Davey has quit [Quit: Textual IRC Client: http://www.textualapp.com/]
vlad_starkov has quit [Remote host closed the connection]
infecto has joined #ruby
infecto has quit [Client Quit]
vlad_starkov has joined #ruby
codecop has quit [Remote host closed the connection]
Davey has joined #ruby
nowthatsamatt has quit [Quit: nowthatsamatt]
vlad_starkov has quit [Remote host closed the connection]
Opettaja has joined #ruby
BadDesign has quit [Read error: Connection reset by peer]
jimg has joined #ruby
<butblack> Quick question, can someone explain to me how this self works? https://gist.github.com/ebbflowgo/5691941
<butblack> you can call self on the new object?
bionhart has quit [Read error: Connection reset by peer]
bamdad has left #ruby [#ruby]
bionhart has joined #ruby
foo_ has joined #ruby
danneu has joined #ruby
unstable has joined #ruby
zigomir has quit [Ping timeout: 276 seconds]
<Xeago> butblack: self is referring to the module's scope
jimg has quit [Ping timeout: 252 seconds]
moos3 has quit [Quit: Computer has gone to sleep.]
alexmreis has joined #ruby
<butblack> Xeago: hmm i'll have to look into that
<butblack> Xeago: i just found this "When you see self in an instance method, it refers to the instance of the class in which the module is included."
<Xeago> no idea, apeiros_ PING!
devoldmx has joined #ruby
<butblack> so it seems like it does refer to the instance method person
<butblack> * the instance of the class
<apeiros_> pong?
moos3 has joined #ruby
<Xeago> aid butblack in my lack of knowledge
<apeiros_> oh
<apeiros_> what's unclear? yes, self references to the object in which's scope you are currently
<apeiros_> within class/module bodies, that's the class/module
<apeiros_> within methods, it's the object on which the method is called
<apeiros_> (aka receiver)
devoldmx3 has quit [Ping timeout: 256 seconds]
colonolGron has joined #ruby
leonidlm has quit [Read error: Operation timed out]
ia___ has quit [Quit: ia___]
dambler has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
<apeiros_> butblack: does that answer your question?
freerobby has quit [Quit: Leaving.]
JumpMast3r has joined #ruby
colonolG1on has quit [Ping timeout: 256 seconds]
kirun has quit [Quit: Client exiting]
echevemaster has quit [Ping timeout: 240 seconds]
dmiller has quit [Remote host closed the connection]
bsaboia_ has joined #ruby
moos3 has quit [Quit: Computer has gone to sleep.]
bigmac has joined #ruby
<joshu> so apeiros_ whatever I have in my dev group I should define as a dev dependency in the gem spec file?
keppy has joined #ruby
dmiller has joined #ruby
<apeiros_> yupp
<joshu> ok
<apeiros_> things you don't need to run your gem are development dependencies
<apeiros_> i.e., things you only need when you work *on* the gem, as opposed to work *with* the gem
<joshu> ok
foxiness has quit [Read error: No route to host]
eploko has quit [Quit: Z-z-zzz...]
<joshu> when running tests with minitest. you test against your library in my case lib/ffm.rb and not bin/ffm?
<apeiros_> yes
<apeiros_> the binary in the ideal case is just: MyThingy::CLI.run(ARGV)
<apeiros_> i.e., you can turn the executable part into a library too
<apeiros_> and that you can unit test
<joshu> ok in my case should I leave it as a binary?
danslo has quit [Quit: danslo]
danslo has joined #ruby
senayar has joined #ruby
ivanoats has joined #ruby
mikepack has quit [Remote host closed the connection]
Spooner has quit [Remote host closed the connection]
alexmreis has quit [Quit: Leaving.]
obs has quit [Quit: Saliendo]
RajPi has joined #ruby
forced_request has quit [Ping timeout: 252 seconds]
vlad_starkov has joined #ruby
keppy has quit [Ping timeout: 248 seconds]
RajPi has quit [Remote host closed the connection]
razi has joined #ruby
havenwood has quit [Remote host closed the connection]
Evixion has joined #ruby
shadewind has quit [Quit: Lost terminal]
brendal has quit [Quit: Leaving]
Evixion` has quit [Ping timeout: 240 seconds]
Retistic has quit [Quit: Retistic]
emmanuelux has joined #ruby
verto has joined #ruby
colonolGron has quit [Ping timeout: 246 seconds]
spider-mario has quit [Read error: Connection reset by peer]
RagingDave has quit [Quit: Ex-Chat]
bigmac has quit [Remote host closed the connection]
jjbohn has joined #ruby
monkegjinni has quit [Remote host closed the connection]
justsee has joined #ruby
krombr has joined #ruby
viszu has quit [Quit: Leaving.]
brianherman has joined #ruby
arubin has joined #ruby
kil0byte has quit [Ping timeout: 276 seconds]
yacks has joined #ruby
Dummies_freelanc has joined #ruby
<butblack> apeiros_: I understand the scope portion, you said "[self] within methods, [references] the object on which the method is called" so in my case it would be the new Person? https://gist.github.com/ebbflowgo/5691941
slash_nick has joined #ruby
slash_nick has joined #ruby
<apeiros_> butblack: you mean line 4?
<butblack> apeiros_: precisely
<apeiros_> on what object do you call the method `person`
<butblack> it's in rails, I use it in a view
<apeiros_> (remember that `foo(a,b,c)` is implicitly `self.foo(a,b,c)`)
Michae___ has quit [Remote host closed the connection]
johnkary has quit [Quit: @johnkary]
Michael has joined #ruby
<apeiros_> well, then `self` would be whatever is the self of/within that view in toplevel code
Michael is now known as Guest77954
<butblack> yeah.. I guess my real misunderstanding derives from the fact that I don't know what self in the view is
Xeago has quit [Remote host closed the connection]
<joshu> apeiros_ I have this in my binary lib_dir = File.expand_path('../../lib', __FILE__)
<joshu> $LOAD_PATH.unshift lib_dir if File.directory?(lib_dir) as you suggested. This enables my binary to load my library. Why is it that my test_helper.rb can load my library WITHOUT that load path defined?
kil0byte has joined #ruby
dmiller has quit [Remote host closed the connection]
<apeiros_> because you add the lib dir to it somewhere else
<apeiros_> iirc you had it in your Rakefile
<apeiros_> also note that the line is only needed when them gem is used without installing it (when it is installed, rubygems adds the lib dir)
<apeiros_> and even there you can avoid it by using `ruby -Ilib`
malcolmva has quit [Read error: Connection reset by peer]
malcolmva has joined #ruby
akells` has joined #ruby
Shirakawasuna has quit [Quit: Leaving]
<joshu> apeiros_ this is what I have in my rake file task, task.libs << 'test'
<joshu> task.pattern = "test/**/*_test.rb"
malcolmva has quit [Read error: Connection reset by peer]
malcolmva has joined #ruby
<joshu> aren't these two lines only concerned with the "test" folder?
<apeiros_> hm, right
<apeiros_> would have to take a look at the code then. but it's still "you somewhere add it"
jjbohn has quit [Quit: Leaving...]
Targen has joined #ruby
timmow has joined #ruby
<joshu> apeiros_ ok i've been searching to try and figure out why it was working but I can't find where I would be adding it
<joshu> is there a way when i run the rake test task to see how it is "finding" ffm.rb
jjbohn has joined #ruby
yacks has quit [Ping timeout: 260 seconds]
<joshu> this is my current test+helper.rb https://gist.github.com/anonymous/e5cc5201a877679c5f48
predator117 has joined #ruby
<joshu> apeiros_ ruby "magic"
havenwood has joined #ruby
lucianosousa has joined #ruby
Davey has quit [Quit: Computer has gone to sleep.]
bionhart has quit [Remote host closed the connection]
jjbohn has quit [Quit: Leaving...]
predator217 has quit [Ping timeout: 256 seconds]
<apeiros_> it doesn't happen there
<apeiros_> you run your tests via `rake test`, right?
<joshu> yeah
<apeiros_> you can put `p *$LOAD_PATH` as the first line in your Rakefile
<apeiros_> do you use rvm?
<joshu> rbenv
grnman has joined #ruby
timmow has quit [Remote host closed the connection]
<apeiros_> ok, don't know about rbenv
<apeiros_> anyway, with that piece of code, you can run `rake -T` and see whether the lib-dir is already loaded at the very start. if not, you can move it around and see, when it starts to appear.
<apeiros_> (for moving it around, I'd reduce it to only output true/false whether the dir is in, though)
joesavage has quit [Quit: Page closed]
Guest77954 has quit [Remote host closed the connection]
Guest32764 has joined #ruby
<Guest32764> !ciao
<Guest32764> !list
<Guest32764> list!
<joshu> apeiros_ very strange this
<Guest32764> ciao!
<apeiros_> Guest32764: stop spamming.
pcarrier_ has quit [Quit: Textual IRC Client: www.textualapp.com]
cherrypeel has joined #ruby
generali_ has joined #ruby
Spooner has joined #ruby
Guest32764 has left #ruby [#ruby]
<joshu> apeiros_ I think I've solved the mystery
<joshu> "Rake’s test task will automatically push lib into your path when your test unit tests."
butblack has quit [Quit: butblack]
<apeiros_> :)
<joshu> so that's why it works ;)
<joshu> I got to teach the teacher :P
snearch has joined #ruby
<matti> joshu: ;p
love_color_text has joined #ruby
<matti> joshu: You cannot teach apeiros_ anything.
<joshu> hey matti…hahaha
<apeiros_> oh, there's plenty I don't know
<matti> joshu: Its like Googling Google in Google. Causes space-time cont. distortion.
<apeiros_> scio nescio
love_color_text has quit [Remote host closed the connection]
<matti> apeiros_: :)
<joshu> apeiros_ Polish?
<matti> No.
lewis is now known as lewix
<joshu> Navi + Ruby?
<joshu> Navuby :P
<apeiros_> o0
<apeiros_> I'm swiss
johnkary has joined #ruby
<apeiros_> my nick is greek
<apeiros_> and `scio nescio` is latin
<apeiros_> I hope one of that answered your question ;-)
<joshu> ah one of the few languages I don't know
<joshu> hahaha
<matti> joshu: "I know that I know nothing
<matti> "
<joshu> matti deep
Targen has quit [Ping timeout: 246 seconds]
<matti> joshu: Its apeiros_