apeiros_ changed the topic of #ruby to: Ruby 2.1.2; 2.0.0-p481; 1.9.3-p545: http://ruby-lang.org || Paste >3 lines of text on http://gist.github.com || this channel is logged at http://irclog.whitequark.org, other public logging is prohibited
jcoglan has joined #ruby
iamjarvo has joined #ruby
<Deele> I am learning ruby, and I want to know, what is the fastest ruby can run a recursive loop? W
cndiv has quit [Ping timeout: 260 seconds]
<Deele> Will it be the same as speed of cpu tick, or milisecond or what?
<graft> Thanatermesis: care to post your yaml file?
<shevy> C is faster
<eam> Deele: you can benchmark it if you like, it will be substantially different in different environments
<Thanatermesis> graft, actually im using a dummy yaml for test, give me a second
<Thanatermesis> btw i found that until the line 7 seems to work
<Deele> I know, this is silly question, but I am planning to create specific analysis program, and I want it to be as close as possible to “live”
gsd has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
flowerhack has joined #ruby
<eam> much slower than a cpu tick
<Thanatermesis> if i print matchdata it shows "foo" or "foe" if i write one or other (but not the "fo(o|e)" entry itself
<waxjar> ruby isn't exactly the speediest language
<Thanatermesis> where it seems to be that the line 7 maybe dont print it because is not the same "key" than the full one to search, graft ?
<eam> much faster than a millisecond, though
pigram86 has quit [Remote host closed the connection]
senayar has quit []
lw has quit [Quit: s]
benzrf|offline is now known as benzrf
<Thanatermesis> so my yaml file can be something simple like this:
<Thanatermesis> ---
emmesswhy has quit [Quit: Leaving]
<Thanatermesis> fo(o|e): bar
<graft> yeah, so there's a logic problem there
<Deele> with which language, I can get as close as possible to cpu tick (AFAIK, that would be assembly language, but is too low level to work)
<waxjar> also, if your recursion goes "too deep" you'll get an exception
<graft> matchdata will return the match in your regex
<eam> >> iter = 10_000_000; n = Time.now; iter.times {}; (Time.now - n) / iter
<eval-in> eam => 8.379563629999999e-08 (https://eval.in/183129)
<waxjar> >> def x; x(); end; x()
<eval-in> waxjar => stack level too deep (SystemStackError) ... (https://eval.in/183130)
<graft> i.e., your regex is /fo(o|e)/, and your string is "foo", so the matchdata will be "foo"
<Thanatermesis> yeah, this is what it looks to do after to have played with print messages
<graft> then when you go back to lookup the matched string in your hash, it doesn't exist, because the hash key is actually "fo(o|e)"
caveat- has quit [Ping timeout: 260 seconds]
<Thanatermesis> that is
fold has joined #ruby
<eam> Deele: what will you be doing each loop iter?
mikeric has quit []
pigram86 has joined #ruby
terrell_t has joined #ruby
<graft> you can try something like: @keywords.each do |k,v| Regexp.new(k).match(m.message) do |r| m.reply v; end; end
<shevy> Deele just use C man
aspiers has joined #ruby
<eam> shevy: why do you hate on ruby
<shevy> I love ruby
<shevy> but he wants speed
<eam> ruby can be kinda fast
<Deele> shevy, I just did a quick search in google, and it says c++ is fastest
<graft> yeah, if you write a C module, ruby is fast
<shevy> perl is faster than ruby eam
<eam> graft: still pretty slow serializing and deserializing objects
shevy has quit [Read error: Connection reset by peer]
<waxjar> Deele: maybe python would work, they have fast statistics libraries
shevy has joined #ruby
<shevy> damn it
<eam> shevy: of course perl is faster and better
<shevy> peer kicked me
<eam> doesn't mean you have to hate on ruby though
bmurt has joined #ruby
<shevy> perl is line noise turned into code
<graft> perl is faster, it's not better
<shevy> but the future is almost ready
<shevy> perl SIX
<shevy> yeah, that is annoying that perl is faster
<eam> a lot faster
andrewjanssen has quit [Quit: Leaving...]
mary5030 has joined #ruby
<eam> (to develop in)
rezzack1 has joined #ruby
<Thanatermesis> graft, thanks, this seems to work :), btw do you see any reason that i should keep something from the old code ? (its a cinch-bot plugin to answer from keywords, but it not worked as how i wanted)
lw has joined #ruby
terrellt has quit [Ping timeout: 255 seconds]
<Thanatermesis> i mean, any reason to have all those other calls ?
sepp2k has quit [Ping timeout: 255 seconds]
<graft> Thanatermesis: i have no idea why you had that sort step in there, but that might be useful to you, maybe
sepp2k has joined #ruby
rezzack has quit [Ping timeout: 260 seconds]
cpruitt has quit [Quit: cpruitt]
terrell_t has quit [Ping timeout: 250 seconds]
<Thanatermesis> graft, this is the full code of the plugin, this part is in line 56 https://github.com/Thanatermesis/keyra-bot/blob/master/bot/plugins/yamlkeywords.rb
philcrissman has joined #ruby
ndrei has joined #ruby
ndrei has quit [Remote host closed the connection]
bthesorceror has quit [Quit: bthesorceror]
awc737 has joined #ruby
<awc737> !ping
<Thanatermesis> awc737, pong
<awc737> thanks
mary5030 has quit [Ping timeout: 240 seconds]
descala has quit [Read error: Connection reset by peer]
agent_white has joined #ruby
hooper has quit [Ping timeout: 264 seconds]
lw has quit [Client Quit]
x1337807x has joined #ruby
fabrice31 has joined #ruby
mrsolo_ has quit [Quit: Leaving]
moritzschaefer has quit [Ping timeout: 240 seconds]
nectarys has joined #ruby
spastorino has quit [Quit: Connection closed for inactivity]
pigram86 has quit [Remote host closed the connection]
jkline has quit [Quit: jkline]
nectarys_ has joined #ruby
nectarys_ has quit [Client Quit]
philcrissman has quit [Ping timeout: 250 seconds]
pigram86 has joined #ruby
emmesswhy has joined #ruby
snath has quit [Ping timeout: 264 seconds]
jkline has joined #ruby
havenwood has quit [Remote host closed the connection]
havenwood has joined #ruby
rjhunter has quit [Remote host closed the connection]
fabrice31 has quit [Ping timeout: 260 seconds]
pigram86 has quit [Ping timeout: 245 seconds]
Takle has quit [Remote host closed the connection]
<Thanatermesis> i have recently learned ruby from a book, and i found it a very nice language (except for the hard to type #{combos} & others), but now that im playing a bit with it looks like it is so big that i feel entirely lost, how do you guys deal with it?
advorak has quit [Quit: Ex-Chat]
djcp has quit [Quit: WeeChat 0.4.3]
<mozzarella> what do you mean so big?
snath has joined #ruby
jkline has quit [Ping timeout: 264 seconds]
patric100e99 has joined #ruby
havenwood has quit [Ping timeout: 264 seconds]
alexju has quit [Remote host closed the connection]
caveat- has joined #ruby
sparrovv has joined #ruby
oo_ has joined #ruby
Wolland_ has joined #ruby
rjhunter has joined #ruby
<Thanatermesis> i mean, there's a ton of different things and different ways to do things, a ton of standard libs with full of options too
<eam> Thanatermesis: read the docs constantly. break big things up into small things
<waxjar> you don't learn them by heart, you learn to read the documentation quickly
<eam> in some languages you do learn the interface by heart, but ruby isn't one of those languages
ffranz has quit [Quit: Leaving]
<Thanatermesis> i assume that my biggest problem then is my lack of time to play with it
Wolland has quit [Ping timeout: 264 seconds]
Takle has joined #ruby
britneywright has joined #ruby
patric100e99 has quit [Ping timeout: 255 seconds]
sparrovv has quit [Ping timeout: 260 seconds]
bthesorceror has joined #ruby
x1337807x has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
kies has joined #ruby
AlexRussia has joined #ruby
mmus has quit [Ping timeout: 264 seconds]
bricker`work has quit [Ping timeout: 260 seconds]
oo_ has quit [Remote host closed the connection]
oo_ has joined #ruby
jailbot has joined #ruby
saarinen has quit [Quit: saarinen]
jailbot has left #ruby ["keep cool, stay in school"]
rubytor has quit [Quit: No Ping reply in 180 seconds.]
rubytor has joined #ruby
lw has joined #ruby
PanPan has joined #ruby
caveat- has quit [Ping timeout: 240 seconds]
dorei has quit []
skolman_ has quit [Remote host closed the connection]
lw has quit [Client Quit]
duggiefresh has joined #ruby
jfutbol has joined #ruby
emmesswhy has quit [Quit: This computer has gone to sleep]
caveat- has joined #ruby
oo_ has quit [Remote host closed the connection]
echooo has joined #ruby
goleldar has quit [Remote host closed the connection]
dkamioka has quit [Remote host closed the connection]
jfutbol has quit [Ping timeout: 255 seconds]
maniacal_ has quit [Remote host closed the connection]
testcore has quit [Quit: Grab life by the BitchX]
oo_ has joined #ruby
rubytor has quit [Quit: No Ping reply in 180 seconds.]
oo_ has quit [Remote host closed the connection]
oo_ has joined #ruby
rubytor has joined #ruby
mmus has joined #ruby
Sgeo has joined #ruby
RandyT has quit [Ping timeout: 272 seconds]
aspires has quit []
mikeg has joined #ruby
RandyT has joined #ruby
rubytor has quit [Ping timeout: 240 seconds]
axsuul has quit [Ping timeout: 260 seconds]
Guest84585 has quit [Ping timeout: 245 seconds]
RealMarc has joined #ruby
nectarys has quit [Remote host closed the connection]
sevenseacat has joined #ruby
sylvanica has joined #ruby
michaeldeol has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
pietr0 has joined #ruby
jshultz has quit [Quit: Connection closed for inactivity]
nectarys has joined #ruby
emocakes__ has joined #ruby
caveat- has quit [Ping timeout: 250 seconds]
agrinb has joined #ruby
blackmes1 has quit [Ping timeout: 260 seconds]
rikai has joined #ruby
tkuchiki has joined #ruby
emmesswhy has joined #ruby
emocakes has quit [Ping timeout: 245 seconds]
x1337807x has joined #ruby
omosoj has quit [Quit: Leaving]
pietr0 has quit [Quit: pietr0]
x1337807x has quit [Client Quit]
charliesome has joined #ruby
Takle has quit [Remote host closed the connection]
dblessing has joined #ruby
awc737 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
rmillerx has joined #ruby
yetanotherdave has quit [Ping timeout: 240 seconds]
Azzurrio has joined #ruby
cndiv has joined #ruby
brothmars has quit [Ping timeout: 250 seconds]
cndiv has quit [Client Quit]
emmesswhy has quit [Ping timeout: 245 seconds]
brothmars has joined #ruby
cndiv has joined #ruby
nanoyak has quit [Quit: Computer has gone to sleep.]
emmesswhy has joined #ruby
caveat- has joined #ruby
djbkd has quit [Quit: My people need me...]
ctp has joined #ruby
tlarevo has joined #ruby
crus has joined #ruby
nectarys has quit [Quit: Ex-Chat]
bearish has joined #ruby
skolman_ has joined #ruby
echevemaster has joined #ruby
manolo_ has quit [Ping timeout: 272 seconds]
nectarys has joined #ruby
phutchin1 has quit [Ping timeout: 255 seconds]
bearish has quit [Ping timeout: 245 seconds]
bmurt has quit []
caveat- has quit [Ping timeout: 240 seconds]
nifty has joined #ruby
echevemaster has quit [Ping timeout: 240 seconds]
Cort3z has joined #ruby
<benzrf> ruby is a terribly complicated language
<benzrf> im sorry
<benzrf> this is not wher eto come for simple languages
philcrissman has joined #ruby
gsd has joined #ruby
britneywright has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
bthesorceror has quit [Quit: bthesorceror]
davedev24_ has quit [Read error: Connection reset by peer]
davedev24_ has joined #ruby
skolman_ has quit [Remote host closed the connection]
Cort3z has quit [Ping timeout: 264 seconds]
_lexjm has joined #ruby
bthesorceror has joined #ruby
philcrissman has quit [Ping timeout: 255 seconds]
davedev24_ has quit [Client Quit]
lmickh has joined #ruby
mikeg has quit [Remote host closed the connection]
alexju has joined #ruby
Guest79971 has quit [Quit: Lingo - http://www.lingoirc.com]
oo_ has quit [Remote host closed the connection]
Zenigor has joined #ruby
oo_ has joined #ruby
earthquake has joined #ruby
robbyoconnor has joined #ruby
nfk has joined #ruby
caveat- has joined #ruby
bradleyp_ has quit [Ping timeout: 240 seconds]
nobitanobi has joined #ruby
Channel6 has joined #ruby
Takle has joined #ruby
skolman has joined #ruby
brothmars has quit [Ping timeout: 264 seconds]
brothmars has joined #ruby
oo_ has quit [Ping timeout: 255 seconds]
skolma___ has joined #ruby
lw has joined #ruby
havenwood has joined #ruby
geggam has quit [Remote host closed the connection]
d4nk has quit []
tokik has joined #ruby
skolman has quit [Ping timeout: 255 seconds]
optiz0r has quit [Ping timeout: 240 seconds]
wald0_ has joined #ruby
wald0_ has quit [Client Quit]
britneywright has joined #ruby
axsuul has joined #ruby
Cheezebox has joined #ruby
awc737 has joined #ruby
Lewoco has joined #ruby
Avahey_ has joined #ruby
caveat- has quit [Ping timeout: 240 seconds]
<Lewoco> With pry how do I change into the parent scope?
Takle has quit [Ping timeout: 240 seconds]
jhass is now known as jhass|off
dblessing has quit [Quit: dblessing]
spyderman4g63 has joined #ruby
<Lewoco> I can change into and out of objects with 'cd' but trying to go to the parent scope (as per pry-backtrace) using 'cd ..' just doesn't seem to do anything...?
bklane has quit [Quit: Leaving...]
mikepack has joined #ruby
volk_ has joined #ruby
<volk_> has anybody ever had any problems with heroku not running any of the rails validations
niklasb has quit [Ping timeout: 245 seconds]
<sevenseacat> volk_: you still havent provided enough information to debug the problem.
<sevenseacat> and cross-posting is frowned upon.
sleepee has joined #ruby
caveat- has joined #ruby
<volk_> i posted everywhere and im kind of desperate so thats why im posting here
<volk_> the problem is in my development environment, my rails validations work just fine. however when i push them up to heroku, none of the work . i can just do User.create and it will persist a user with all nil values.
<volk_> no idea what in the shit is going on
oo_ has joined #ruby
<sevenseacat> did you push the code with your validations in it?
moted has quit []
<volk_> yes i did
<volk_> i even destroyed the heroku app and made a new and re-pushed
<volk_> this makes 0 sense unless im doing something wrong in my production environment file
<wallerdev> try pushing a different change to your site unrelated to validations
<wallerdev> and seeing if that shows up
<wallerdev> nothing special about validations vs any other type of code, unless your validations arent doing the work and its your db thats erroring
<sevenseacat> you probably havent commited the code with your changes, or you're pushing a different branch than the one you commited them to
bthesorceror has quit [Quit: bthesorceror]
saarinen has joined #ruby
joway has joined #ruby
volk__ has joined #ruby
joway has left #ruby [#ruby]
volk_ has quit [Ping timeout: 272 seconds]
volk__ is now known as volk_
lw has quit [Quit: s]
joway has joined #ruby
joway has left #ruby [#ruby]
<Thanatermesis> i have a piece of code that requires a password, so i have set it in an external ruby file, but how i "include" (get?) the file contents in a specific place of my ruby code?
bthesorceror has joined #ruby
wallerdev has quit [Quit: wallerdev]
<Nowaker> Thanatermesis: can you explain more?
<hakunin> grr, never can quite get the Process.spawn call right. Could someone tell me what's wring with this? Process.spawn(env, words, out: wout, err: werr) ? env is a hash with {'foo' => 'bar'} and words is a array of command parts, wout and werr are pipe ends
<Nowaker> password in an external ruby file? i don't quite understand
<hakunin> error i'm getting is: "wrong first argument"
<Nowaker> Thanatermesis: oh, you want a variable that is defined in a separate ruby file?
spyderman4g63 has quit [Ping timeout: 240 seconds]
nectarys has quit [Read error: Connection reset by peer]
<Nowaker> $var = 'value'
<Nowaker> then you can reference $var from any place
<Nowaker> however, you should go for yaml file, not a ruby file with global var definition I believe
starless has joined #ruby
hooper has joined #ruby
Fezzler has joined #ruby
hamakn has joined #ruby
<hakunin> I also tried Process.spawn(env, *words, out: wout, err:werr), and Process.spawn(env, words.join(' '), out: wout, err: werr), in the last case i get "no implicit conversion of hash into string"
<Thanatermesis> mmh, ok let me see
optiz0r has joined #ruby
<hakunin> in both of these actually
AlexRussia has quit [Ping timeout: 272 seconds]
echevemaster has joined #ruby
<Nowaker> gotta have some sleep, bye
fabrice31 has joined #ruby
<hakunin> i think i see what i'm doing wrong, and it's not in here…
<havenwood> Thanatermesis: Maybe consider using an environment variable?
pigram86 has joined #ruby
benlieb has joined #ruby
sinkensabe has joined #ruby
<havenwood> Thanatermesis: If you want to write a small String to a File, File.write and File.read.
dseitz has joined #ruby
meowington has joined #ruby
<havenwood> Thanatermesis: For more complicated stuff you can always serialize with YAML, JSON, Marshal, or the like. Or there's YAML::Store for YAML or PStore for Marshal if you want to transactionally serialize and store to disk.
DEA7TH has joined #ruby
DEA7TH has quit [Changing host]
DEA7TH has joined #ruby
<havenwood> Thanatermesis: Though I'd suggest keeping it as simple as possible. ;)
fabrice31 has quit [Ping timeout: 260 seconds]
<havenwood> Thanatermesis: Maybe an env var will suffice?: ENV['YOUR_APP_PASSWORD']
pigram86 has quit [Ping timeout: 255 seconds]
hooper has quit [Quit: Leaving.]
<Thanatermesis> i think that i have done it in yaml :)
sinkensabe has quit [Ping timeout: 240 seconds]
<meowington> yo so if Im a complete greenhorn where do I got to learn Ruby... for free?
<meowington> like "Ruby for Greenhorns without any cash"
ixti has quit [Quit: WeeChat 0.4.3]
<havenwood> meowington: Maybe start with: http://tryruby.org
jrhe_ has quit [Quit: Connection closed for inactivity]
<sevenseacat> surely you would want the best resources if youre serious, regardless of price
<havenwood> meowington: Some good options here: https://www.ruby-lang.org/en/documentation/
<sevenseacat> really dislike that 'i only want it if its free' mentality
lazyguru has joined #ruby
<benlieb> I've just made a nested extended class (which works) but now there is a name conflict when I try to access my model of the same name (Lesson) app/models/lesson.rb LoadError: Expected ..../lib/resource/lesson.rb to define Lesson
<benlieb> Can anyone straighten me out?
atraylen has quit [Ping timeout: 260 seconds]
bthesorceror has quit [Quit: bthesorceror]
starless has quit [Quit: Leaving]
<havenwood> benlieb: i think you're inheriting from Resource::Resource::Base
BombStrike is now known as bomb
AlexRussia has joined #ruby
wallerdev has joined #ruby
pigram86 has joined #ruby
deric_skibotn has quit [Ping timeout: 240 seconds]
rmillerx has quit [Quit: rmillerx]
volk_ has quit [Ping timeout: 240 seconds]
pigram86 has quit [Remote host closed the connection]
pigram86_ has joined #ruby
volk_ has joined #ruby
bomb is now known as BombStrike
<benlieb> havenwood: so I should remove the Resource from < Resource::Base?
mikepack has quit [Remote host closed the connection]
meowington is now known as longneckbeard
voodoofish has quit [Read error: Connection reset by peer]
<benlieb> that doesn't seem to help
voodoofish has joined #ruby
<havenwood> benlieb: i was thinking: Lesson < Base
<havenwood> benlieb: but not sure i'm thinking straight, got too multitasked, sec
<benlieb> havenwood: right, I tried that and no dice
voodoofish has quit [Read error: Connection reset by peer]
freerobby has joined #ruby
_lexjm has quit [Ping timeout: 255 seconds]
Spami has quit [Quit: This computer has gone to sleep]
<havenwood> benlieb: to be sure, maybe try: ::Resource::Base
nobitanobi has quit [Remote host closed the connection]
siwica has joined #ruby
<benlieb> nope
<siwica> what is the rails irc channel?
<benlieb> I think the problem may be in my file name: lib/resource/lesson.rb
skolma___ has quit [Remote host closed the connection]
voodoofish has joined #ruby
Lewoco has quit [Read error: Connection reset by peer]
<sevenseacat> siwica: #rubyonrails
shevy has quit [Read error: Connection reset by peer]
<benlieb> should that be different
<siwica> thx
<havenwood> benlieb: require_relative or setup $LOAD_PATH for require to work
<havenwood> benlieb: you didn't show the require in the code example
<benlieb> havenwood: the files are getting required
<havenwood> ah
<benlieb> havenwood: it's a rails app, and it's configured to load lib/**
<havenwood> benlieb: i don't see an issue, how're you testing it?
<havenwood> benlieb: maybe it's your test that is failing :P
<havenwood> benlieb: maybe try #rubyonrails
<benlieb> havenwood: hm, I tried ruby, because i thought it would be a ruby thing, but maybe rails would be better.
sparrovv has joined #ruby
Zenigor has quit [Remote host closed the connection]
patric100e99 has joined #ruby
<havenwood> benlieb: Trying a quick example derived from your gist, everything works fine in Pry.
emmesswhy has quit [Read error: Connection reset by peer]
rmillerx has joined #ruby
sea_local has quit [Remote host closed the connection]
tectonic has joined #ruby
gsd has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
sea_local has joined #ruby
britneywright has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Fezzler has quit [Quit: Leaving]
pontiki has quit [Quit: "Poets have been mysteriously silent on the subject of cheese." -- G.K.Chesterson]
balazs has joined #ruby
davedev24_ has joined #ruby
saarinen has quit [Quit: saarinen]
sparrovv has quit [Ping timeout: 245 seconds]
rmillerx has quit [Client Quit]
patric100e99 has quit [Ping timeout: 240 seconds]
saarinen has joined #ruby
jack_rabbit has joined #ruby
mikesplain has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
sea_local has quit [Ping timeout: 260 seconds]
tlarevo_ has joined #ruby
<zenspider> benlieb: are you defining your own Resource::Base?
<benlieb> zenspider: yes, that's the first file
<zenspider> can you not call it base?
voodoofish has quit [Quit: Leaving.]
gsd has joined #ruby
pu22l3r has quit [Read error: Connection reset by peer]
pu22l3r has joined #ruby
tlarevo has quit [Ping timeout: 240 seconds]
<zenspider> put `p defined? Resource::Base` above lesson
voodoofish has joined #ruby
radic has quit [Disconnected by services]
radic_ has joined #ruby
michaeldeol has joined #ruby
sepp2k has quit [Read error: Connection reset by peer]
hooper has joined #ruby
alvaro_o has quit [Quit: Ex-Chat]
emmesswhy has joined #ruby
pu22l3r has quit [Ping timeout: 272 seconds]
shevy has joined #ruby
pu22l3r has joined #ruby
pizzahead has joined #ruby
emmesswhy has quit [Client Quit]
asteve has joined #ruby
<pizzahead> I'm really confused. I thought I could set a variable , manipulate it in a function or iteration and then use that manipulated value outside of the block.
<zenspider> pizzahead: you're using a lot of terms there
longneckbeard has left #ruby [#ruby]
<zenspider> what block?
bmurt has joined #ruby
zorak8 has quit [Ping timeout: 260 seconds]
GriffinHeart has joined #ruby
tlarevo has joined #ruby
balazs has quit [Ping timeout: 255 seconds]
tlarevo_ has quit [Ping timeout: 246 seconds]
davispuh has quit [Ping timeout: 245 seconds]
passcod has joined #ruby
kenneth has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<zenspider> sometimes I just love helping people in IRC...
<zenspider> then there's ppl like pizzahead.
bjz has quit [Ping timeout: 260 seconds]
iamjarvo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<sevenseacat> zenspider: theres a lot of those kind of people.
kriskropd has joined #ruby
<volk_> wallerdev: wanna know what the issue was?
<sevenseacat> luckily, there are some good ones who aren't actively avoiding the help they seek, too.
<volk_> for the “validations” not working
<wallerdev> oh
<wallerdev> feel free to share
<wallerdev> im home now though sooo not even paying attention to irc lol
<volk_> im an idiot and didnt create the unique indices in mongoid … so nothing was being thrown as im not using legitimate validations
<volk_> in mongo*
<wallerdev> ahh
<sevenseacat> what
klmlfl has quit [Remote host closed the connection]
<wallerdev> mongodb
<wallerdev> lol
<sevenseacat> so your validations werent working because you didnt actually write any?
<wallerdev> lolol
<volk_> im doing index({:user_id => 1}, { :unqiue => true)}
klmlfl has joined #ruby
<volk_> and didnt actually run the rake:index etc
<sevenseacat> thats not a validation
<volk_> and yeah i didnt actually have any, thats how late
<volk_> it is
<volk_> and how tired i am
<volk_> i thought i had validations (literally just assumed )
<volk_> anyway , with this i leave you all
<pizzahead> zenspider: hey I'm so sorry!
<pizzahead> zenspider: baby....
volk_ has quit [Quit: volk_]
Azzurrio has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
lmello has joined #ruby
skolman_ has joined #ruby
klmlfl has quit [Ping timeout: 260 seconds]
axilla has quit [Ping timeout: 245 seconds]
zorak8 has joined #ruby
meinside has joined #ruby
lemur has joined #ruby
<pizzahead> zenspider: so I'm trying to do something like this http://pastebin.com/71HTGpCd
<pizzahead> I had thought that because I defined id at the top I would be able to reassign it in the block but I get the original value of 0 while in the block I get the value from the table
Jameser has joined #ruby
<pizzahead> and please tell me if I'm attempting this completely wrong
balazs has joined #ruby
manolo has joined #ruby
jcoglan has quit [Quit: jcoglan]
<pizzahead> I feel like I am by iterating over user because of the way I'm assigning it. Feels weird because I just want an integer and not an array.
gsd has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
bearish has joined #ruby
sleepee has quit [Quit: Leaving]
agrinb has quit [Read error: Connection reset by peer]
braincrash has quit [Quit: bye bye]
GinoMan has joined #ruby
agrinb has joined #ruby
bearish has quit [Ping timeout: 250 seconds]
lw has joined #ruby
bradleyprice has joined #ruby
jack_rabbit has quit [Ping timeout: 272 seconds]
<zenspider> pizzahead: there's nothing wrong with that code. reassigning id inside the block will affect the value of id out of the block.
braincrash has joined #ruby
<pizzahead> zenspider: I was setting it manually inside the block and on the outside it kept printing the original value of 0
spastorino has joined #ruby
philcrissman has joined #ruby
lw has quit [Client Quit]
sea_local has joined #ruby
hooper has quit [Quit: Leaving.]
agent_white has quit [Quit: leaving]
InhalingPixels has quit []
philcrissman has quit [Ping timeout: 240 seconds]
earthquake has quit [Quit: earthquake]
cndiv has quit [Ping timeout: 240 seconds]
Neo-- has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Lewix has quit [Remote host closed the connection]
CaptainJet has quit []
jerikl has joined #ruby
Lewix has joined #ruby
slawrence00 has quit [Quit: Textual IRC Client: www.textualapp.com]
Cort3z has joined #ruby
bmurt has quit []
juz88 has joined #ruby
linojon has quit [Quit: linojon]
tlarevo has quit [Remote host closed the connection]
Cort3z has quit [Ping timeout: 264 seconds]
tlarevo has joined #ruby
nfk has quit [Quit: yawn]
tlarevo has quit [Remote host closed the connection]
tlarevo has joined #ruby
<passcod> I have a weird issue where ERB/Erubis (both have the same behaviour) won't output anything. Worse, it seems execution of the script just stops silently (if I have an instruction below the call to "template.result", it never gets called.) I'm finding it hard to debug that, given this behaviour. Would anyone have any pointers?
<sevenseacat> do we have to guess what code you have that displays the problem?
duggiefresh has quit []
kenneth has joined #ruby
davedev2_ has joined #ruby
davedev24_ has quit [Ping timeout: 240 seconds]
tlarevo has quit [Remote host closed the connection]
kies has quit [Ping timeout: 240 seconds]
tlarevo has joined #ruby
lw has joined #ruby
saarinen has quit [Quit: saarinen]
<passcod> sevenseacat: no. I wasn't expecting an immediate answer. https://github.com/passcod/docker-rproxy/tree/somethings-wrong I run this using `ruby rproxy.rb`.
kyote has joined #ruby
Xiti` has quit [Quit: Leaving]
<benzrf> every language should have algebraic data types and pattern matching
Cheezebox has quit [Remote host closed the connection]
saarinen has joined #ruby
tlarevo has quit [Ping timeout: 260 seconds]
mattmcclure has quit [Quit: Connection closed for inactivity]
oo_ has quit [Remote host closed the connection]
froggy__ has joined #ruby
Xiti has joined #ruby
emocakes__ has quit [Ping timeout: 255 seconds]
davedev2_ has quit [Ping timeout: 240 seconds]
froggy_ has quit [Ping timeout: 240 seconds]
krz has joined #ruby
emmesswhy has joined #ruby
arup_r has joined #ruby
cndiv has joined #ruby
arup_r has quit [Remote host closed the connection]
davedev24_ has joined #ruby
kies has joined #ruby
InhalingPixels has joined #ruby
benlieb has quit [Quit: benlieb]
Cheezebox has joined #ruby
krz has quit [Quit: WeeChat 1.0]
lemur has quit [Remote host closed the connection]
krz has joined #ruby
lemur has joined #ruby
krz has quit [Client Quit]
krz has joined #ruby
davedev24_ has quit [Ping timeout: 240 seconds]
lmello has quit [Quit: Leaving.]
InhalingPixels has quit []
razum2um has joined #ruby
davedev24_ has joined #ruby
lemur has quit [Ping timeout: 240 seconds]
lemur has joined #ruby
sea_local has quit [Ping timeout: 272 seconds]
brothmars has quit [Read error: Connection reset by peer]
brothmars has joined #ruby
sea_local has joined #ruby
juz88 has quit [Ping timeout: 260 seconds]
fabrice31 has joined #ruby
koderok has joined #ruby
Soliah has joined #ruby
Avahey_ has quit [Quit: Connection closed for inactivity]
Cheezebox has quit [Remote host closed the connection]
thomasxie has joined #ruby
davedev24_ has quit [Ping timeout: 255 seconds]
davedev24_ has joined #ruby
KnightArmament0 has joined #ruby
KnightArmament0 has quit [Max SendQ exceeded]
fabrice31 has quit [Ping timeout: 250 seconds]
KnightArmament0 has joined #ruby
lemur has quit [Ping timeout: 245 seconds]
KnightArmament0 has quit [Client Quit]
KnightArmament0 has joined #ruby
Iconate has joined #ruby
davedev24_ has quit [Ping timeout: 245 seconds]
<Iconate> How can I repeat a string say "abc" to a maximum of 10 characters so the result would be "abcabcabca"
KnightArmament0 has quit [Client Quit]
bearish has joined #ruby
<Iconate> in 1 line
<Iconate> ish
banjara has joined #ruby
kenneth has quit [Ping timeout: 240 seconds]
infinitone has quit [Ping timeout: 245 seconds]
duncannz has joined #ruby
davedev24_ has joined #ruby
bearish has quit [Ping timeout: 255 seconds]
oo_ has joined #ruby
krz has quit [Read error: Connection reset by peer]
<passcod> Iconate: naively, I would do something like this: s="abc";(10/s.length+1).times.map{s}.join[0..9]
kenneth has joined #ruby
krz has joined #ruby
agent_white has joined #ruby
<Iconate> ty very similar to mine, just curious of other ways: ("abc" * 10).slice!(0..9)
lxsameer has joined #ruby
JohnBat26 has joined #ruby
<passcod> Iconate: There's this: s="";loop{s+="abc";break if s.length > 9};s[0..9]
<havenwood> >> cycle = %w[a b c].cycle; cycle.first(10).join
<eval-in> havenwood => "abcabcabca" (https://eval.in/183152)
<passcod> oh, nice
krz has quit [Client Quit]
<mozzarella> >> 'abc'.chars.cycle.first(10).join
<eval-in> mozzarella => "abcabcabca" (https://eval.in/183153)
krz has joined #ruby
lidaaa has joined #ruby
klmlfl has joined #ruby
armanghassemi_ has quit [Quit: This computer has gone to sleep]
oo_ has quit [Ping timeout: 272 seconds]
dseitz has quit [Quit: Textual IRC Client: www.textualapp.com]
krz has quit [Client Quit]
agrinb has quit [Remote host closed the connection]
niklasb has joined #ruby
SCHAAP137 has quit [Remote host closed the connection]
pu22l3r has quit [Remote host closed the connection]
SilkFox_ has joined #ruby
benzrf is now known as benzrf|offline
asteve has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
djbkd has joined #ruby
craigp has joined #ruby
brothmars has quit [Ping timeout: 272 seconds]
goshdarnyou is now known as goshdragon
Cort3z has joined #ruby
hooper has joined #ruby
krz has joined #ruby
nobitanobi has joined #ruby
iamjarvo has joined #ruby
Iconate has left #ruby [#ruby]
manolo has quit [Ping timeout: 246 seconds]
manolo has joined #ruby
jerikl has quit [Quit: jerikl]
nobitanobi has quit [Read error: No route to host]
Cort3z has quit [Ping timeout: 255 seconds]
nobitanobi has joined #ruby
sea_local has quit [Ping timeout: 245 seconds]
sea_local has joined #ruby
krz has quit [Client Quit]
<zenspider> pizzahead: as I said, there is nothing wrong with that code. It does what it is supposed to do. Proof: https://gist.github.com/99e7946d91d7335594bf
Lewix has quit [Remote host closed the connection]
krz has joined #ruby
mityaz has joined #ruby
mockra_ has joined #ruby
krz has quit [Client Quit]
brothmars has joined #ruby
patric100e99 has joined #ruby
Scsilver has joined #ruby
anaeem1 has joined #ruby
nobitanobi has quit [Ping timeout: 240 seconds]
manolo has quit [Ping timeout: 240 seconds]
krz has joined #ruby
anaeem1 has quit [Client Quit]
mockra has quit [Ping timeout: 240 seconds]
krz has quit [Client Quit]
icebourg has joined #ruby
patric100e99 has quit [Ping timeout: 240 seconds]
koderok has quit [Quit: koderok]
krz has joined #ruby
bthesorceror has joined #ruby
koderok has joined #ruby
JBreit has left #ruby ["Leaving"]
Wolland has joined #ruby
lw has quit [Quit: s]
<pizzahead> zenspider: sorry to waste your time with the newb question. thanks for the reply. I think I had a misunderstanding that my output was different and to test I created a function where I did a similar thing with trying to redefine id. I understand now that in that case it would be an instance variable.
<pizzahead> miah: thanks
mr-foobar has quit [Quit: Leaving...]
ssvo_ has joined #ruby
Wolland_ has quit [Ping timeout: 272 seconds]
ssvo has quit [Read error: Connection reset by peer]
mityaz has quit [Quit: See ya!]
<miah> i think getting variable scope and such right mentally is one of the harder things of programming
manolo has joined #ruby
michaeldeol has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
icebourg has quit []
Spami has joined #ruby
manolo has quit [Client Quit]
<zenspider> except that what he showed was perfectly fine scoping.
hamakn has quit [Remote host closed the connection]
djbkd has quit [Remote host closed the connection]
skolman_ has quit [Remote host closed the connection]
jusmyth has joined #ruby
bluOxigen has joined #ruby
quikilr has joined #ruby
skolman_ has joined #ruby
quantsini_ has quit [Quit: meow]
<quikilr> hey guys, first time in this channel, so let me know if this question doesn’t belong in here. I have a question about using Passenger with Ruby on Rails. I have setup a .conf file that Passenger uses to load virtual hosts, and it works great. My question is if I want to add CGI, would I add that in the standard apache2/site-enabled file or within the passenger .conf file
benlieb has joined #ruby
jusmyth has left #ruby [#ruby]
mockra_ has quit [Remote host closed the connection]
mockra has joined #ruby
coderhs has joined #ruby
benzrf|offline is now known as benzrf
djbkd has joined #ruby
sea_local has quit [Remote host closed the connection]
benzrf is now known as benzrf|offline
lw has joined #ruby
bMalum has joined #ruby
<miah> zenspider: agreed; maybe the behaviour was unexpected though?
<miah> (i didn read all scrollback either)
mockra has quit [Ping timeout: 240 seconds]
benzrf|offline is now known as benzrf
<miah> quikilr: if the cgi isn't stuff being run through passenger, then just basic apache configuration
michaeldeol has joined #ruby
<miah> or are you trying to do something else? might be a question better for #apache
<miah> but i work ops and im bored
benzrf is now known as benzrf|offline
<quikilr> yeah, #apache might be better. I’m looking to see if this line should be in the sites-enabled or passenger config
<quikilr> ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
mmus has quit [Ping timeout: 264 seconds]
<quikilr> I would prefer it in the passenger config
<quikilr> to keep things organized in while config file
philcrissman has joined #ruby
<zenspider> miah: I believe the whole situation was inaccurately described
<miah> quikilr: ScriptAlias's context is only in server config or virtual host config; so as long as your passenger configs context falls into one of those you should be fine
balazs has quit [Ping timeout: 255 seconds]
freerobby has quit [Quit: Leaving.]
<miah> been forever since i used passenger i cant remember how its config goes
oo_ has joined #ruby
<quikilr> sounds good. I’ll play around with it. thanks for the link and the help guys
<miah> zenspider: almost always the case on irc =)
IceDragon has quit [Quit: Space~~~]
zeroNones has joined #ruby
zeroNones has quit [Max SendQ exceeded]
philcrissman has quit [Ping timeout: 272 seconds]
zeroNones has joined #ruby
zeroNones has quit [Max SendQ exceeded]
anaeem1 has joined #ruby
zeroNones has joined #ruby
zeroNones has quit [Max SendQ exceeded]
Asher has joined #ruby
hamakn has joined #ruby
Spami has quit [Read error: Connection reset by peer]
sea_local has joined #ruby
tlarevo has joined #ruby
sinkensabe has joined #ruby
_cake has quit [Ping timeout: 272 seconds]
arup_r has joined #ruby
phrozen77 has joined #ruby
phrozen77 has quit [Changing host]
kenneth has quit [Ping timeout: 260 seconds]
thomasxie has quit [Remote host closed the connection]
thomasxie has joined #ruby
tlarevo_ has joined #ruby
hooper has quit [Quit: Leaving.]
whyy has joined #ruby
malcolmva has quit [Ping timeout: 250 seconds]
tobago has joined #ruby
tlarevo has quit [Ping timeout: 240 seconds]
bMalum has quit [Quit: bMalum]
kenneth has joined #ruby
banjara has quit [Max SendQ exceeded]
banjara has joined #ruby
timonv_ has joined #ruby
Dreamer3 has quit [Quit: Leaving...]
saarinen has quit [Quit: saarinen]
apeiros has quit [Remote host closed the connection]
apeiros has joined #ruby
quikilr has left #ruby [#ruby]
Sauvin has joined #ruby
Channel6 has quit [Remote host closed the connection]
malcolmva has joined #ruby
philcrissman has joined #ruby
crantron has quit [Ping timeout: 255 seconds]
sinkensa_ has joined #ruby
sinkensabe has quit [Read error: Connection reset by peer]
nobitanobi has joined #ruby
Scsilver has quit [Quit: Leaving]
grenierm has quit [Quit: grenierm]
<pizzahead> zenspider: you are right, I had made an assumption that something wasn't working and tried proving it doing a completely different test to 'verify'. I should have pasted what I was able to verify wasn't working instead. Sorry about that.
magic is now known as notmagic
nobitanobi has quit [Ping timeout: 240 seconds]
ptrrr has joined #ruby
iamjarvo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
siwica has quit [Ping timeout: 240 seconds]
tagrudev has joined #ruby
timonv_ has quit [Remote host closed the connection]
<TheTopBloke> Hello.
siwica has joined #ruby
<TheTopBloke> Just want to run this by you for confirmation. In creating a new example rails project, I typed the following.
apeiros has quit [Ping timeout: 240 seconds]
<TheTopBloke> rails new blog /usr/local/bin/ruby
<TheTopBloke> which is meant to bypass the ruby 2.0.0 the OS on mavericks uses, and utilize ruby-2.1.2
<TheTopBloke> it appears to have worked. did I miss anything in that command?
<sevenseacat> i dont think it will do that
grenierm has joined #ruby
<DEA7TH> I'm not sure how the _or_ keyword works, can I do something like what I said in the comments?
starkhalo has quit [Ping timeout: 260 seconds]
spastorino has quit [Quit: Connection closed for inactivity]
<DEA7TH> of course, the right hand side must not get evaluated if the left hand side evaluates to true
bthesorceror has quit [Quit: bthesorceror]
_tpavel has joined #ruby
<TheTopBloke> Im starting to get the feeling that attempting to create a local server environment for development is a complete waste of time on a mac, and that I prob should just pickup a cheap remote dev server and start from scratch. that way there would not be two libraries of everything and messes of file directories everywhere
<sevenseacat> its very straightforward. what are you having problems with?
<havenwood> DEA7TH: find_item(params) or create_item(params)
<TheTopBloke> Its just very confusing. I have a version of something, then its outdated, but Im doing keg-only installs for example, and then I have to build with a path to the right directory for the right version. It seems like I would be fartehr ahead having just picked up a server and installed everything on that instead
<DEA7TH> havenwood: ah, so my code in the comment happened to do what I want
fabrice31 has joined #ruby
<TheTopBloke> I got it to run, but I just have to remember where the hell everything is LOL
<sevenseacat> whats a keg-only install? and i dont know why you have multiple versions of everything - osx comes with ruby, just use that
<sevenseacat> its not a super up to date version but its good enough for learning on
zz_rubydimond is now known as anildigital
bthesorceror has joined #ruby
siwica has quit [Ping timeout: 255 seconds]
<TheTopBloke> Right, well maybe Im operating under some bad advice, but the advice I was given on chat and various forums and what have you is that there should be seperate versions of ruby for example, one for the OS and one for DEV
<sevenseacat> wat
<sevenseacat> why
<TheTopBloke> I guess the logic is the OS version doesnt get screwed up
lmickh has quit [Remote host closed the connection]
<sevenseacat> erm
<sevenseacat> its not like you're rewriting it, you're just using it
<atmosx> TheTopBloke: why don't you try RVM and learn one or thing about how paths work under unix? :-)
<TheTopBloke> But I could pick up a server with some version of linux and just install everything I need
<sevenseacat> and osx is exactly the same
<sevenseacat> like im confused
<TheTopBloke> I did use RVM earlier. And I used brew. Its not so much learning the paths of unix, but rather the speicifc paths on my laptop thats operating mavericks.
<sevenseacat> okay well i cant teach you how to use your laptop
<miah> TheTopBloke: learn to use bundler?
<sevenseacat> but we can teach you how to use ruby :P
<TheTopBloke> I dunno, like for instance I dont even have a launchd.conf file.
<miah> it can be a big help to keep things organized
<sevenseacat> seems irrelevant to ruby
<atmosx> why do you need a launchd.conf file?
benlieb has quit [Read error: Connection reset by peer]
<TheTopBloke> Im just using that as an example. forget it.
<miah> TheTopBloke: the version of ruby should be mostly irrelevant; but the version of gems needed for your project likely needs to remain consistent between hosts. i'd start with setting up a bundler Gemfile and working your way from there
<miah> TheTopBloke: http://bundler.io/
alexju has quit [Remote host closed the connection]
fabrice31 has quit [Ping timeout: 260 seconds]
klmlfl has quit [Remote host closed the connection]
<TheTopBloke> Bundler is an exit from dependency hell. I like it already
klmlfl has joined #ruby
sinkensa_ has quit [Remote host closed the connection]
<atmosx> haha awesome didn't knew bundler had a website
<atmosx> bbl
atmosx has quit [Quit: Textual IRC Client: www.textualapp.com]
yfeldblu_ has quit [Ping timeout: 240 seconds]
speaking1ode has joined #ruby
speakingcode has quit [Ping timeout: 240 seconds]
relix has joined #ruby
bMalum has joined #ruby
<TheTopBloke> I'm going to keep this in mind for later use. This seems more like soemthing for when I have everything running happy on dev, before I move it over to a live environment I bundle it and it makes everything transition smoothly.
<sevenseacat> no, you use bundler all the time.
<miah> right; always use it
<sevenseacat> if you have a ruby project and its not using bundler, you're going to have a bad time.
<TheTopBloke> ok, I'll RTFM more then. :)
<miah> <3
MrL0ngbowman has joined #ruby
<sevenseacat> look at the rails project you just generated - it has a Gemfile in it, which is for bundler
lkba has quit [Ping timeout: 240 seconds]
craigp has quit [Remote host closed the connection]
<TheTopBloke> yep I see it
<miah> osx ruby is 2.0.0 at least these days; you really shouldn't need to install anything different unless you really need to live on the bleeding edge
dawkirst has joined #ruby
klmlfl has quit [Ping timeout: 246 seconds]
<sevenseacat> 2.0.0 is fine while learning
gaussblurinc1 has joined #ruby
<miah> exactly
<sevenseacat> it was 1.8.7 in previous versions of osx which is way too old
<TheTopBloke> ok, because that was how I originally started with this mess. I think the rails site recommended 2.1.2
<miah> agree; same problem still in RHEL / Centos
<miah> recommended ; not required
<TheTopBloke> and yeah, mavericks is using 2.0.0
<sevenseacat> we know.
mices has quit [Ping timeout: 255 seconds]
arup_r has quit []
diegoviola has quit [Remote host closed the connection]
fold has quit [Ping timeout: 245 seconds]
pizzahead has quit [Quit: EPIC5-1.1.6[1693] - amnesiac : Guns make holes in people. Weed makes people giggle and eat cake.]
kyb3r_ has joined #ruby
himsin has joined #ruby
MrL0ngbowman has quit [Ping timeout: 260 seconds]
charliesome has quit [Quit: zzz]
charliesome has joined #ruby
emocakes has joined #ruby
armyriad has quit [Ping timeout: 240 seconds]
armyriad has joined #ruby
sinkensabe has joined #ruby
anaeem1 has quit [Remote host closed the connection]
anaeem1 has joined #ruby
lw has quit [Quit: s]
Sht0 has joined #ruby
lw has joined #ruby
himsin has quit [Quit: himsin]
himsin has joined #ruby
roolo has joined #ruby
Hanmac has quit [Ping timeout: 272 seconds]
mityaz has joined #ruby
atraylen has joined #ruby
gauke has joined #ruby
ssvo_ has quit [Ping timeout: 240 seconds]
_lexjm has joined #ruby
descala has joined #ruby
renderful has quit [Ping timeout: 240 seconds]
Cort3z has joined #ruby
gauke has quit [Ping timeout: 260 seconds]
emocakes has quit []
bthesorceror has quit [Quit: bthesorceror]
codecop has joined #ruby
krz has quit [Quit: WeeChat 1.0]
krz has joined #ruby
tectonic has quit []
Cort3z has quit [Ping timeout: 240 seconds]
coderhs has quit [Read error: Connection reset by peer]
jprovazn has joined #ruby
Hanmac has joined #ruby
dawkirst has quit [Ping timeout: 240 seconds]
aganov has joined #ruby
nobitanobi has joined #ruby
dawkirst has joined #ruby
banjara has quit [Quit: Leaving.]
thomasxie has left #ruby [#ruby]
emmesswhy has quit [Quit: Leaving]
nobitanobi has quit [Ping timeout: 240 seconds]
djbkd has quit [Remote host closed the connection]
gaussblurinc1 has quit [Quit: Leaving.]
lkba has joined #ruby
grenierm has quit [Quit: grenierm]
renderful has joined #ruby
lw has quit [Quit: s]
TheTopBloke has quit [Quit: Textual IRC Client: www.textualapp.com]
bearish has joined #ruby
lidaaa has quit [Ping timeout: 255 seconds]
HelperW has joined #ruby
Morkel has joined #ruby
emocakes has joined #ruby
juz88 has joined #ruby
coderhs has joined #ruby
HelperW has quit [Client Quit]
agent_white has quit [Read error: Connection reset by peer]
fantazo has quit [Ping timeout: 272 seconds]
Neo-- has joined #ruby
ghostmoth has joined #ruby
juz88 has quit [Ping timeout: 272 seconds]
juz88 has joined #ruby
fabrice31 has joined #ruby
craigp has joined #ruby
tlarevo has joined #ruby
philcrissman has quit [Remote host closed the connection]
philcrissman has joined #ruby
ghostmoth has quit [Ping timeout: 240 seconds]
tlarevo_ has quit [Ping timeout: 260 seconds]
tlarevo has quit [Ping timeout: 245 seconds]
mijicd has joined #ruby
blackmes1 has joined #ruby
philcrissman has quit [Ping timeout: 246 seconds]
mbwe has joined #ruby
mengu has joined #ruby
mengu has joined #ruby
charliesome has quit [Quit: zzz]
hellangel7 has joined #ruby
Magnus has joined #ruby
skolman_ has quit [Remote host closed the connection]
hellangel7 has quit [Max SendQ exceeded]
hellangel7 has joined #ruby
pandaant has joined #ruby
noop has joined #ruby
redondo has quit [Ping timeout: 260 seconds]
Jobygoude has joined #ruby
roolo has quit [Quit: Leaving...]
kyb3r_ has quit [Read error: Connection reset by peer]
jcoglan has joined #ruby
kaspertidemann has joined #ruby
mijicd has quit [Ping timeout: 240 seconds]
cy has quit [Quit: A:SDFKWEJAPSDGHASHDPOGJ]
joshbamboo1 has joined #ruby
mijicd has joined #ruby
WildBamboo-Josh has quit [Ping timeout: 245 seconds]
blackmes1 has quit [Ping timeout: 250 seconds]
Ilyas has joined #ruby
Ilyas has quit [Max SendQ exceeded]
Ilyas has joined #ruby
KnownSyntax has joined #ruby
chrishough has quit [Quit: Textual IRC Client: www.textualapp.com]
axsuul has quit [Read error: Connection reset by peer]
axsuul has joined #ruby
ptrrr has quit [Quit: ptrrr]
anarang has joined #ruby
Spami has joined #ruby
SilkFox_ has quit [Ping timeout: 260 seconds]
jmbrown4_ has joined #ruby
atraylen has quit [Ping timeout: 264 seconds]
kalusn has joined #ruby
jmbrown412 has quit [Ping timeout: 260 seconds]
Xeago has joined #ruby
qrest has quit [Ping timeout: 255 seconds]
emocakes has quit []
Pumukel has joined #ruby
shredding has joined #ruby
jmbrown4_ has quit [Ping timeout: 272 seconds]
jottr has joined #ruby
nobitano_ has joined #ruby
sprihodko has joined #ruby
wallerdev has quit [Quit: wallerdev]
wallerdev has joined #ruby
Jackneill has joined #ruby
chrishough has joined #ruby
goshdragon has quit [Quit: Connection closed for inactivity]
nobitano_ has quit [Ping timeout: 240 seconds]
alex88 has joined #ruby
Takle has joined #ruby
joonty has joined #ruby
michaeldeol has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
krz has quit [Quit: WeeChat 1.0]
codecop has quit [Ping timeout: 260 seconds]
mijicd has quit [Quit: Lost terminal]
krz has joined #ruby
cndiv has quit [Ping timeout: 246 seconds]
hellangel7 has quit [Max SendQ exceeded]
Cort3z has joined #ruby
juz88 has quit [Ping timeout: 245 seconds]
Jobygoude has quit [Quit: Lingo - http://www.lingoirc.com]
mijicd has joined #ruby
olivier_bK has joined #ruby
kaspergrubbe_ has quit [Remote host closed the connection]
Spami has quit [Quit: This computer has gone to sleep]
Jameser has quit [Remote host closed the connection]
Cort3z has quit [Ping timeout: 255 seconds]
Takle has quit [Remote host closed the connection]
Takle has joined #ruby
jcoglan has quit [Quit: jcoglan]
tvw has joined #ruby
wallerdev has quit [Quit: wallerdev]
ptrrr has joined #ruby
andikr has joined #ruby
krandi has joined #ruby
mijicd has quit [Remote host closed the connection]
_lexjm has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
andikr has quit [Remote host closed the connection]
Takle has quit [Ping timeout: 264 seconds]
mijicd has joined #ruby
mijicd has quit [Client Quit]
rjhunter has quit [Remote host closed the connection]
ghr has joined #ruby
LiohAu_ has joined #ruby
dawkirst has quit [Remote host closed the connection]
dawkirst has joined #ruby
anildigital is now known as zz_anildigital
mockra has joined #ruby
hooper has joined #ruby
krandi has quit [Remote host closed the connection]
koderok has quit [Quit: koderok]
whyy has quit [Remote host closed the connection]
olivier_bK has quit [Quit: Quitte]
Cort3z has joined #ruby
jottr has quit [Ping timeout: 245 seconds]
olivier_bK has joined #ruby
Wolland has quit [Remote host closed the connection]
dumdedum has joined #ruby
Wolland has joined #ruby
mockra has quit [Ping timeout: 264 seconds]
wookiehangover has quit [Ping timeout: 245 seconds]
andikr has joined #ruby
Wolland_ has joined #ruby
tlarevo has joined #ruby
HelperW has joined #ruby
niklasb has quit [Ping timeout: 260 seconds]
Wolland has quit [Ping timeout: 246 seconds]
atmosx has joined #ruby
georgesmith has joined #ruby
atmosx has quit [Client Quit]
Neo-- has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
moritzschaefer has joined #ruby
oo_ has quit [Remote host closed the connection]
timonv_ has joined #ruby
arup_r has joined #ruby
oo_ has joined #ruby
oo_ has quit [Remote host closed the connection]
oo_ has joined #ruby
iMe has joined #ruby
moritzschaefer has quit [Max SendQ exceeded]
roolo has joined #ruby
moritzschaefer has joined #ruby
bjornar has joined #ruby
moritzschaefer has quit [Max SendQ exceeded]
moritzschaefer has joined #ruby
moritzschaefer has quit [Max SendQ exceeded]
renderfu_ has joined #ruby
sk87 has joined #ruby
moritzschaefer has joined #ruby
moritzschaefer has quit [Max SendQ exceeded]
moritzschaefer has joined #ruby
moritzschaefer has quit [Max SendQ exceeded]
moritzschaefer has joined #ruby
renderful has quit [Ping timeout: 264 seconds]
rubyracer has joined #ruby
moritzschaefer has quit [Max SendQ exceeded]
jhass|off is now known as jhass
mercerist has joined #ruby
moritzschaefer has joined #ruby
whyy has joined #ruby
SilkFox_ has joined #ruby
moritzschaefer has quit [Max SendQ exceeded]
sprihodko has quit [Quit: Lingo - http://www.lingoirc.com]
moritzschaefer has joined #ruby
moritzschaefer has quit [Max SendQ exceeded]
elaptics has joined #ruby
moritzschaefer has joined #ruby
moritzschaefer has quit [Max SendQ exceeded]
einarj has joined #ruby
moritzschaefer has joined #ruby
moritzschaefer has quit [Max SendQ exceeded]
moritzschaefer has joined #ruby
moritzschaefer has quit [Max SendQ exceeded]
moritzschaefer has joined #ruby
brothmars has quit [Ping timeout: 260 seconds]
SilkFox_ has quit [Ping timeout: 245 seconds]
nobitanobi has joined #ruby
moritzschaefer has quit [Max SendQ exceeded]
havenwood has quit []
echevemaster has quit [Quit: Leaving]
moritzschaefer has joined #ruby
moritzschaefer has quit [Max SendQ exceeded]
moritzschaefer has joined #ruby
moritzschaefer has quit [Max SendQ exceeded]
osvico has quit [Ping timeout: 240 seconds]
koderok has joined #ruby
craigp has quit [Remote host closed the connection]
shevy has quit [Ping timeout: 260 seconds]
yfeldblum has joined #ruby
yfeldblum has quit [Remote host closed the connection]
nobitanobi has quit [Ping timeout: 240 seconds]
Aranshada|W_ has joined #ruby
yfeldblum has joined #ruby
zz_anildigital is now known as anildigital
mikecmpbll has joined #ruby
Aranshada|W_ has quit [Client Quit]
Aranshada|W_ has joined #ruby
Aranshada|W has quit [Ping timeout: 260 seconds]
Aranshada|W_ has quit [Client Quit]
craigp has joined #ruby
Aranshada|W has joined #ruby
Photism has joined #ruby
georgesmith has quit [Ping timeout: 240 seconds]
krisquigley has joined #ruby
kaspergrubbe_ has joined #ruby
georgesmith has joined #ruby
shevy has joined #ruby
atmosx has joined #ruby
Takle has joined #ruby
sparrovv has joined #ruby
notmagic has quit [Ping timeout: 244 seconds]
why_away has joined #ruby
Macaveli has joined #ruby
saladspork has joined #ruby
whyy has quit [Ping timeout: 245 seconds]
wookiehangover has joined #ruby
echooo has quit [Quit: echooo]
lolmaus has joined #ruby
lkba has quit [Ping timeout: 264 seconds]
qrest has joined #ruby
dawkirst has quit [Remote host closed the connection]
magic has joined #ruby
magic is now known as Guest5641
poulet_a has joined #ruby
mercerist has quit [Quit: Computer has gone to sleep.]
Xiti` has joined #ruby
mercerist has joined #ruby
timonv_ has quit [Remote host closed the connection]
georgesmith has left #ruby [#ruby]
Xiti has quit [Ping timeout: 255 seconds]
hooper has quit [Quit: Leaving.]
tvw has quit []
Watchmethink has quit [Remote host closed the connection]
qba73 has joined #ruby
abuzze has quit [Ping timeout: 240 seconds]
abuzze_ has joined #ruby
dawkirst has joined #ruby
mengu has quit [Remote host closed the connection]
Jameser has joined #ruby
Wolland_ has quit [Remote host closed the connection]
Wolland has joined #ruby
MCDev has quit [Quit: HydraIRC -> http://www.hydrairc.com <-]
Takle has quit []
blackmes1 has joined #ruby
Takle has joined #ruby
ndrei has joined #ruby
AlSquire has joined #ruby
Wolland has quit [Ping timeout: 260 seconds]
r_s has quit [Ping timeout: 260 seconds]
malcolmva has quit [Ping timeout: 250 seconds]
balance has joined #ruby
axsuul has quit [Ping timeout: 255 seconds]
sevenseacat has quit [Quit: Leaving.]
Hobogrammer has quit [Ping timeout: 260 seconds]
balance has quit [Client Quit]
timonv_ has joined #ruby
Takle has quit [Remote host closed the connection]
qba73 has quit [Remote host closed the connection]
oo_ has quit [Remote host closed the connection]
oo_ has joined #ruby
whyy has joined #ruby
HelperW has quit [Ping timeout: 245 seconds]
pranny has joined #ruby
oo_ has quit [Remote host closed the connection]
oo_ has joined #ruby
max06 has joined #ruby
why_away has quit [Ping timeout: 240 seconds]
Aryasam has joined #ruby
HelperW has joined #ruby
ndrei has quit [Ping timeout: 260 seconds]
arturaz has joined #ruby
echooo has joined #ruby
abuzze_ has quit [Remote host closed the connection]
threesixes has quit [Remote host closed the connection]
Neo-- has joined #ruby
nobitanobi has joined #ruby
himsin has quit [Quit: himsin]
shevy has quit [Ping timeout: 272 seconds]
kaspertidemann has quit []
qba73 has joined #ruby
guiguidoc has joined #ruby
krz has quit [Quit: WeeChat 1.0]
krz has joined #ruby
nobitanobi has quit [Ping timeout: 245 seconds]
etqqkoiflwhb has joined #ruby
himsin has joined #ruby
etqqkoiflwhb has quit [Remote host closed the connection]
abuzze has joined #ruby
Aryasam has quit [Ping timeout: 255 seconds]
chipotle has quit [Quit: cya]
shevy has joined #ruby
abuzze has quit [Ping timeout: 264 seconds]
echooo1 has joined #ruby
echooo has quit [Ping timeout: 260 seconds]
Macaveli has quit [Ping timeout: 240 seconds]
marr has joined #ruby
atmosx has quit [Quit: Textual IRC Client: www.textualapp.com]
abuzze has joined #ruby
ctp has quit [Ping timeout: 240 seconds]
echooo1 has quit [Ping timeout: 250 seconds]
matilak has joined #ruby
Takle has joined #ruby
teddyp1cker has joined #ruby
agjacome has joined #ruby
Macaveli has joined #ruby
_alexandros_ has joined #ruby
whyy has quit [Remote host closed the connection]
ctp has joined #ruby
mengu has joined #ruby
mengu has joined #ruby
passcod has left #ruby [#ruby]
Aaaal has joined #ruby
Macaveli has quit [Remote host closed the connection]
Takle has quit [Ping timeout: 240 seconds]
Macaveli has joined #ruby
spider-mario has joined #ruby
why_away has joined #ruby
spider-mario has quit [Read error: Connection reset by peer]
gaussblurinc1 has joined #ruby
ctp has quit [Quit: Textual IRC Client: www.textualapp.com]
decoponio has joined #ruby
Xeago has quit [Remote host closed the connection]
spider-mario has joined #ruby
Aryasam has joined #ruby
qrest has quit [Quit: leaving]
Macaveli has quit [Ping timeout: 264 seconds]
mockra has joined #ruby
HelperW has quit [Remote host closed the connection]
HelperW has joined #ruby
Wolland has joined #ruby
fold has joined #ruby
craigp has quit [Read error: Connection reset by peer]
duncannz has quit [Ping timeout: 260 seconds]
mockra has quit [Ping timeout: 260 seconds]
teddyp1cker has quit [Remote host closed the connection]
matchaw has joined #ruby
Takle has joined #ruby
Wolland has quit [Ping timeout: 240 seconds]
kaspertidemann has joined #ruby
gr33n7007h has quit [Ping timeout: 240 seconds]
agrinb has joined #ruby
KnownSyntax_ has joined #ruby
KnownSyntax has quit [Ping timeout: 240 seconds]
craigp has joined #ruby
mercerist has quit [Quit: Computer has gone to sleep.]
kaspergrubbe_ has quit []
roolo has quit [Quit: Leaving...]
nobitanobi has joined #ruby
roolo has joined #ruby
Morkel_ has joined #ruby
ndrei has joined #ruby
Morkel has quit [Ping timeout: 245 seconds]
Morkel_ is now known as Morkel
matilak has quit [Quit: leaving]
PanPan has quit [Quit: ChatZilla 0.9.90.1 [Firefox 31.0/20140716183446]]
Neo-- has quit [Read error: Connection reset by peer]
mercerist has joined #ruby
nobitanobi has quit [Ping timeout: 240 seconds]
Neo-- has joined #ruby
Blizzy has quit [Ping timeout: 240 seconds]
Neo-- has quit [Read error: Connection reset by peer]
Neo-- has joined #ruby
codecop has joined #ruby
blueOxigen has joined #ruby
patric100e99 has joined #ruby
Takle has quit [Remote host closed the connection]
janmuffino has quit [Ping timeout: 246 seconds]
mercerist has quit [Client Quit]
jds has joined #ruby
janmuffino_ has joined #ruby
bluOxigen has quit [Ping timeout: 240 seconds]
Neo-- has quit [Read error: Connection reset by peer]
Neo-- has joined #ruby
Wolland has joined #ruby
ganesh has joined #ruby
Neo-- has quit [Read error: Connection reset by peer]
agrinb has quit [Read error: Connection reset by peer]
LiohAu_ has quit [Quit: LiohAu_]
Neo-- has joined #ruby
Wolland has quit [Read error: Connection reset by peer]
agrinb has joined #ruby
patric100e99 has quit [Ping timeout: 245 seconds]
arturaz has quit [Remote host closed the connection]
rubyracer has quit [Ping timeout: 264 seconds]
jusmyth1 has joined #ruby
Wolland has joined #ruby
jusmyth1 has left #ruby [#ruby]
Neo-- has quit [Read error: Connection reset by peer]
Neo-- has joined #ruby
Wolland has quit [Read error: Connection reset by peer]
Wolland has joined #ruby
karupa is now known as zz_karupa
why_away has quit [Remote host closed the connection]
Takle has joined #ruby
tokik has quit [Ping timeout: 240 seconds]
agrinb has quit [Remote host closed the connection]
Neo-- has quit [Read error: Connection reset by peer]
mercerist has joined #ruby
mijicd has joined #ruby
Wolland has quit [Ping timeout: 255 seconds]
mijicd has quit [Client Quit]
o0oo0o has quit [Ping timeout: 264 seconds]
Neo--_ has joined #ruby
hsps_ has joined #ruby
coderhs has quit [Read error: Connection reset by peer]
kaspergrubbe_ has joined #ruby
spider-mario has quit [Ping timeout: 246 seconds]
roolo has quit [Quit: Leaving...]
o0oo0o has joined #ruby
poulet_a has quit [Ping timeout: 264 seconds]
poulet_a has joined #ruby
Spami has joined #ruby
Spami has quit [Client Quit]
tlarevo has quit [Read error: Connection reset by peer]
tlarevo_ has joined #ruby
Neo--_ has quit [Read error: Connection reset by peer]
Neo-- has joined #ruby
teddyp1cker has joined #ruby
teddyp1cker has quit [Remote host closed the connection]
teddyp1cker has joined #ruby
Neo-- has quit [Read error: Connection reset by peer]
tkuchiki_ has joined #ruby
sprihodko has joined #ruby
tkuchiki_ has quit [Remote host closed the connection]
Neo-- has joined #ruby
ordomoko has joined #ruby
Neo-- has quit [Read error: Connection reset by peer]
kaspertidemann has quit []
emocakes has joined #ruby
gccostabr has joined #ruby
tkuchiki has quit [Ping timeout: 260 seconds]
sprihodko has quit [Read error: Connection reset by peer]
Macaveli has joined #ruby
spider-mario has joined #ruby
Neo--_ has joined #ruby
sparrovv has quit [Remote host closed the connection]
sparrovv has joined #ruby
Macaveli has quit [Remote host closed the connection]
sprihodko has joined #ruby
Aryasam has quit [Ping timeout: 240 seconds]
ndrei has quit [Read error: No route to host]
Neo--_ has quit [Read error: Connection reset by peer]
Neo-- has joined #ruby
oo_ has quit [Remote host closed the connection]
sparrovv_ has joined #ruby
sparrovv has quit [Ping timeout: 240 seconds]
oo_ has joined #ruby
Xeago has joined #ruby
Neo-- has quit [Read error: Connection reset by peer]
Neo-- has joined #ruby
tvw has joined #ruby
Xeago has quit [Remote host closed the connection]
ndrei has joined #ruby
Neo-- has quit [Read error: Connection reset by peer]
Neo-- has joined #ruby
Neo-- has quit [Read error: Connection reset by peer]
Xeago has joined #ruby
oo_ has quit [Ping timeout: 250 seconds]
Neo-- has joined #ruby
shredding has quit [Quit: shredding]
poulet_a has quit [Ping timeout: 240 seconds]
TheToad has joined #ruby
phutchin1 has joined #ruby
Xeago_ has joined #ruby
Neo-- has quit [Read error: Connection reset by peer]
kayloos has joined #ruby
Neo-- has joined #ruby
Neomex has joined #ruby
Xeago has quit [Ping timeout: 260 seconds]
tlarevo_ has quit [Ping timeout: 264 seconds]
tlarevo has joined #ruby
<phutchin1> Good morning...
ValicekB has quit [Ping timeout: 245 seconds]
kalusn has quit [Ping timeout: 240 seconds]
poulet_a has joined #ruby
kiri has quit [Ping timeout: 245 seconds]
roolo has joined #ruby
lkba has joined #ruby
Neo-- has quit [Read error: Connection reset by peer]
Neo-- has joined #ruby
sectionme has joined #ruby
tlarevo has quit [Ping timeout: 250 seconds]
whyy has joined #ruby
Neo-- has quit [Read error: Connection reset by peer]
oo_ has joined #ruby
sk87 has quit [Quit: My Mac Mini has gone to sleep. ZZZzzz…]
Neo-- has joined #ruby
Neo--_ has joined #ruby
Neo-- has quit [Read error: Connection reset by peer]
tlarevo has joined #ruby
ValicekB has joined #ruby
oo_ has quit [Remote host closed the connection]
nemesit|znc has quit [Ping timeout: 245 seconds]
oo_ has joined #ruby
gaussblurinc1 has quit [Quit: Leaving.]
Neo--_ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
nuck has quit [Ping timeout: 260 seconds]
roolo has quit [Read error: Connection reset by peer]
nemesit|znc has joined #ruby
fold has quit [Ping timeout: 260 seconds]
roolo has joined #ruby
pranny has quit [Quit: Leaving.]
oo_ has quit [Ping timeout: 250 seconds]
nuck has joined #ruby
oo_ has joined #ruby
malcolmva has joined #ruby
Cort3z has quit [Ping timeout: 260 seconds]
godd2 has joined #ruby
jusmyth has joined #ruby
Wolland has joined #ruby
axilla has joined #ruby
starless has joined #ruby
mjc_ has quit [Quit: Connection closed for inactivity]
bearish has quit [Remote host closed the connection]
bearish has joined #ruby
tlarevo_ has joined #ruby
agrinb has joined #ruby
tlarevo has quit [Ping timeout: 240 seconds]
TheToad has left #ruby ["Leaving"]
Wolland has quit [Ping timeout: 255 seconds]
Takle has quit [Remote host closed the connection]
ValicekB has quit [Ping timeout: 240 seconds]
xcv has joined #ruby
sepp2k has joined #ruby
krisquigley has quit [Remote host closed the connection]
LiohAu_ has joined #ruby
chrishough has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
himsin has quit [Quit: himsin]
pranny has joined #ruby
krisquigley has joined #ruby
agrinb has quit [Ping timeout: 240 seconds]
Takle has joined #ruby
tokik has joined #ruby
oo_ has quit [Remote host closed the connection]
ValicekB has joined #ruby
oo_ has joined #ruby
timonv_ has quit [Remote host closed the connection]
rjhunter has joined #ruby
timonv_ has joined #ruby
yfeldblum has quit [Remote host closed the connection]
techsethi has joined #ruby
sk87 has joined #ruby
timonv_ has quit [Remote host closed the connection]
timonv_ has joined #ruby
azul1 has joined #ruby
azul1 has quit [Remote host closed the connection]
ldnunes has joined #ruby
Azulinho has joined #ruby
<Thanatermesis> c.channels = ["#channel1", "#channel2"]
<Thanatermesis> how i can set a list of items from a yaml conf file ?
oo_ has quit [Ping timeout: 255 seconds]
<Thanatermesis> so i have already a similar one for normal items: c.user = account['user']
sharms has quit [Ping timeout: 240 seconds]
johndeeer has joined #ruby
oo_ has joined #ruby
shredding has joined #ruby
jusmyth has left #ruby [#ruby]
phoo1234567 has joined #ruby
<Hanmac> Thanatermesis: i think we would be able to help more if we know how that yaml does look like
sharms has joined #ruby
phoo1234567 has quit [Max SendQ exceeded]
phoo1234567 has joined #ruby
Sgeo has quit [Read error: Connection reset by peer]
<Thanatermesis> idk it yet :)
cocotton has joined #ruby
<Thanatermesis> so i want to move this code to a yaml conf file
dmst has joined #ruby
cocotton has quit [Remote host closed the connection]
emocakes__ has joined #ruby
cocotton has joined #ruby
cocotton has quit [Remote host closed the connection]
Alina-malina has quit [Read error: Connection reset by peer]
cocotton has joined #ruby
emocakes has quit [Ping timeout: 260 seconds]
tlarevo has joined #ruby
anildigital is now known as zz_anildigital
kaspergrubbe_ has quit [Remote host closed the connection]
zz_anildigital is now known as anildigital
tlarevo_ has quit [Ping timeout: 260 seconds]
oo_ has quit [Remote host closed the connection]
oo_ has joined #ruby
saladspork has quit [Quit: saladspork]
Cort3z has joined #ruby
OffTheRails has joined #ruby
Cheezebox has joined #ruby
oo_ has quit [Ping timeout: 255 seconds]
Cort3z has quit [Ping timeout: 250 seconds]
flowerhack has quit [Remote host closed the connection]
spider-mario has quit [Ping timeout: 246 seconds]
balder has joined #ruby
krz has quit [Quit: WeeChat 1.0]
britneywright has joined #ruby
<balder> hello all im new to ruby and i wondered if it is possible to do something like defined?("string_#{variable}") which
<balder> would return true if @variables="test" and string_test was defined
kaspergrubbe_ has joined #ruby
Alina-malina has joined #ruby
shevy has quit [Read error: Connection reset by peer]
mengu has quit [Remote host closed the connection]
Takle has quit [Remote host closed the connection]
nobitanobi has joined #ruby
koderok has quit [Quit: koderok]
yfeldblum has joined #ruby
redondo has joined #ruby
godd2 has quit [Ping timeout: 245 seconds]
yfeldblu_ has joined #ruby
<Hanmac> balder: you can do local_variables.grep(/string_#@variable/).any? but its still bad style to check for the same of a local variable
OffTheRails has quit [Read error: Connection reset by peer]
<Hanmac> because the code will explode in your face earlier then you might think
gauravagarwalr has joined #ruby
ndrei has quit [Ping timeout: 250 seconds]
Lewix has joined #ruby
starless has quit [Quit: Leaving]
nobitanobi has quit [Ping timeout: 240 seconds]
rezzack has joined #ruby
<balder> Hanmac: thanks i no its bad style in any launguage but im stuggeling to find a different method. i can expand further
<balder> on what im ettempting, its working with puppet
mengu has joined #ruby
mengu has quit [Read error: Connection reset by peer]
yfeldblum has quit [Ping timeout: 260 seconds]
rezzack1 has quit [Ping timeout: 264 seconds]
whyy has quit [Ping timeout: 260 seconds]
<crome> so you had a problem you wanted to solve using puppet and now you have 2 problems
tlarevo has quit [Read error: Connection reset by peer]
Cheezebo_ has joined #ruby
zettam has joined #ruby
yfeldblu_ has quit [Ping timeout: 264 seconds]
<balder> the code is in the erb template
Fire-Dragon-DoL has joined #ruby
tlarevo has joined #ruby
timonv_ has quit [Remote host closed the connection]
mengu_ has joined #ruby
mengu_ has quit [Changing host]
mengu_ has joined #ruby
timonv_ has joined #ruby
Cheezebox has quit [Ping timeout: 240 seconds]
yfeldblum has joined #ruby
mengu_ has quit [Read error: Connection reset by peer]
mengu_ has joined #ruby
mengu_ has quit [Changing host]
mengu_ has joined #ruby
mengu_ has quit [Read error: Connection reset by peer]
zettam_ has quit [Ping timeout: 240 seconds]
<balder> i was attampting to do something like this https://gist.github.com/b4ldr/4e9b5e69fc6a72984f68
* balder stands back and waits to be mocked
mengu has joined #ruby
mengu has quit [Read error: Connection reset by peer]
SCHAAP137 has joined #ruby
OffTheRails has joined #ruby
mengu has joined #ruby
mengu has quit [Changing host]
mengu has joined #ruby
mengu has quit [Read error: Connection reset by peer]
Cheezebo_ has quit [Remote host closed the connection]
Takle has joined #ruby
mengu has joined #ruby
mengu has quit [Changing host]
mengu has joined #ruby
mengu has quit [Read error: Connection reset by peer]
mengu has joined #ruby
mengu has quit [Changing host]
mengu has joined #ruby
mengu has quit [Read error: Connection reset by peer]
mengu has joined #ruby
mengu has quit [Read error: Connection reset by peer]
cocotton has quit [Remote host closed the connection]
timonv_ has quit [Ping timeout: 246 seconds]
mengu has joined #ruby
mengu has quit [Changing host]
mengu has joined #ruby
yfeldblum has quit [Ping timeout: 255 seconds]
mengu has quit [Read error: Connection reset by peer]
spyderman4g63 has joined #ruby
Wolland has joined #ruby
abuzze has quit [Remote host closed the connection]
timonv_ has joined #ruby
flowerhack has joined #ruby
abuzze has joined #ruby
pontiki has joined #ruby
mengu has joined #ruby
mengu has quit [Read error: Connection reset by peer]
mengu has joined #ruby
mengu has quit [Read error: Connection reset by peer]
mengu has joined #ruby
mengu has quit [Changing host]
mengu has joined #ruby
mengu has quit [Read error: Connection reset by peer]
shevy has joined #ruby
<Hanmac> balder: why are there "ipaddress_*" local variables? why not use ipaddress as a Hash ?
cocotton has joined #ruby
emocakes__ is now known as emocakes
rimenes has quit [Read error: Connection reset by peer]
mijicd has joined #ruby
mengu has joined #ruby
cocotton has quit [Remote host closed the connection]
mengu has quit [Read error: Connection reset by peer]
anildigital is now known as zz_anildigital
banister is now known as banisterfiend
Wolland has quit [Ping timeout: 255 seconds]
<balder> Hanmac: puppet provides things called facts, i have no controll over what they pass me. unless i reimplment all the
<balder> work they are already doing.
<balder> i have updated the gist with what i get from puppet
iamjarvo has joined #ruby
<balder> in relation to reimplmenting this when i looked at that there seemed to be no libraries for quirying interface information. with most information i found suggesting parsing ip addr or ifconfig
Cheezebox has joined #ruby
<balder> which is what puppet does
mijicd has quit [Remote host closed the connection]
momomomomo has joined #ruby
<Hanmac> balder: are you sure that "ipaddress_eth0 => 192.2.0.1" is a local variable? it does look more like a key for a hash
mengu__ has joined #ruby
mengu__ has quit [Read error: Connection reset by peer]
agrinb has joined #ruby
mijicd has joined #ruby
ndrei has joined #ruby
<Hanmac> balder: better than your eval might be: "binding.local_variable_get"
mengu__ has joined #ruby
mengu__ has quit [Read error: Connection reset by peer]
LiohAu_ is now known as LiohAu
<balder> not 100% i can take a look at the facter command which printss a full list of these facts. there may be something more
gaussblurinc1 has joined #ruby
<balder> low level i can access but in irb i access it via @ipaddress_eth0
mengu__ has joined #ruby
<balder> ok thanks ill check that out
cocotton has joined #ruby
mengu__ has quit [Read error: Connection reset by peer]
mengu__ has joined #ruby
mengu__ has quit [Read error: Connection reset by peer]
mengu__ has joined #ruby
mengu__ has quit [Read error: Connection reset by peer]
mengu has joined #ruby
agrinb has quit [Ping timeout: 240 seconds]
mengu has quit [Read error: Connection reset by peer]
starless has joined #ruby
starless has quit [Read error: Connection reset by peer]
mengu has joined #ruby
mengu has joined #ruby
starless has joined #ruby
mengu has quit [Read error: Connection reset by peer]
thomasxie has joined #ruby
emocakes has quit []
mengu__ has joined #ruby
mengu__ has quit [Read error: Connection reset by peer]
siwica has joined #ruby
mengu__ has joined #ruby
mengu__ has quit [Read error: Connection reset by peer]
pandaant has quit [Quit: Lost terminal]
abuzze_ has joined #ruby
mengu__ has joined #ruby
freerobby has joined #ruby
pandaant has joined #ruby
mengu__ has quit [Read error: Connection reset by peer]
tokik has quit [Ping timeout: 246 seconds]
<balder> Hanmac: thanks for pushing me, looks like there is a library call i can make to puppet
sambao21 has joined #ruby
mengu__ has joined #ruby
mengu__ has quit [Read error: Connection reset by peer]
mengu__ has joined #ruby
mengu__ has quit [Read error: Connection reset by peer]
mengu__ has joined #ruby
Lewix has quit [Remote host closed the connection]
abuzze has quit [Ping timeout: 246 seconds]
zz_anildigital is now known as anildigital
britneywright has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ganesh has quit [Quit: Konversation terminated!]
mengu_ has joined #ruby
weems|mac has joined #ruby
weems|mac has quit [Changing host]
weems|mac has joined #ruby
mengu_ has quit [Read error: Connection reset by peer]
rubyracer has joined #ruby
bmurt has joined #ruby
mupkoo has joined #ruby
alexju has joined #ruby
ndrei has quit [Ping timeout: 260 seconds]
anaeem1 has quit [Remote host closed the connection]
tlarevo has quit [Remote host closed the connection]
tkuchiki has joined #ruby
tokik has joined #ruby
jespada has joined #ruby
tlarevo has joined #ruby
britneywright has joined #ruby
ndrei has joined #ruby
blackmes1 has quit [Quit: WeeChat 1.0]
flowerhack has quit [Remote host closed the connection]
mengu__ has quit [Ping timeout: 250 seconds]
sprihodko has quit [Quit: Lingo - http://www.lingoirc.com]
mengu__ has joined #ruby
mengu__ has quit [Read error: Connection reset by peer]
alexju has quit [Read error: Connection reset by peer]
alexju has joined #ruby
mengu has joined #ruby
mengu has quit [Changing host]
mengu has joined #ruby
Wolland has joined #ruby
mengu has quit [Read error: Connection reset by peer]
mengu has joined #ruby
mengu has quit [Changing host]
mengu has joined #ruby
mengu has quit [Read error: Connection reset by peer]
mengu has joined #ruby
mengu has quit [Changing host]
mengu has joined #ruby
mengu has quit [Read error: Connection reset by peer]
hellangel7 has joined #ruby
mengu has joined #ruby
mockra has joined #ruby
jottr has joined #ruby
mengu has quit [Read error: Connection reset by peer]
sylvanica has quit [Ping timeout: 240 seconds]
tlarevo has quit [Ping timeout: 255 seconds]
mengu has joined #ruby
mengu has quit [Read error: Connection reset by peer]
mengu has joined #ruby
mengu has quit [Changing host]
mengu has joined #ruby
mengu has quit [Read error: Connection reset by peer]
mengu has joined #ruby
mengu has quit [Changing host]
mengu has joined #ruby
mengu has quit [Read error: Connection reset by peer]
grenierm has joined #ruby
Xiti` has quit [Quit: Leaving]
ndrei has quit [Ping timeout: 245 seconds]
mengu__ has joined #ruby
dblessing has joined #ruby
duggiefresh has joined #ruby
Xiti has joined #ruby
ixti has joined #ruby
mupkoo has quit []
mijicd has quit [Quit: leaving]
mary5030 has joined #ruby
mengu_ has joined #ruby
mengu_ has quit [Changing host]
mengu_ has joined #ruby
mengu_ has quit [Read error: Connection reset by peer]
Wolland has quit [Ping timeout: 250 seconds]
mr-foobar has joined #ruby
mengu_ has joined #ruby
Insanity133 has joined #ruby
mockra has quit [Ping timeout: 272 seconds]
techsethi has quit [Quit: techsethi]
Lewix has joined #ruby
mengu_ has quit [Read error: Connection reset by peer]
mengu_ has joined #ruby
wombo has joined #ruby
mengu_ has quit [Read error: Connection reset by peer]
mengu_ has joined #ruby
riotjones has joined #ruby
riotjone_ has quit [Read error: Connection reset by peer]
momomomomo has quit [Ping timeout: 245 seconds]
joonty has quit [Quit: Leaving]
spider-mario has joined #ruby
mengu_ has quit [Read error: Connection reset by peer]
spider-mario has quit [Read error: Connection reset by peer]
momomomomo has joined #ruby
mengu__ has quit [Ping timeout: 250 seconds]
mengu has joined #ruby
emocakes has joined #ruby
mengu has quit [Read error: Connection reset by peer]
gr33n7007h has joined #ruby
mengu has joined #ruby
mengu has quit [Read error: Connection reset by peer]
mercerist has quit [Quit: Computer has gone to sleep.]
yalue has joined #ruby
mengu has joined #ruby
ndrei has joined #ruby
mengu has quit [Read error: Connection reset by peer]
Cheezebox has quit [Remote host closed the connection]
spider-mario has joined #ruby
mengu has joined #ruby
mengu has quit [Changing host]
mengu has joined #ruby
mengu has quit [Read error: Connection reset by peer]
mengu has joined #ruby
mengu has quit [Changing host]
mengu has joined #ruby
mengu has quit [Read error: Connection reset by peer]
Cort3z has joined #ruby
mengu has joined #ruby
Takle has quit [Remote host closed the connection]
mengu has quit [Read error: Connection reset by peer]
mengu has joined #ruby
mengu has quit [Changing host]
mengu has joined #ruby
pranny has quit [Quit: Leaving.]
mengu has quit [Read error: Connection reset by peer]
mengu has joined #ruby
mengu has quit [Changing host]
mengu has joined #ruby
agrinb has joined #ruby
mengu has quit [Read error: Connection reset by peer]
mengu has joined #ruby
mengu has quit [Changing host]
mengu has joined #ruby
mengu has quit [Read error: Connection reset by peer]
koderok has joined #ruby
mengu has joined #ruby
mengu has quit [Read error: Connection reset by peer]
balazs has joined #ruby
alexju has quit [Read error: Connection reset by peer]
alexju has joined #ruby
Zenigor has joined #ruby
Cort3z has quit [Ping timeout: 246 seconds]
mengu_ has joined #ruby
mengu_ has quit [Changing host]
mengu_ has joined #ruby
mengu_ has quit [Read error: Connection reset by peer]
mengu_ has joined #ruby
mengu_ has quit [Changing host]
mengu_ has joined #ruby
sethetter has joined #ruby
agrinb has quit [Ping timeout: 240 seconds]
mengu___ has joined #ruby
mengu___ has quit [Read error: Connection reset by peer]
<sethetter> If I'm using RSpec to test a module that uses an AR model, is it best to stub out the model class as a class with empty methods in the test file, or use something like RSpec double or mocks?
arturaz has joined #ruby
mengu___ has joined #ruby
rimenes has joined #ruby
mengu___ has quit [Read error: Connection reset by peer]
Takle has joined #ruby
mengu___ has joined #ruby
<sethetter> s/stub out/overwrite
<pontiki> i prefer the mocks
mengu___ has quit [Read error: Connection reset by peer]
freerobby has quit [Quit: Leaving.]
mengu has joined #ruby
mengu has quit [Changing host]
mengu has joined #ruby
mengu has quit [Read error: Connection reset by peer]
Channel6 has joined #ruby
mengu has joined #ruby
moritzs has joined #ruby
krz has joined #ruby
mikepack has joined #ruby
mengu has quit [Read error: Connection reset by peer]
mengu has joined #ruby
arup_r has quit []
mikepack has quit [Remote host closed the connection]
tkuchiki has quit [Remote host closed the connection]
mengu has quit [Read error: Connection reset by peer]
linojon has joined #ruby
mengu has joined #ruby
phutchin1 is now known as phutchins
mengu_ has quit [Ping timeout: 272 seconds]
mengu__ has joined #ruby
mikepack has joined #ruby
mengu_ has joined #ruby
mengu_ has quit [Changing host]
mengu_ has joined #ruby
nobitanobi has joined #ruby
djcp has joined #ruby
djcp has left #ruby [#ruby]
<gr33n7007h> Is IO::NULL equivalent to pythons os.devnull ?
sectionme has quit [Read error: Connection reset by peer]
jottr has quit [Ping timeout: 245 seconds]
mengu___ has joined #ruby
ndrei has quit [Ping timeout: 250 seconds]
qwyeth has joined #ruby
mengu___ has quit [Read error: Connection reset by peer]
yfeldblum has joined #ruby
bjz has joined #ruby
spyderman4g63 has quit [Remote host closed the connection]
mengu___ has joined #ruby
mengu has quit [Ping timeout: 250 seconds]
<Thanatermesis> match /(memo|note|tell) (.+?) ?(that) (.+)/
mengu___ has quit [Read error: Connection reset by peer]
spyderman4g63 has joined #ruby
joast has joined #ruby
<Thanatermesis> this doesn't seems to work
mengu has joined #ruby
mengu has quit [Changing host]
mengu has joined #ruby
<Thanatermesis> "that" is an optional word to ignore
mengu has quit [Read error: Connection reset by peer]
<canton7> rubular.com - create and link something which demonstrates the problem
<Thanatermesis> it is correctly set as ?(that) ?
mengu has joined #ruby
mengu has quit [Read error: Connection reset by peer]
nobitanobi has quit [Ping timeout: 240 seconds]
snath has quit [Ping timeout: 240 seconds]
mengu has joined #ruby
mengu__ has quit [Ping timeout: 260 seconds]
livingstn has joined #ruby
mengu has quit [Read error: Connection reset by peer]
<hoelzro> Thanatermesis: no
<hoelzro> (that)?
<hoelzro> the question mark follows the expr to ignore
mengu_ has quit [Ping timeout: 272 seconds]
Neo-- has joined #ruby
mengu__ has joined #ruby
iamjarvo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
SCHAAP137 has quit [Remote host closed the connection]
mengu__ has quit [Read error: Connection reset by peer]
mengu__ has joined #ruby
mengu__ has quit [Read error: Connection reset by peer]
Neo-- has quit [Read error: Connection reset by peer]
mengu__ has joined #ruby
GriffinHeart has quit [Remote host closed the connection]
mengu__ has quit [Read error: Connection reset by peer]
yfeldblum has quit [Ping timeout: 255 seconds]
dawkirst has quit [Remote host closed the connection]
Neo-- has joined #ruby
<Hanmac> gr33n7007h: depends, is " os.devnull " a string or an IO object?
Neo-- has quit [Read error: Connection reset by peer]
mikepack has quit [Remote host closed the connection]
Wolland has joined #ruby
Neo-- has joined #ruby
mikepack has joined #ruby
<gr33n7007h> Hanmac, a string
mikepack has quit [Remote host closed the connection]
iamjarvo has joined #ruby
<Hanmac> >> IO::NULL
<eval-in> Hanmac => "/dev/null" (https://eval.in/183557)
iamjarvo has quit [Max SendQ exceeded]
mengu_ has joined #ruby
mengu_ has quit [Changing host]
mengu_ has joined #ruby
<Hanmac> if "os.devnull" does return the same, then its equivalent
mengu_ has quit [Read error: Connection reset by peer]
<gr33n7007h> os.devnull return '/dev/null' so there equivalent
mengu has joined #ruby
alexju has quit [Read error: Connection reset by peer]
mengu has quit [Changing host]
mengu has joined #ruby
<momomomomo> they're*
mengu has quit [Read error: Connection reset by peer]
sambao21 has quit [Quit: Computer has gone to sleep.]
<gr33n7007h> momomomomo, my mistake lol
alexju has joined #ruby
johndeeer has quit [Ping timeout: 245 seconds]
armanghassemi__ has joined #ruby
mengu has joined #ruby
mengu has quit [Read error: Connection reset by peer]
Takle has quit [Remote host closed the connection]
mengu has joined #ruby
mengu has quit [Changing host]
mengu has joined #ruby
cpruitt has joined #ruby
Channel6 has quit [Quit: Leaving]
mengu has quit [Write error: Connection reset by peer]
Wolland has quit [Ping timeout: 246 seconds]
mengu has joined #ruby
mengu has quit [Read error: Connection reset by peer]
mengu has joined #ruby
mengu has quit [Changing host]
mengu has joined #ruby
mengu has quit [Read error: Connection reset by peer]
philcrissman has joined #ruby
mengu has joined #ruby
ndrei has joined #ruby
mengu__ has joined #ruby
mengu__ has quit [Read error: Connection reset by peer]
mary5030 has quit [Remote host closed the connection]
momomomomo has quit [Quit: momomomomo]
mengu__ has joined #ruby
ringarin has joined #ruby
mengu__ has quit [Read error: Connection reset by peer]
W0rmDr1nk has joined #ruby
Takle has joined #ruby
mengu_ has joined #ruby
mengu_ has quit [Read error: Connection reset by peer]
<mr-foobar> in ruby is there a way I can test for an accessor -- like foo.has_accessor?(:bar)
mengu_ has joined #ruby
mengu_ has quit [Read error: Connection reset by peer]
mengu_ has joined #ruby
mengu_ has quit [Changing host]
mengu_ has joined #ruby
gauravagarwalr has quit [Remote host closed the connection]
mengu has quit [Ping timeout: 272 seconds]
braincrash has quit [Read error: Connection reset by peer]
gtrak has joined #ruby
momomomomo has joined #ruby
mengu has joined #ruby
mengu has quit [Changing host]
mengu has joined #ruby
<pontiki> mr-foobar: in ruby, accessors are just methods, so you can see if it's in the public method list: foo.public_methods.include? :bar
mengu has quit [Read error: Connection reset by peer]
mengu has joined #ruby
mengu has quit [Changing host]
mengu has joined #ruby
mengu has quit [Read error: Connection reset by peer]
gauravagarwalr has joined #ruby
rimenes has quit [Ping timeout: 260 seconds]
ndrei has quit [Ping timeout: 240 seconds]
<Hanmac> pontiki & mr-foobar isnt foo.respond_to?(:bar) better?
mengu__ has joined #ruby
tkuchiki has joined #ruby
mengu_ has quit [Ping timeout: 250 seconds]
braincrash has joined #ruby
yeticry has quit [Read error: Connection reset by peer]
wombo has quit [Ping timeout: 240 seconds]
mengu__ has quit [Read error: Connection reset by peer]
sylvanica has joined #ruby
mengu__ has joined #ruby
mengu__ has quit [Read error: Connection reset by peer]
Ankhers has joined #ruby
<gr33n7007h> Hanmac, Yep, that's better true if accessor else false
<pontiki> dont' ask me whether it's better
<mr-foobar> so I can test with the above and dod foo.bar = "xxx" ?
<mr-foobar> *do
himsin has joined #ruby
arturaz has quit [Remote host closed the connection]
mengu__ has joined #ruby
himsin has quit [Client Quit]
dawkirst has joined #ruby
mengu__ has quit [Read error: Connection reset by peer]
mengu__ has joined #ruby
phutchin1 has joined #ruby
phutchins has quit [Disconnected by services]
mengu__ has quit [Read error: Connection reset by peer]
mengu__ has joined #ruby
mengu__ has quit [Read error: Connection reset by peer]
<Hanmac> mr-foobar: hm no you need foo.respond_to?(:bar=)
mengu__ has joined #ruby
mengu__ has quit [Read error: Connection reset by peer]
qba73 has quit [Read error: Connection reset by peer]
<mr-foobar> Hanmac: exactly what I need. thx !
dawkirst_ has joined #ruby
brothmars has joined #ruby
mengu has joined #ruby
astav has joined #ruby
anarang has quit [Ping timeout: 240 seconds]
mengu__ has joined #ruby
yeticry has joined #ruby
mercerist has joined #ruby
mengu_ has joined #ruby
mengu_ has quit [Changing host]
mengu_ has joined #ruby
mengu_ has quit [Read error: Connection reset by peer]
phutchin1 is now known as phutchins
mengu_ has joined #ruby
mengu_ has quit [Changing host]
mengu_ has joined #ruby
ndrei has joined #ruby
mengu_ has quit [Read error: Connection reset by peer]
jprovazn has quit [Quit: Leaving]
mikesplain has joined #ruby
dawkirst has quit [Ping timeout: 240 seconds]
mengu_ has joined #ruby
mengu_ has quit [Read error: Connection reset by peer]
mengu_ has joined #ruby
mengu_ has quit [Changing host]
mengu_ has joined #ruby
jprovazn has joined #ruby
mengu has quit [Ping timeout: 260 seconds]
gr33n7007h has quit [Quit: Leaving]
grenierm has quit [Quit: grenierm]
mengu__ has quit [Ping timeout: 250 seconds]
klmlfl has joined #ruby
albedoa has joined #ruby
tkuchiki has quit [Remote host closed the connection]
shackleford has joined #ruby
andrewlio has joined #ruby
mengu___ has joined #ruby
mengu___ has quit [Read error: Connection reset by peer]
noop has quit [Ping timeout: 255 seconds]
iamjarvo has joined #ruby
iamjarvo has quit [Read error: Connection reset by peer]
definiv has joined #ruby
ptierno has joined #ruby
iamjarvo has joined #ruby
kaspergrubbe_ has quit [Remote host closed the connection]
mengu_ has quit [Ping timeout: 245 seconds]
mengu___ has joined #ruby
relix has quit [Read error: Connection reset by peer]
relix has joined #ruby
emocakes has quit []
mengu__ has joined #ruby
osvico has joined #ruby
mengu__ has quit [Read error: Connection reset by peer]
gaussblurinc1 has quit [Quit: Leaving.]
ghostmoth has joined #ruby
mengu__ has joined #ruby
mengu_ has joined #ruby
mengu_ has quit [Changing host]
mengu_ has joined #ruby
phutchins has quit [Quit: leaving]
Cheezebox has joined #ruby
cocotton has quit [Remote host closed the connection]
phutchins has joined #ruby
mengu_ has quit [Read error: Connection reset by peer]
mengu___ has quit [Ping timeout: 245 seconds]
jerikl has joined #ruby
mengu_ has joined #ruby
mengu_ has quit [Read error: Connection reset by peer]
mengu has joined #ruby
mengu has quit [Changing host]
mengu has joined #ruby
mengu has quit [Read error: Connection reset by peer]
mengu has joined #ruby
mengu__ has quit [Ping timeout: 240 seconds]
pigram86 has joined #ruby
tkuchiki has joined #ruby
moritzs has quit [Ping timeout: 255 seconds]
mengu__ has joined #ruby
mary5030 has joined #ruby
pigram8__ has joined #ruby
pigram86_ has quit [Read error: Connection reset by peer]
mengu_ has joined #ruby
definiv has quit [Quit: Lost terminal]
freerobby has joined #ruby
dmst has quit []
mengu_ has quit [Read error: Connection reset by peer]
britneywright has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
koderok has quit [Quit: koderok]
agjacome has quit [Quit: leaving]
mengu_ has joined #ruby
cocotton has joined #ruby
mengu_ has quit [Read error: Connection reset by peer]
jottr has joined #ruby
mengu_ has joined #ruby
mengu_ has quit [Changing host]
mengu_ has joined #ruby
mengu has quit [Ping timeout: 240 seconds]
ghostmoth has quit [Quit: ghostmoth]
mengu has joined #ruby
mengu has quit [Changing host]
mengu has joined #ruby
dmst has joined #ruby
agrinb has joined #ruby
mengu has quit [Read error: Connection reset by peer]
mengu__ has quit [Ping timeout: 250 seconds]
pigram86 has quit [Ping timeout: 246 seconds]
Cort3z has joined #ruby
Aranshada|W has quit [Ping timeout: 250 seconds]
arup_r has joined #ruby
Xeago_ has quit [Remote host closed the connection]
tobago has quit [Remote host closed the connection]
definiv has joined #ruby
mengu_ has quit [Ping timeout: 272 seconds]
Fire-Dragon-DoL has quit [Quit: Leaving.]
agrinb has quit [Ping timeout: 250 seconds]
Cort3z has quit [Ping timeout: 250 seconds]
sectionme has joined #ruby
Lwhite has joined #ruby
iamjarvo has quit [Read error: Connection reset by peer]
starkhalo has joined #ruby
iamjarvo has joined #ruby
yfeldblum has joined #ruby
_tpavel has quit [Quit: Leaving]
ayaz has joined #ruby
ayaz has quit [Max SendQ exceeded]
ayaz has joined #ruby
sethetter has left #ruby [#ruby]
Takle has quit [Remote host closed the connection]
tkuchiki has quit [Remote host closed the connection]
astav has quit [Quit: astav]
nobitanobi has joined #ruby
yfeldblum has quit [Ping timeout: 240 seconds]
tagrudev has quit [Remote host closed the connection]
ldnunes has quit [Quit: Leaving]
bashrw has joined #ruby
Takle has joined #ruby
albedoa has quit [Ping timeout: 240 seconds]
jfutbol has joined #ruby
Lewix has quit [Remote host closed the connection]
zorak8 has quit [Ping timeout: 272 seconds]
nobitanobi has quit [Ping timeout: 240 seconds]
tedwing has joined #ruby
Neo-- has quit [Read error: Connection reset by peer]
Neo-- has joined #ruby
alexju has quit [Read error: Connection reset by peer]
Aranshada|W has joined #ruby
havenwood has joined #ruby
sectionme has quit [Ping timeout: 260 seconds]
alexju has joined #ruby
asteve has joined #ruby
Wolland has joined #ruby
ringarin has quit [Read error: Connection reset by peer]
pu22l3r has joined #ruby
ldnunes has joined #ruby
iamjarvo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
anildigital is now known as zz_anildigital
zz_jrhorn424 is now known as jrhorn424
Xeago has joined #ruby
Wolland has quit [Ping timeout: 250 seconds]
spastorino has joined #ruby
sethetter has joined #ruby
mikesplain has quit []
claymore has joined #ruby
<sethetter> If I have a class that instantiates another class when a method is called and I'm trying to unit test the first class, how can I get around needing to have the second class defined with a proper initialize method?
<sethetter> (with rspec)
<crome> sethetter: show some code
Lewix has joined #ruby
aganov has quit [Remote host closed the connection]
tlarevo has joined #ruby
cy has joined #ruby
tkuchiki has joined #ruby
<sethetter> Trying to test the Importer::Bridge class, which instantiates both the Importer::BridgeRow and Importer::BridgeValidation classes. If those aren't defined and required in in the bridge.rb file my tests fail. Can't I mock those in my spec?
relix has quit [Ping timeout: 246 seconds]
max061 has joined #ruby
anaeem1_ has joined #ruby
<waxjar> i think the file where Importer::Bridge is defined should require them for you
mercerist has quit [Quit: Computer has gone to sleep.]
<waxjar> you'd want that in production, too
<sethetter> waxjar: it does
rodfersou has joined #ruby
thomasxie has left #ruby [#ruby]
<sethetter> as I was working, I hadn't defined the other classes yet, and I thought my RSpec test would have a way of not needing them to actually exist for the tests to pass
<sethetter> To keep the tests truly isolated.
max06 has quit [Ping timeout: 272 seconds]
<sethetter> Or am I going overboard here with the whole test isolation idea?
<bashrw> sethetter: it sounds like you’re using outside-in testing (test driving through mocking what you want)
<sethetter> That's what I'm going for
<sethetter> bashrw: RICK?!
<waxjar> i'd use a placeholder in the meantime, something like class X; def initialize(*); end; end
<bashrw> until you have Importer::BridgeRow and Importer::BridgeValidation, you just define those in your spec file :)
sambao21 has joined #ruby
<bashrw> yep :) hey Seth!
<sethetter> waxjar: Ok cool, I thought about that but wasn't sure if there was an Rspec helper for that
relix has joined #ruby
<sethetter> bashrw: I thought that was you! haha, how's it going?
<waxjar> possibly, idk, i do not use rspec :)
<bashrw> sethetter: waxjar’s example is the common convention imho
<sethetter> Cool, that's what I needed to know :)
<bashrw> it’s throw away code, until you have those classes properly defined
<sethetter> Thanks guys!
<sethetter> Gotcha, so once the classes are defined I should remove them, so as not needing to maintain matching classes / arity, etc?
<bashrw> yeah, it’s just a temporary bridge to avoid the undefined constant error
sparrovv_ has quit [Remote host closed the connection]
<sethetter> Perfect
<sethetter> You guys are way better than #rubyonrails, lol
sparrovv has joined #ruby
Takle has quit [Remote host closed the connection]
<sethetter> bashrw: Are you still with 8th Light?
jerikl has quit [Quit: jerikl]
jottr has quit [Ping timeout: 240 seconds]
paulfm has joined #ruby
alexju has quit [Read error: Connection reset by peer]
alexju_ has joined #ruby
Magnus has quit [Ping timeout: 250 seconds]
Neo-- has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
FarlaTux has joined #ruby
<bashrw> sethetter: no, i’m with a company called hireology now
<sethetter> Cool, still in Chicago?
mockra has joined #ruby
Guest5641 is now known as notmagic
Takle has joined #ruby
notmagic has quit [Changing host]
notmagic has joined #ruby
starless has quit [Quit: Leaving]
sparrovv has quit [Ping timeout: 240 seconds]
bthesorceror has joined #ruby
icefall has joined #ruby
failshell has joined #ruby
spider-mario has quit [Read error: Connection reset by peer]
snath has joined #ruby
<Lewix> bashrw: does hire - o-logy hire?
fantazo has joined #ruby
Neo-- has joined #ruby
gsd has joined #ruby
PHP4Ever has joined #ruby
jprovazn has quit [Quit: Leaving]
<bashrw> Lewix: we are hiring for a remote Ruby engineer right now
jottr has joined #ruby
mikesplain has joined #ruby
terrellt has joined #ruby
jshultz has joined #ruby
rjhunter has quit [Remote host closed the connection]
relix_ has joined #ruby
spider-mario has joined #ruby
relix has quit [Ping timeout: 255 seconds]
anaeem1_ has quit [Remote host closed the connection]
terrellt has quit [Remote host closed the connection]
terrellt has joined #ruby
nobitanobi has joined #ruby
<icefall> hello, I'm trying to remember the way to get the file path for a particular module, and my googling has been unsuccessful. I've used pry's functionality for this in the past, but would like to know how to accomplish this using standard irb because I often find myself on servers without extensive development environments set up on them. I've tried source_location like this: <my_class_instance>.method(:<some_method_defined_on_class>).source_location w
<icefall> hich results in nil. what's the proper invocation of source_location, or is there an easier way to find the location of a particular module without manually traversing the ruby inclusion path?
icebourg has joined #ruby
icebourg has quit [Max SendQ exceeded]
jobewan has joined #ruby
andikr has quit [Remote host closed the connection]
pu22l3r_ has joined #ruby
benzrf|offline is now known as benzrf
icebourg has joined #ruby
<jhass> icefall: on which method did you try that? it returns nil for core methods
icebourg has quit [Max SendQ exceeded]
jerikl has joined #ruby
<icefall> ahh that may very well be it
Xeago has quit [Remote host closed the connection]
<icefall> I may have used a method defined on the common ancestor object
microdex has joined #ruby
icebourg has joined #ruby
<icefall> jhass: that was exactly it! thank you
ffranz has joined #ruby
hooper has joined #ruby
Dev-Gitter has joined #ruby
tlarevo has quit [Remote host closed the connection]
albedoa has joined #ruby
pu22l3r_ has quit [Remote host closed the connection]
tlarevo has joined #ruby
pu22l3r has quit [Ping timeout: 255 seconds]
alexju_ has quit [Read error: Connection reset by peer]
<microdex> I would like to assign a category based upon a value falling anywhere within a Percent range
pu22l3r has joined #ruby
<microdex> 100 / 6
jespada has quit [Quit: Leaving]
alexju has joined #ruby
icefall has left #ruby ["Leaving..."]
vereteran has quit [Quit: ZNC - http://znc.in]
lbwski has joined #ruby
naquad has joined #ruby
<microdex> so if a value is 0-16.66=category1 16.66-33.33=category2 and so forth
<microdex> is there an easy way to do that ?
geggam has joined #ruby
Squarepy has joined #ruby
Dev-Gitter has quit [Max SendQ exceeded]
Dev-Gitter has joined #ruby
charliesome has joined #ruby
Neo-- has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<jhass> I think I'd just built a hash with (0..16.66) => 'category1' and then category = CATEGORIES.find {|range, category| range.include? value }.last
king313 has joined #ruby
king313 has joined #ruby
jmbrown412 has joined #ruby
davispuh has joined #ruby
todor has quit [Ping timeout: 272 seconds]
sambao21 has quit [Quit: Computer has gone to sleep.]
<Hanmac> jhass: hm you need to be careful because your find might return nil, and then .last does raise an Error
moted has joined #ruby
rubyracer has quit [Quit: Konversation terminated!]
<jhass> def find_category(value); return if value > 100
<jhass> || value < 0
hooper has quit [Quit: Leaving.]
spyderma_ has joined #ruby
Spami has joined #ruby
Takle has quit [Remote host closed the connection]
<Hanmac> hm ok an idea might be that: _, category = CATEGORIES.find {|range, category| range.include? value }
ayaz has quit [Quit: Textual IRC Client: www.textualapp.com]
<jhass> if we only had a find_value
jherman3 has joined #ruby
Bumptious has quit [Remote host closed the connection]
sambao21 has joined #ruby
spyderman4g63 has quit [Ping timeout: 255 seconds]
momomomomo has quit [Ping timeout: 240 seconds]
yfeldblum has joined #ruby
treehug88 has joined #ruby
poulet_a has quit [Remote host closed the connection]
bMalum has quit [Quit: bMalum]
nobitanobi has quit []
agrinb has joined #ruby
<benzrf> i was sad cuz i saw the word category but then i realized it wasnt category theory and i couldnt lecture somebody
jherman3 has quit [Client Quit]
candelabra has quit [Quit: Leaving]
zorak has joined #ruby
speaking1ode is now known as speakingcode
parduse has quit []
poulet_a has joined #ruby
tokik has quit [Ping timeout: 240 seconds]
parduse has joined #ruby
Lwhite has quit [Read error: Connection reset by peer]
tkuchiki has quit [Remote host closed the connection]
sinkensabe has quit [Remote host closed the connection]
iamjarvo has joined #ruby
yfeldblum has quit [Ping timeout: 250 seconds]
agrinb has quit [Ping timeout: 260 seconds]
krisquigley has quit [Remote host closed the connection]
shackleford has left #ruby [#ruby]
qmfnp has joined #ruby
sambao21 has quit [Quit: Computer has gone to sleep.]
cocotton has quit [Remote host closed the connection]
momomomomo has joined #ruby
diegoviola has joined #ruby
tkuchiki has joined #ruby
cocotton has joined #ruby
aspires has joined #ruby
mikepack has joined #ruby
<waxjar> range.cover? would be faster i believe
Alina-malina has quit [Quit: https://twitter.com/AleenaMaleena]
<jhass> pretty sure they're aliased on Range
orolo has joined #ruby
fabrice31 has quit [Remote host closed the connection]
iamjarvo has quit [Ping timeout: 260 seconds]
fabrice31 has joined #ruby
IceyEC has quit [Quit: leaving]
<orolo> why , (in Rails but that shouldn't matter), I can access object.param but in IRB when a create a Hash and try to reference it's keys the same way, i get method undefined?
moritzs has joined #ruby
IceyEC has joined #ruby
sdwrage has joined #ruby
<jhass> okay, they're not, but include? is optimized for the numeric case
<orolo> object.param is an active resource type object
Azzurrio has joined #ruby
<canton7> orolo, exactly, it isn't a hash
moritzs has quit [Max SendQ exceeded]
Rosa has joined #ruby
<orolo> canton7, yeah, that's what i was guessing. i should be creating a class in IRB?
tlarevo has quit [Remote host closed the connection]
chrishough has joined #ruby
<canton7> maybe you're after a Struct/OpenStruct?
moritzs has joined #ruby
<canton7> or a custom class, yeah
tlarevo has joined #ruby
sambao21 has joined #ruby
moritzs has quit [Max SendQ exceeded]
<orolo> ah, Struct. i'll try that, too. thanks canton7
timonv_ has quit [Remote host closed the connection]
tkuchiki has quit [Remote host closed the connection]
awc737 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
zz_anildigital is now known as anildigital
moritzs has joined #ruby
mikespla_ has joined #ruby
moritzs has quit [Max SendQ exceeded]
mikespla_ has quit [Max SendQ exceeded]
moritzs has joined #ruby
fabrice31 has quit [Ping timeout: 260 seconds]
moritzs has quit [Max SendQ exceeded]
HelperW_ has joined #ruby
ssvo has joined #ruby
moritzs has joined #ruby
iamjarvo has joined #ruby
mikespla_ has joined #ruby
moritzs has quit [Max SendQ exceeded]
mikespla_ has quit [Max SendQ exceeded]
mikesplain has quit [Ping timeout: 260 seconds]
<waxjar> seems like you're right jhass, not much difference with Numerics
tedwing has left #ruby [#ruby]
moritzs has joined #ruby
mikesplain has joined #ruby
Cheezebo_ has joined #ruby
moritzs has quit [Max SendQ exceeded]
Alina-malina has joined #ruby
Takle has joined #ruby
Wolland has joined #ruby
danijoo has quit [Read error: Connection reset by peer]
Cheezebox has quit [Ping timeout: 264 seconds]
<orolo> how do i get all Structs of type MyStruct?
danijoo has joined #ruby
HelperW has quit [Ping timeout: 240 seconds]
krz has quit [Quit: WeeChat 1.0]
kriskropd has quit [Quit: leaving]
kriskropd has joined #ruby
kriskropd has quit [Changing host]
kriskropd has joined #ruby
HelperW_ has quit [Ping timeout: 260 seconds]
lbwski has quit [Ping timeout: 245 seconds]
<orolo> mvmd, i think i'm getting it.
<orolo> *nevermind.
froggy_ has joined #ruby
bMalum has joined #ruby
kriskropd has quit [Client Quit]
jerikl has quit [Quit: jerikl]
Cheezebo_ has quit [Remote host closed the connection]
Wolland has quit [Ping timeout: 272 seconds]
bearish has quit [Remote host closed the connection]
froggy__ has quit [Ping timeout: 255 seconds]
iamjarvo has quit [Read error: Connection reset by peer]
iamjarvo has joined #ruby
iamjarvo has quit [Remote host closed the connection]
Cheezebo_ has joined #ruby
iamjarvo has joined #ruby
tectonic has joined #ruby
jerikl has joined #ruby
iamjarvo has quit [Read error: Connection reset by peer]
ghostmoth has joined #ruby
carraroj has joined #ruby
icarus has joined #ruby
iamjarvo has joined #ruby
lkba has quit [Ping timeout: 245 seconds]
poulet_a has quit [Quit: Quitte]
redondo has quit [Quit: Saliendo]
<Lewix> how's the well grounded rubyist latest edition. I read the second edition, I'm thinking about buying the newest one
_lexjm has joined #ruby
ssvo has quit [Ping timeout: 255 seconds]
iamjarvo has quit [Read error: Connection reset by peer]
iamjarvo has joined #ruby
albedoa has quit [Ping timeout: 240 seconds]
kriskropd has joined #ruby
b00stfr3ak has joined #ruby
pu22l3r has quit [Ping timeout: 260 seconds]
gauravagarwalr has quit [Remote host closed the connection]
amargherio has joined #ruby
sea_local has quit [Remote host closed the connection]
pu22l3r has joined #ruby
sea_local has joined #ruby
max061 has quit [Quit: Leaving.]
maestrojed has joined #ruby
parduse has quit []
parduse has joined #ruby
<havenwood> the just-released version is the second edition, maybe you read the first edition?
alexju has quit [Remote host closed the connection]
qmfnp has quit [Quit: Textual IRC Client: www.textualapp.com]
ssvo has joined #ruby
mercerist has joined #ruby
<havenwood> Lewix: thanks for reminding me to read it! read through an EAP version, that was great, but it only had a few chapters.
<Lewix> havenwood: yup , I meant the first edition
<Lewix> havenwood: is it worth the price though, especially if you have the first edition
Cort3z has joined #ruby
<havenwood> i didn't have the first edition
alexju has joined #ruby
enebo has joined #ruby
craigp has quit [Remote host closed the connection]
sea_local has quit [Ping timeout: 255 seconds]
<havenwood> Lewix: probably worth the price to someone just learning, since the detailed examples actually work in modern Ruby - the first edition starts (they provided it with a purchase of the second) starts right off with examples that don't work
wallerdev has joined #ruby
<havenwood> Lewix: if you've already read the first edition, i'm not sure it's worth it unless you just want it as a reference
max06 has joined #ruby
<Lewix> havenwood: I see. thanks
ndrei has quit [Ping timeout: 245 seconds]
<havenwood> though i haven't reviewed the diff, so i've no clue what's really substantively changed!
cocotton has quit [Remote host closed the connection]
definiv has quit [Ping timeout: 246 seconds]
<Lewix> havenwood: I kind of want to learn Go
ndrei has joined #ruby
<havenwood> Lewix: the official tutorial actually covers a lot
<Lewix> havenwood: did you learn it!?
jheg has joined #ruby
momomomomo has quit [Quit: momomomomo]
beneggett has joined #ruby
blueOxigen has quit [Ping timeout: 246 seconds]
sk87 has quit [Quit: My Mac Mini has gone to sleep. ZZZzzz…]
<havenwood> Lewix: i've written a bit of Go but i'd not say i've learned it
timonv_ has joined #ruby
<jheg> hey all
Azzurrio has quit [Ping timeout: 250 seconds]
jerikl has quit [Quit: jerikl]
<havenwood> hi
mikepack_ has joined #ruby
<jheg> what is the best way to use the select method on a multi dimensional array
<jheg> ?
jottr has quit [Ping timeout: 240 seconds]
dblessing has quit [Quit: dblessing]
<crome> multi_dimensional_array.select { |arr| condition }
<jheg> is it best to flatten it first like a = are.flatten.select{|i| i == 1}
agrinb has joined #ruby
saarinen has joined #ruby
mikesplain has quit [Read error: Connection reset by peer]
momomomomo has joined #ruby
<crome> it entirely depends on what result you want to get
mityaz has quit [Quit: Leaving]
<jheg> thanks crome but I am trying to return all instances of an element in an array for example every time the integer 1 appears
mikesplain has joined #ruby
pu22l3r has quit [Remote host closed the connection]
<jheg> so without flatten it returns an empty array
<crome> if you don't care about the structure of your data you just want to go through all the elements flatten could work
momomomomo has quit [Client Quit]
sparrovv has joined #ruby
pu22l3r has joined #ruby
Neo-- has joined #ruby
<havenwood> jheg: can you show an example input and the desired output?
mikepack has quit [Ping timeout: 255 seconds]
dblessing has joined #ruby
Neo-- has quit [Read error: Connection reset by peer]
magic has joined #ruby
magic is now known as Guest15450
bthesorceror has quit [Quit: bthesorceror]
Neo-- has joined #ruby
michaeldeol has joined #ruby
charliesome has quit [Quit: zzz]
mikepack_ has quit [Remote host closed the connection]
<jhass> then flatten
cocotton has joined #ruby
<jheg> the desired output is to return each instance of where the string 'world' appears
<jheg> cool thanks all
michaeldeol has quit [Client Quit]
notmagic has quit [Ping timeout: 264 seconds]
lkba has joined #ruby
<jhass> depending on where that arrays come from you may also change the generation
charliesome has joined #ruby
Guest15450 is now known as magic
bthesorceror has joined #ruby
<jhass> for example with flat_map or something like that
magic has quit [Changing host]
magic has joined #ruby
mikepack has joined #ruby
GhettoJava has joined #ruby
saarinen has quit [Quit: saarinen]
mikesplain has quit [Ping timeout: 240 seconds]
gaussblurinc1 has joined #ruby
michaeldeol has joined #ruby
Takle has quit [Remote host closed the connection]
pietr0 has joined #ruby
hooper has joined #ruby
freeone3000 has joined #ruby
<freeone3000> !rails
pietr0 has quit [Client Quit]
<jhass> freeone3000: #rubyonrails
<freeone3000> jhass: Thanks.
microdex has quit [Remote host closed the connection]
mikesplain has joined #ruby
pietr0 has joined #ruby
maestrojed has quit [Quit: Computer has gone to sleep.]
Neo-- has quit [Read error: Connection reset by peer]
Rosa is now known as Jarboe
Neo-- has joined #ruby
craigp has joined #ruby
bricker`work has joined #ruby
max06 has quit [Quit: Leaving.]
yfeldblum has joined #ruby
patrick99e99 has joined #ruby
pu22l3r has quit [Remote host closed the connection]
osvico has quit [Ping timeout: 245 seconds]
Neo-- has quit [Read error: Connection reset by peer]
philcrissman has quit [Remote host closed the connection]
jack_rabbit has joined #ruby
Neo-- has joined #ruby
zeusmns has joined #ruby
philcrissman has joined #ruby
_cpt_yossarian_ has quit [Quit: Leaving]
pietr0_ has joined #ruby
cpt_yossarian has joined #ruby
pietr0 has quit [Ping timeout: 240 seconds]
pietr0_ is now known as pietr0
Neo-- has quit [Client Quit]
albedoa has joined #ruby
terrellt has quit [Quit: Leaving...]
yfeldblum has quit [Ping timeout: 260 seconds]
philcrissman has quit [Ping timeout: 260 seconds]
anildigital is now known as rubydiamond
pu22l3r has joined #ruby
hamakn has quit [Remote host closed the connection]
charliesome has quit [Quit: zzz]
Moeh has joined #ruby
momomomomo has joined #ruby
ghostmoth has quit [Quit: ghostmoth]
<Moeh> What is the best way to create a persistent connection between a client and a server in Ruby. Meaning I would like to have one C&C server and several clients that listen for commands from the server (and recreate the connection if it times out etc.)
<Moeh> Would you suggest TCP sockets?
goshdragon has joined #ruby
mockra_ has joined #ruby
GriffinHeart has joined #ruby
AndChat| has joined #ruby
cndiv has joined #ruby
goshdragon has quit [Client Quit]
sailias has joined #ruby
goshdragon has joined #ruby
goshdragon is now known as goshdarnyou
lkba has quit [Ping timeout: 255 seconds]
mercerist has quit [Quit: Computer has gone to sleep.]
mockra has quit [Ping timeout: 245 seconds]
<havenwood> Moeh: I'd suggest looking into Server-Sent Events.
kenneth has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
todor has joined #ruby
<Moeh> havenwood: The client would not use a server
<Moeh> * browser
maestrojed has joined #ruby
HelperW_ has joined #ruby
apeiros has joined #ruby
jhc76 has joined #ruby
ghr has quit [Ping timeout: 245 seconds]
ordomoko has quit [Remote host closed the connection]
<havenwood> Moeh: How about be fancy and use DRb or DCell? :P
awc737 has joined #ruby
<mikecmpbll> what's the simplest way to get a string repeated x number of times?
<mikecmpbll> a new string that contains the original string repeated*
jrhorn424 is now known as zz_jrhorn424
<havenwood> >> "na"*16
<eval-in> havenwood => "nananananananananananananananana" (https://eval.in/183615)
<havenwood> batman
<mikecmpbll> woops, was doing 16*"na"
* mikecmpbll facepalms
<mikecmpbll> thanks havenwood
timonv_ has quit [Remote host closed the connection]
geggam has quit [Ping timeout: 240 seconds]
troyready has joined #ruby
alex88 has quit [Quit: Leaving...]
jheg has quit [Quit: jheg]
wallerdev has quit [Quit: wallerdev]
max06 has joined #ruby
rubyracer has joined #ruby
Wolland has joined #ruby
roolo has quit [Quit: Leaving...]
max06 has quit [Client Quit]
cy has quit [Ping timeout: 255 seconds]
beneggett has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
mikecmpbll has quit [Ping timeout: 245 seconds]
techsethi has joined #ruby
sea_local has joined #ruby
matlle has joined #ruby
jusmyth has joined #ruby
Wolland has quit [Ping timeout: 240 seconds]
aspires has quit []
mikecmpbll has joined #ruby
tectonic has quit []
Spami has quit [Quit: This computer has gone to sleep]
philcrissman has joined #ruby
dumdedum has quit [Ping timeout: 245 seconds]
ghostmoth has joined #ruby
cocotton has quit [Remote host closed the connection]
aspires has joined #ruby
wjimenez_ has joined #ruby
terrellt has joined #ruby
Eiam has quit [Ping timeout: 255 seconds]
_alexandros_ has quit [Quit: Textual IRC Client: www.textualapp.com]
todor has quit [Ping timeout: 260 seconds]
<Moeh> Is it possible to send a json file via a socket?
iMe has quit [Ping timeout: 260 seconds]
<Hanmac> Moeh: why shouldnt that be possible?
<freeone3000> Moeh: Given that you can send anything via a socket, and a json file is an element of the set "anything", yes.
<Moeh> Great, thx!
<havenwood> Moeh: It's popular even. ;)
axsuul has joined #ruby
CaptainJet has joined #ruby
chrishough has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
cocotton has joined #ruby
cocotton has quit [Remote host closed the connection]
<havenwood> Moeh: Ye ole JSON REST API.
matlle has quit [Ping timeout: 255 seconds]
cocotton has joined #ruby
Moeh has left #ruby [#ruby]
luckyruby has joined #ruby
techsethi has quit [Quit: techsethi]
aspires has quit []
max06 has joined #ruby
geggam has joined #ruby
Takle has joined #ruby
sambao21 has quit [Quit: Computer has gone to sleep.]
deric_skibotn has joined #ruby
orolo has quit [Quit: This computer has gone to sleep]
ghr has joined #ruby
aspires has joined #ruby
koderok has joined #ruby
kenneth has joined #ruby
koderok has quit [Remote host closed the connection]
saarinen has joined #ruby
terrellt has quit [Remote host closed the connection]
djbkd has joined #ruby
terrellt has joined #ruby
LiohAu has quit [Quit: LiohAu]
michaeldeol has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Cheezebo_ has quit [Remote host closed the connection]
lmickh has joined #ruby
nobitanobi has joined #ruby
sambao21 has joined #ruby
momomomomo has quit [Quit: momomomomo]
ghr has quit [Ping timeout: 260 seconds]
ndrei has quit [Ping timeout: 240 seconds]
charliesome has joined #ruby
mikeric has joined #ruby
Cheezebox has joined #ruby
apeiros has quit [Remote host closed the connection]
apeiros has joined #ruby
wallerdev has joined #ruby
Wolland has joined #ruby
timonv_ has joined #ruby
nanoyak has joined #ruby
skolman_ has joined #ruby
Eiam has joined #ruby
nanoyak has quit [Client Quit]
skolman_ has quit [Remote host closed the connection]
goleldar has joined #ruby
shredding has quit [Quit: shredding]
timonv_ has quit [Remote host closed the connection]
skolman_ has joined #ruby
HelperW_ has quit [Quit: Computer has gone to sleep.]
apeiros has quit [Ping timeout: 245 seconds]
Spami has joined #ruby
HelperW_ has joined #ruby
techsethi has joined #ruby
CaptainJet has quit [Ping timeout: 250 seconds]
CaptainJet has joined #ruby
Sht0 has quit [Ping timeout: 255 seconds]
timonv_ has joined #ruby
bthesorceror has quit [Quit: bthesorceror]
jack_rabbit has quit [Ping timeout: 250 seconds]
<benzrf> je old
Xeago has joined #ruby
<benzrf> *ye old
benlieb has joined #ruby
iMe has joined #ruby
pigram8__ has quit []
timonv_ has quit [Remote host closed the connection]
lw has joined #ruby
HelperW_ has quit [Ping timeout: 240 seconds]
<benlieb> Am I missing something obvious in my case syntax or understanding of how case works? Even when this resource.class is one of the following classes, the block is never entered... https://gist.github.com/pixelterra/60205d33de8f8fb90c97
benlieb has left #ruby [#ruby]
bearish has joined #ruby
benlieb has joined #ruby
chrishough has joined #ruby
<waxjar> resource alone is enough :)
<benlieb> waxjar: really?
jonathan_alban has joined #ruby
nanoyak has joined #ruby
hsps_ has quit [Quit: Leaving]
michaeldeol has joined #ruby
sailias has quit [Quit: Leaving.]
<benlieb> resource is a model instance...
<benlieb> is case not doing an equiv match?
mercerist has joined #ruby
momomomomo has joined #ruby
cocotton has quit [Remote host closed the connection]
<freeone3000> When does Etc.sysconfdir() return nil?
<waxjar> yep, case uses #===, and Class#=== Class returns false, but Class#=== Class.new returns true
gregf has quit [Quit: WeeChat 0.4.3]
Takle has quit [Remote host closed the connection]
shackleford has joined #ruby
iMe has quit [Ping timeout: 260 seconds]
<benlieb> waxjar: ok, i see that you are right, my test passes. But I'm not sure I fully understand. What is calling the Class.new?
<waxjar> It's just an example, makes an instance of Class
timonv_ has joined #ruby
beneggett has joined #ruby
relix_ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<jhass> benlieb: case calls the #=== method on the item in the when clause with the value provided in the case clause
<benlieb> waxjar: but this: case resource when TheRightClass now works but resource is a TheRightClass instance, not the class itself.
<waxjar> yes, that's how Class#=== works
<benlieb> so I guess I don't get why say a lesson instance is === Lesson. Time to read up I guess :)
mercerist has quit [Ping timeout: 246 seconds]
<waxjar> it checks if the other is an instance
<Mon_Ouie> SomeClass === x is the same as x.is_a? SomeClass
<waxjar> because now you're using #=== on the instance, not on the Lesson class
<noshi> would it be a stupid idea, do you think, to override Kernel#warn to use a special logger?
<waxjar> >> ["" === String, String === ""]
<eval-in> waxjar => [false, true] (https://eval.in/183629)
niklasb has joined #ruby
iMe has joined #ruby
cocotton has joined #ruby
cocotton has quit [Remote host closed the connection]
cocotton has joined #ruby
<benlieb> hm, this from SO: No, it's not like "could be equal, sorta". The comparison of the left and right sides of === changes, depending on what types the objects are; It's a context-sensitive comparison. You need to study and experiment with case/when or === in IRB to see it in action. 1===1 compares two Fixnum for equal values. (1..3)===1 looks in the range to see if 1 is included. It's much more than a simple equality test and because of the
<benlieb> context-sensitive nature of it you can't necessarily substitute === and ==.
<benlieb> or would you agree with these, also from SO: " Basically, it's a boolean operator which asks the question "If I have a drawer labelled a would it make sense to put b in that drawer?" "An alternative formulation is "If a described a set"would b be a member of that set?"
chrisramon has joined #ruby
techsethi has quit [Ping timeout: 250 seconds]
chrisramon has quit [Client Quit]
shackleford has quit [Ping timeout: 245 seconds]
techsethi has joined #ruby
magic has quit [Ping timeout: 264 seconds]
<noshi> hm I think it's a nice idea. let's.
<noshi> ty
* noshi afk
<waxjar> yeah, i don't see anything wrong with them benlieb
zz_jrhorn424 is now known as jrhorn424
bthesorceror has joined #ruby
<benlieb> waxjar: yet again I'm baffled that I didn't understand this fundamental ruby thing. I've just found that: (1..5) === 1 => true 1 === (1..5) => false
ndrei has joined #ruby
jusmyth has left #ruby [#ruby]
mrsolo has joined #ruby
Zenigor has quit [Remote host closed the connection]
<benlieb> On this page http://stackoverflow.com/questions/4467538/what-does-the-operator-do-in-ruby someone recommends that === means "It's "really equal, I mean it!", and it has 11 votes, and that's what it seems to mean in most languages, but it would seem that this is not really a correct statement.
<benlieb> not in ruby
skolman_ has quit [Remote host closed the connection]
alex88 has joined #ruby
<benlieb> now to figure out if case uses === which one goes on the left...
chipotle has joined #ruby
<jhass> === has that meaning in php at least, in ruby it's inverse with equal? being the strongest, then eql?/== and then ===
<waxjar> the objects in the when clauses
sparrovv has quit [Remote host closed the connection]
chipotle has quit [Max SendQ exceeded]
kayloos has quit [Remote host closed the connection]
magic has joined #ruby
<benlieb> jhass: I somewhat assumed this until now. It appears that === has more to do with set inclusion that equality.
sparrovv has joined #ruby
<benlieb> jhass: Lesson.first === Lesson => false, Lesson === Lesson.first => true
chipotle has joined #ruby
<jhass> in the end it depends on what you call it on, different classes have different implementations
obs has joined #ruby
jay_ has joined #ruby
havenwood has quit [Remote host closed the connection]
<benlieb> jhass: yeah, that's sounds a bit disastrous to me right now.
spyderma_ has quit [Remote host closed the connection]
icebourg has quit []
<waxjar> you generally don't use #=== in your code directly
<jhass> it's true for like all operators in ruby
HelperW_ has joined #ruby
<jhass> even !
<waxjar> in case statements it makes for pretty and clear code
IceDragon has joined #ruby
spyderman4g63 has joined #ruby
jprovazn has joined #ruby
rimenes has joined #ruby
<benlieb> waxjar: I don't tend to have need for === in my code for some reason. Maybe that's because I didn't understand it. I guess case is the only time I'm forced to use it.
jxf has quit [Ping timeout: 240 seconds]
skolman has joined #ruby
<eam> which equality method do you use to differentiate 0.0 and -0.0 ?
cy has joined #ruby
sparrovv has quit [Ping timeout: 250 seconds]
sepp2k has quit [Quit: Konversation terminated!]
<benlieb> eam: unfortunately what you wrote turned into emoticons in my app..
janmuffino_ has quit [Ping timeout: 246 seconds]
definiv has joined #ruby
<eam> benlieb: you need a better irc client :P floating point zero, and floating point negative zero
Zenigor has joined #ruby
<benlieb> eam: yeah, that's something I do all the time :)
<benlieb> I always use === for that.
<benlieb> lol
<eam> won't work
sk87 has joined #ruby
<waxjar> >> 0.0 === -0.0
<eval-in> waxjar => true (https://eval.in/183643)
<waxjar> >> 0.0 == -0.0
<eval-in> waxjar => true (https://eval.in/183644)
claymore has quit [Ping timeout: 255 seconds]
<waxjar> that's what i'd expect tbh, but it's wrong i assume?
<jay_> I'm trying to add a flag to a the command line executable, can somebody help me. https://gist.github.com/anonymous/cbdcf7191f3a15736277
FifthWall is now known as Zimgir
<yxhuvud> waxjar: it is not wrong. It behaves as specified by standard.
einarj has quit [Remote host closed the connection]
claymore has joined #ruby
ringarin has joined #ruby
<yxhuvud> the issue with comparing equality with floating point numbers is more that many operations isn't totally exact, meaning you get an error margin.
<yxhuvud> (which may end up arbitrarily large)
matlle has joined #ruby
Zimgir is now known as FifthWall
Takle has joined #ruby
cocotton has quit [Remote host closed the connection]
Azulinho has quit [Ping timeout: 272 seconds]
sk87 has quit [Quit: My Mac Mini has gone to sleep. ZZZzzz…]
emmesswhy has joined #ruby
cocotton has joined #ruby
cocotton has quit [Remote host closed the connection]
sinkensabe has joined #ruby
W0rmDr1nk has quit [Ping timeout: 240 seconds]
cocotton has joined #ruby
OffTheRails has quit [Ping timeout: 260 seconds]
dawkirst_ has quit [Remote host closed the connection]
<freeone3000> It won't end up arbitrarily large. In fact, it's fairly easy to calculate exactly how much error you have for any given operation, and it maxes out at 24 ulps.
thams has joined #ruby
dawkirst has joined #ruby
<freeone3000> >> 1 / 0.0
<eval-in> freeone3000 => Infinity (https://eval.in/183654)
<freeone3000> >> 1 / -0.0
<eval-in> freeone3000 => -Infinity (https://eval.in/183655)
<eam> that's why it's an interesting question as to how to tell the difference
Squarepy has quit [Quit: Leaving]
PHP4Ever has quit [Quit: Leaving]
Dev-Gitter has quit [Quit: Leaving]
FarlaTux has quit [Quit: Leaving]
<wallerdev> good morning
<eam> the sign of a float value isn't a matter of precision
<eam> it's a binary state
nanoyak has quit [Quit: Computer has gone to sleep.]
<freeone3000> eam: That's the function I use, by the way. Positive one divided by positive zero is positive infinity, and positive one divided by positive zero is negative infinity.
gauravagarwalr has joined #ruby
amargherio has quit [Remote host closed the connection]
<freeone3000> Err. Positive one divided by *negative* zero is negative infinity.
<wallerdev> positive 0 :|
<jhass> >> 0.0.equal? -0.0
<eval-in> jhass => false (https://eval.in/183656)
<freeone3000> wallerdev: "non-negative zero", then.
<eam> wallerdev: no, positive 0.0 -- different :)
yetanotherdave has joined #ruby
<wallerdev> silly computer math :p
ndrei has quit [Ping timeout: 250 seconds]
malkomalko has joined #ruby
<eam> it's not specific to computers really
<waxjar> #equal? is supposed to test object equality though, "".equal? "" returns false as well
<wallerdev> what else has negative zeros?
<eam> >> -0.0.to_s == 0.0.to_s
<eval-in> eam => false (https://eval.in/183657)
QQ has joined #ruby
dawkirst has quit [Ping timeout: 240 seconds]
hellangel7 has quit [Read error: Connection reset by peer]
<freeone3000> wallerdev: Limits.
claw_ has joined #ruby
<jhass> >> 0.0.equal? -(-0.0)
<eval-in> jhass => false (https://eval.in/183658)
<jhass> mmh :D
QQ has quit [Client Quit]
<wallerdev> do limits have negative zeros?
<eam> fun fact, -(-0.0) only calls one operator
<eam> one method, I should say
hellangel7 has joined #ruby
<wallerdev> i cant think of a limit problem ive done where the answer was -0 haha
<jhass> fun fact, it's true in my pry
<freeone3000> wallerdev: Notation for a one-sided limit for x being negative and approaching zero is "x -> -0", so... yes.
<eam> jhass: neat!
<wallerdev> oh sure
<wallerdev> approaching a limit from one side vs the other
matlle has quit [Ping timeout: 250 seconds]
claw has quit [Ping timeout: 264 seconds]
callenb_ has joined #ruby
<yxhuvud> freeone3000: yes, any *single* operation has a bounded error, but if you have a whole series you may end up with cancellation errors that eat up all precision in no time.
<jhass> 20>> 0.0.equal? -(-0.0)
<eval-in> jhass => false (https://eval.in/183659)
<freeone3000> yxhuvud: Which is why it's bounded at 24 ulps. :)
<jhass> okay, that's not it
<wallerdev> but i feel like thats just a notation thing, i dont think it actually means negative 0 haha
cDuff has joined #ruby
cDuff is now known as nDuff
relix has joined #ruby
shackleford has joined #ruby
hellangel7 has quit [Max SendQ exceeded]
jonathan_alban has quit [Quit: Textual IRC Client: www.textualapp.com]
momomomomo_ has joined #ruby
olivier_bK has quit [Ping timeout: 250 seconds]
hellangel7 has joined #ruby
nanoyak has joined #ruby
havenwood has joined #ruby
icebourg has joined #ruby
Zenigor has quit []
techsethi has quit [Read error: Connection reset by peer]
lynxman has quit [Quit: leaving]
<eam> wallerdev: then what is the value of x such that x / 0 = negative infinity?
<jhass> negative 0 is positive 0, it's the same value. but -0.0 and 0.0 can be different because it can be a small value that's outside of the precision the float can represent
lynxman has joined #ruby
Fire-Dragon-DoL has joined #ruby
<jhass> >> 0.equal? -0
<eval-in> jhass => true (https://eval.in/183660)
<wallerdev> x / 0 is undefined
<Mon_Ouie> That's an integer though
<wallerdev> you can say the limit approaches negative infinity or something
<eam> and I mean in math, not in integer/float computing
timonv_ has quit [Remote host closed the connection]
<wallerdev> but without limits that problem isnt solvable
marr has quit [Ping timeout: 245 seconds]
ndrei has joined #ruby
<wallerdev> theres no x / 0 = anything but undefined
rubydiamond is now known as zz_rubydiamond
relix has quit [Ping timeout: 240 seconds]
momomomomo has quit [Ping timeout: 263 seconds]
momomomomo_ is now known as momomomomo
hellangel7 has quit [Max SendQ exceeded]
alvaro_o has joined #ruby
Xeago has quit [Ping timeout: 250 seconds]
<eam> but we do have limits
moritzs has joined #ruby
hellangel7 has joined #ruby
gauravagarwalr has quit [Remote host closed the connection]
<eam> your statement is not categorically correct :)
relix has joined #ruby
<wallerdev> yeah but you cant just apply limits to a problem that isnt defined as asking what the limit is lol
<eam> well it's an open question across all fields
ybit has quit [Changing host]
ybit has joined #ruby
jonathan_alban has joined #ruby
Xeago has joined #ruby
ybit is now known as heath
<eam> "usually it's not" is just another way of saying "sometimes it is"
amargherio has joined #ruby
zeroNones has joined #ruby
mikeric has quit []
f_vosberg has joined #ruby
f_vosberg has quit [Client Quit]
hellangel7 has quit [Max SendQ exceeded]
ndrei has quit [Ping timeout: 255 seconds]
niklasb has quit [Ping timeout: 260 seconds]
hellangel7 has joined #ruby
hellangel7 has quit [Max SendQ exceeded]
ndrei has joined #ruby
f_vosberg has joined #ruby
f_vosberg has quit [Max SendQ exceeded]
hellangel7 has joined #ruby
pandaant has quit [Remote host closed the connection]
f_vosberg has joined #ruby
mary5030 has quit [Remote host closed the connection]
f_vosberg has quit [Max SendQ exceeded]
InhalingPixels has joined #ruby
mercerist has joined #ruby
noeden has joined #ruby
AlexRussia has quit [Ping timeout: 264 seconds]
threesixes has joined #ruby
yfeldblum has joined #ruby
britneywright has joined #ruby
mercerist has quit [Client Quit]
sambao21 has quit [Quit: Computer has gone to sleep.]
djbkd has quit [Remote host closed the connection]
AlexRussia has joined #ruby
sambao21 has joined #ruby
diegoviola has quit [Ping timeout: 245 seconds]
nDuff has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
sambao21 has quit [Client Quit]
diegoviola has joined #ruby
cocotton has quit [Remote host closed the connection]
gerep has joined #ruby
mikepack has quit [Remote host closed the connection]
jimmyhoughjr has joined #ruby
<gerep> Hi all. How can I turn this array: ["20777e12f2f94dc4cfab2f9590bc0c1f", "21a8fab89e41a2d3622879ad8e5c6bf7"] into a string like this: "20777e12f2f94dc4cfab2f9590bc0c1f", "21a8fab89e41a2d3622879ad8e5c6bf7" ?
<gerep> I tried using join but it remove the " on each hash
mikepack has joined #ruby
<gerep> I need each hash to be between ""
<gerep> and separated by ,
pu22l3r_ has joined #ruby
<yxhuvud> gerep: you are making no sense at all.
kaspergrubbe_ has joined #ruby
<gerep> yxhuvud, why not?
aspires has quit []
yfeldblum has quit [Ping timeout: 264 seconds]
<gerep> yxhuvud, my question wasn't clear? :)
<jhass> .map {|hash| %Q{"#{hash}"} }.join(',')
<yxhuvud> unless you are asking for Array#join
malcolmva has quit [Ping timeout: 246 seconds]
<wallerdev> haha id just do map(&:inspect).join(', ')
mercerist has joined #ruby
Aaaal has quit [Quit: Aaaal]
mercerist has quit [Client Quit]
<gerep> yxhuvud, the problem with Array#join is that it will return: "20777e12f2f94dc4cfab2f9590bc0c1f,21a8fab89e41a2d3622879ad8e5c6bf7", I need this: "20777e12f2f94dc4cfab2f9590bc0c1f", "21a8fab89e41a2d3622879ad8e5c6bf7"
<gerep> jhass and wallerdev thanks I'll try thtat
AlexRussia has quit [Ping timeout: 240 seconds]
max06 has quit [Quit: Leaving.]
<freeone3000> When does Etc.sysconfpath() return nil?
_sillymarkets has joined #ruby
<jhass> not that this not sounds like some confusion about representation vs. value or not using the proper serializer
sambao21 has joined #ruby
orolo has joined #ruby
<_sillymarkets> Has anyone used Scruffy before? Is it possible to label secondary y axis on the right side?
AlexRussia has joined #ruby
<_sillymarkets> and graph to that axis?
andrewjanssen has joined #ruby
dopie has joined #ruby
<gerep> jhass, what does the %Q stands for?
<jhass> string literal
spyderma_ has joined #ruby
pu22l3r has quit [Ping timeout: 255 seconds]
<jhass> with interpolation
<gerep> jhass, thanks
mercerist has joined #ruby
agjacome has joined #ruby
lynxman has quit [Quit: leaving]
lynxman has joined #ruby
aspires has joined #ruby
bthesorceror has quit [Quit: bthesorceror]
zorak has quit [Ping timeout: 255 seconds]
mary5030 has joined #ruby
cocotton has joined #ruby
cocotton has quit [Remote host closed the connection]
failshell has quit [Remote host closed the connection]
cocotton has joined #ruby
kriskropd has quit [Ping timeout: 255 seconds]
failshell has joined #ruby
kriskropd has joined #ruby
spyderman4g63 has quit [Ping timeout: 260 seconds]
hephaestus_rg has joined #ruby
momomomomo has quit [Quit: momomomomo]
AlSquire has quit [Ping timeout: 260 seconds]
jerikl has joined #ruby
iMe has quit [Ping timeout: 255 seconds]
mercerist has quit [Ping timeout: 264 seconds]
sdwrage has quit [Quit: Leaving]
agjacome has quit [Ping timeout: 250 seconds]
albedoa has quit [Ping timeout: 240 seconds]
dawkirst has joined #ruby
IceDragon has quit [Ping timeout: 255 seconds]
IceDragon has joined #ruby
iMe has joined #ruby
jgrevich has joined #ruby
georgelappies has joined #ruby
yairgo has joined #ruby
yairgo has quit [Client Quit]
Ankhers has quit [Ping timeout: 264 seconds]
AlSquire has joined #ruby
yairgo has joined #ruby
sparrovv has joined #ruby
RandyT has quit [Ping timeout: 240 seconds]
timonv_ has joined #ruby
maestrojed has quit [Quit: Computer has gone to sleep.]
cpt_yossarian has quit [Quit: Leaving]
Hobogrammer has joined #ruby
sambao21 has quit [Quit: Computer has gone to sleep.]
SonicX has joined #ruby
zorak has joined #ruby
gerep has quit [Read error: Connection reset by peer]
PsionTheory has joined #ruby
testcore has joined #ruby
mikepack has quit [Remote host closed the connection]
gerep has joined #ruby
Pumukel has quit [Ping timeout: 250 seconds]
tlarevo has quit [Remote host closed the connection]
ssvo has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
IceDragon has quit [Ping timeout: 240 seconds]
Sauvin has quit [Read error: Connection reset by peer]
IceDragon has joined #ruby
sambao21 has joined #ruby
AlSquire has quit [Quit: This computer has gone to sleep]
ndrei has quit [Ping timeout: 240 seconds]
jerikl has quit [Quit: jerikl]
BigBlackCock has joined #ruby
andrewjanssen has quit [Quit: Linkinus - http://linkinus.com]
Bigtits544 has joined #ruby
<Bigtits544> hi
andrewjanssen has joined #ruby
<BigBlackCock> hi
<Bigtits544> can you rub your cock against my tits
<BigBlackCock> sure thing
<Bigtits544> ;)
<BigBlackCock> :D
<Bigtits544> There we go.
RandyT has joined #ruby
<Bigtits544> ;) ;)
BigBlackCock was banned on #ruby by Mon_Ouie [*!403ec910@gateway/web/freenode/ip.64.62.201.16]
BigBlackCock was kicked from #ruby by Mon_Ouie [BigBlackCock]
<Bigtits544> Hey bitch
Bigtits544 was banned on #ruby by Mon_Ouie [*!92736303@gateway/web/freenode/ip.146.115.99.3]
Bigtits544 was kicked from #ruby by Mon_Ouie [Bigtits544]
<wallerdev> rip
troyready has quit [Quit: Leaving]
<hoelzro> j/clear
autojack has joined #ruby
IceDragon has quit [Ping timeout: 240 seconds]
definiv has quit [Quit: Lost terminal]
IceDragon has joined #ruby
Akagi201 has quit [Remote host closed the connection]
sambao21 has quit [Quit: Computer has gone to sleep.]
Cort3z has quit [Ping timeout: 255 seconds]
momomomomo has joined #ruby
Akagi201 has joined #ruby
xcv has quit [Remote host closed the connection]
JohnBat26 has quit [Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/]
lw has quit [Quit: s]
jimms has joined #ruby
Xeago has quit [Ping timeout: 255 seconds]
senayar has joined #ruby
theo_ has joined #ruby
theo_ has quit [Remote host closed the connection]
sambao21 has joined #ruby
<autojack> can anyon help me with a strange gem dependency conflict I have? I can't figure out where it's coming from. see http://pastebin.com/5JnZTNgF
krisquigley has joined #ruby
<autojack> (may be a bundler-specific issue?)
Akagi201 has quit [Ping timeout: 250 seconds]
malcolmva has joined #ruby
txdv has quit [Read error: Connection reset by peer]
jfutbol has quit [Ping timeout: 255 seconds]
txdv has joined #ruby
ghostmoth has quit [Quit: ghostmoth]
Neo-- has joined #ruby
omosoj has joined #ruby
aspires has quit [Ping timeout: 245 seconds]
KnownSyntax_ has quit [Read error: Connection reset by peer]
KnownSyntax_ has joined #ruby
Asher has quit [Quit: Leaving.]
KnownSyntax_ has quit [Read error: Connection reset by peer]
albedoa has joined #ruby
<jhass> do you have a lock already?
<jhass> *Gemfile.lock
sh1ken has joined #ruby
jxf has joined #ruby
anarang has joined #ruby
aspires has joined #ruby
mercerist has joined #ruby
mfmfmfmfmfmf has joined #ruby
agjacome has joined #ruby
mikeric has joined #ruby
<autojack> yeah
<autojack> but the 1.6.1.3 nokogiri is not mentioned in there.
<autojack> and even deleting the lock and starting over results in the same problem.
<autojack> my assumption is that one of the gems listed as a dependency in my gemspec has jumped to a newer nokogiri dep. but I don't know how to tell which one.
mercerist has quit [Client Quit]
britneywright has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
saarinen has quit [Quit: saarinen]
djbkd has joined #ruby
gsd has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
kquig has joined #ruby
krisquigley has quit [Ping timeout: 272 seconds]
jonathan_alban has quit [Quit: Textual IRC Client: www.textualapp.com]
HelperW_ has quit [Quit: Computer has gone to sleep.]
<autojack> half the bundler commands won't even work because it immediately shows this error.
nug has quit [Ping timeout: 244 seconds]
HelperW_ has joined #ruby
aspires has quit [Ping timeout: 260 seconds]
sambao21 has quit [Quit: Computer has gone to sleep.]
<autojack> aha, I can just comment out dependencies to help narrow it down...
<autojack> there must be an easier way though.
<jhass> what happens if you add gem 'nokogiri', '~> 1.5.0' or '~> 1.6.0' to your Gemfile directly?
<jhass> does the message change?
malkomalko has quit []
<autojack> well, it appears that s.add_dependency 'fog', '~> 1.15' is the problem.
emmesswhy has quit [Quit: This computer has gone to sleep]
ringarin has quit [Quit: Leaving]
emmesswhy has joined #ruby
<autojack> but that version is really old, they are way ahead of that now.
<autojack> I don't see why that would suddenly be requiring a newer nokogiri.
<autojack> interesting question aboiut the Gemfile...
agjacome has quit [Ping timeout: 272 seconds]
Neo-- has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<jhass> fog has nokogiri ~> 1.5 locked, that does include 1.6
Wayneoween_ is now known as Wayneoween
atmosx has joined #ruby
sambao21 has joined #ruby
<autojack> fg
aspires has joined #ruby
<autojack> yeah I JUST realized, I think we need to lock ~> 1.15.0
Wayneoween has joined #ruby
Wayneoween has quit [Changing host]
<autojack> not 1.15
jusmyth1 has joined #ruby
HelperW_ has quit [Ping timeout: 255 seconds]
skolman has quit [Remote host closed the connection]
gnarld_ has joined #ruby
<autojack> hmm, maybe not.
olivier_bK has joined #ruby
robustus has quit [Ping timeout: 255 seconds]
britneywright has joined #ruby
<autojack> (this is all a pain because we're trying to maintain 1.8.7 support for this gem but various dependencies have started to break that)
yfeldblum has joined #ruby
<jhass> ~> 1.15 is >= 1.15 < 2, ~> 1.15.0 is >= 1.15.0 < 1.16
SonicX has quit [Ping timeout: 260 seconds]
<autojack> yeah I get that much. although that change resulted in other dep issues. hrmmm. so basically I'm guessing a new release of fog now requires nokogiri 1.6.
<autojack> let me try and work that out.
robustus has joined #ruby
jusmyth1 has left #ruby [#ruby]
gregf has joined #ruby
mikepack has joined #ruby
<jhass> not according to rubygems.org
noop has joined #ruby
<autojack> hm.
sinkensabe has quit [Remote host closed the connection]
<autojack> yeah you're right.
<autojack> wtf is going on then?
<jhass> post your existing .lock please
<jhass> and your bundle outdated
ghr has joined #ruby
nanoyak has quit [Quit: Computer has gone to sleep.]
<jhass> and while we're at it bundle outdated --strict
<autojack> OK.
lmickh has quit [Remote host closed the connection]
jay_ has quit [Read error: Connection reset by peer]
jay__ has joined #ruby
yfeldblum has quit [Ping timeout: 250 seconds]
<autojack> I can't run bundle outdated because it just bails with the version conflict error.
<autojack> I added the .lock contents to the pastebin.
mikepack has quit [Ping timeout: 260 seconds]
TrailerMonkey has joined #ruby
timonv_ has quit [Ping timeout: 272 seconds]
<autojack> interestingly, it has now started saying it wants nokogiri nokogiri (1.6.0) instead of the explicit 1.6.3.1...
sincereness has joined #ruby
<autojack> wonder what caused that to change.
vt102 has joined #ruby
ghr has quit [Ping timeout: 240 seconds]
havenwood has quit []
wombo has joined #ruby
banjara has joined #ruby
<jhass> where does console_app come from?
lidaaa has joined #ruby
bthesorceror has joined #ruby
<autojack> oh sorry, that's an internal thing I meant to redact. pointlessly, really. but NOT requiring that doesn't get rid of the error.
britneywright has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
gerep has quit [Read error: Connection reset by peer]
<autojack> i.e. I commented it out of the gemspec completely but I still get the dependency problem.
carraroj has quit [Ping timeout: 245 seconds]
TrailerMonkey has quit [Client Quit]
gerep has joined #ruby
m8 has joined #ruby
mikepack has joined #ruby
arup_r has quit [Quit: Leaving.]
Squarepy has joined #ruby
codecop has quit [Remote host closed the connection]
hooper has quit [Quit: Leaving.]
saarinen has joined #ruby
Xeago has joined #ruby
SonicX has joined #ruby
jerikl has joined #ruby
codecop has joined #ruby
codecop_ has joined #ruby
qmfnp has joined #ruby
mikepack has quit [Read error: Connection reset by peer]
djbkd has quit [Remote host closed the connection]
mikepack has joined #ruby
gsd has joined #ruby
codecop_ has quit [Client Quit]
itspots has joined #ruby
Cheezebox has quit [Remote host closed the connection]
Aaaal has joined #ruby
djbkd has joined #ruby
heftig has joined #ruby
Aaaal has quit [Client Quit]
michaeldeol has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
sparrovv has quit [Remote host closed the connection]
sparrovv has joined #ruby
codecop has quit [Remote host closed the connection]
amargherio has quit [Remote host closed the connection]
claymore has quit [Ping timeout: 250 seconds]
banjara has quit [Quit: Leaving.]
codecop has joined #ruby
chrishou_ has joined #ruby
claymore has joined #ruby
ghostmoth has joined #ruby
britneywright has joined #ruby
chrishough has quit [Ping timeout: 240 seconds]
omosoj has quit [Quit: Leaving]
sparrovv has quit [Ping timeout: 250 seconds]
nanoyak has joined #ruby
definiv has joined #ruby
shackleford has quit []
rtl_ is now known as rtl
Dr3amc0d3r|away has quit [Ping timeout: 245 seconds]
thams has quit [Quit: thams]
shackleford has joined #ruby
shackleford has quit [Read error: Connection reset by peer]
shackleford has joined #ruby
philcrissman has quit [Remote host closed the connection]
momomomomo_ has joined #ruby
amargherio has joined #ruby
yalue has quit [Quit: Leaving]
<autojack> ok, I am extremely confused, but I have found the commit that breaks.
emmesswhy has quit [Quit: This computer has gone to sleep]
<autojack> however, it's a one line change, and not to the gemspec or Gemfile.
ndrei has joined #ruby
<autojack> seems to make nooooo sense.
guardian has left #ruby ["WeeChat 0.4.3"]
gsd has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
bearish has quit [Remote host closed the connection]
momomomomo has quit [Ping timeout: 246 seconds]
momomomomo_ is now known as momomomomo
djbkd has quit [Remote host closed the connection]
anarang has quit [Ping timeout: 260 seconds]
michaeldeol has joined #ruby
kaspergrubbe_ has quit [Remote host closed the connection]
skolman_ has joined #ruby
Blizzy has joined #ruby
iMe has quit [Ping timeout: 272 seconds]
freeone3000 has quit [Quit: Konversation terminated!]
Kricir has joined #ruby
sailias has joined #ruby
decoponio has quit [Quit: Leaving...]
chrishou_ has quit [Quit: Textual IRC Client: www.textualapp.com]
chrishough has joined #ruby
shackleford has quit [Remote host closed the connection]
iMe has joined #ruby
RandyT has quit [Ping timeout: 250 seconds]
Dr3amc0d3r|away has joined #ruby
<autojack> finally figured it out
RandyT has joined #ruby
thams has joined #ruby
Sht0 has joined #ruby
<autojack> it was something REALLY weird to do with this gem being installed inside of an rbenv.
<autojack> a weird circular thing.
einarj has joined #ruby
pkrnj has joined #ruby
cDuff has joined #ruby
lmickh has joined #ruby
jhc76 has quit [Remote host closed the connection]
<autojack> jhass: thanks for trying to help, I appreciate it!
shackleford has joined #ruby
cDuff has quit [Read error: Connection reset by peer]
cDuff has joined #ruby
wallerdev has quit [Quit: wallerdev]
senayar has quit [Remote host closed the connection]
senayar has joined #ruby
omosoj has joined #ruby
MrL0ngbowman has joined #ruby
Insanity133 has quit [Remote host closed the connection]
Kricir has quit [Remote host closed the connection]
robbyoconnor has quit [Excess Flood]
robbyoconnor has joined #ruby
Ankhers has joined #ruby
cDuff has quit [Ping timeout: 240 seconds]
autojack has left #ruby [#ruby]
echevemaster has joined #ruby
St_Marx has quit [Quit: Ex-Chat]
enebo has quit [Quit: enebo]
vramana has joined #ruby
CaptainJet has quit [Ping timeout: 260 seconds]
starless has joined #ruby
yfeldblum has joined #ruby
crdpink has joined #ruby
spider-mario has quit [Ping timeout: 245 seconds]
heftig has quit [Ping timeout: 260 seconds]
spider-mario has joined #ruby
spider-mario has quit [Remote host closed the connection]
andrewjanssen has quit [Quit: Leaving...]
jack_rabbit has joined #ruby
andrewjanssen has joined #ruby
wombo has quit [Ping timeout: 255 seconds]
adamski2600 has joined #ruby
sepp2k has joined #ruby
Spami has quit [Quit: This computer has gone to sleep]
gnarld_ is now known as nug
mattmcclure has joined #ruby
jdguzman has joined #ruby
ssvo has joined #ruby
spider-mario has joined #ruby
DfAsuka has joined #ruby
claymore has quit [Ping timeout: 245 seconds]
vramana has quit [Quit: Page closed]
gaussblurinc1 has quit [Quit: Leaving.]
noop has quit [Ping timeout: 260 seconds]
pietr0 has quit [Quit: pietr0]
MrL0ngbowman has quit [Ping timeout: 240 seconds]
georgelappies has quit [Remote host closed the connection]
andrewjanssen has quit [Ping timeout: 245 seconds]
shackleford has quit [Remote host closed the connection]
kirun has joined #ruby
claymore has joined #ruby
rezzack has quit [Quit: Leaving.]
dorei has joined #ruby
rezzack has joined #ruby
jfutbol has joined #ruby
moritzs has quit [Ping timeout: 246 seconds]
cgaray has joined #ruby
momomomomo has quit [Ping timeout: 245 seconds]
doodlehaus has joined #ruby
moted has quit []
Jarboe has quit [Ping timeout: 260 seconds]
anarang has joined #ruby
timonv_ has joined #ruby
djbkd has joined #ruby
jay_ has joined #ruby
<benlieb> is the only way to call a class method from inside an instance method to use the name of the class?
ghr has joined #ruby
<benlieb> where both instance and class methods are in the same class.
dopie has quit [Remote host closed the connection]
heftig has joined #ruby
marr has joined #ruby
HelperW_ has joined #ruby
momomomomo has joined #ruby
phutchins has quit [Ping timeout: 250 seconds]
wallerdev has joined #ruby
<miah> self.<foo> ?
jay__ has quit [Ping timeout: 240 seconds]
<dorei> benlieb: you could use self.class.some_method
paulfm_ has joined #ruby
paulfm has quit [Ping timeout: 255 seconds]
<benlieb> dorei: just found that too. tnx!
aspires has quit []
elaptics is now known as elaptics`away
timonv_ has quit [Ping timeout: 255 seconds]
gerep has quit [Ping timeout: 250 seconds]
djbkd has quit [Ping timeout: 255 seconds]
ghr has quit [Ping timeout: 245 seconds]
claymore has quit [Quit: Leaving]
Kryptonic has joined #ruby
Kryptonical has quit [Ping timeout: 240 seconds]
aspires has joined #ruby
CaptainJet has joined #ruby
chrishough has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
HelperW_ has quit [Ping timeout: 260 seconds]
bthesorceror has quit [Quit: bthesorceror]
qmfnp has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
paulfm has joined #ruby
rodfersou has quit [Quit: leaving]
Akagi201 has joined #ruby
cocotton has quit [Ping timeout: 260 seconds]
jottr has joined #ruby
choke has quit [Read error: Connection reset by peer]
Cheezebox has joined #ruby
yfeldblum has quit [Remote host closed the connection]
paulfm_ has quit [Ping timeout: 240 seconds]
hellangel7 has quit [Read error: Connection reset by peer]
choke has joined #ruby
enebo has joined #ruby
emmesswhy has joined #ruby
Akagi201 has quit [Ping timeout: 240 seconds]
pkrnj has quit [Quit: Computer has gone to sleep.]
yfeldblu_ has joined #ruby
cgaray has quit [Quit: Page closed]
bthesorceror has joined #ruby
qmfnp has joined #ruby
moted has joined #ruby
nobitano_ has joined #ruby
saarinen has quit [Quit: saarinen]
pkrnj has joined #ruby
Morkel has quit [Quit: Morkel]
MatthewsFace has joined #ruby
moted has quit [Read error: Connection reset by peer]
mikepack has quit [Remote host closed the connection]
djbkd has joined #ruby
moritzs has joined #ruby
nobitanobi has quit [Ping timeout: 260 seconds]
chrishough has joined #ruby
Cheezebox has quit [Remote host closed the connection]
moted has joined #ruby
agrinb has quit [Remote host closed the connection]
Takle has quit [Remote host closed the connection]
manzo has joined #ruby
Neo-- has joined #ruby
noeden has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
GriffinHeart has quit [Remote host closed the connection]
jprovazn has quit [Quit: Odcházím]
ptrrr has quit [Quit: ptrrr]
shackleford has joined #ruby
mikepack has joined #ruby
RichardLitt has joined #ruby
benzrf is now known as benzrf|offline
momomomomo_ has joined #ruby
sectionme has joined #ruby
nobitano_ has quit [Remote host closed the connection]
Squarepy has quit [Quit: Leaving]
Cheezebox has joined #ruby
Dreamer3 has joined #ruby
mikesplain has quit [Ping timeout: 272 seconds]
momomomomo has quit [Ping timeout: 245 seconds]
momomomomo_ is now known as momomomomo
paulfm_ has joined #ruby
bearish has joined #ruby
ramfjord has joined #ruby
paulfm has quit [Ping timeout: 250 seconds]
sectionme has quit [Ping timeout: 246 seconds]
hooper has joined #ruby
bearish has quit [Ping timeout: 240 seconds]
Bumptious has joined #ruby
britneywright has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
agrinb has joined #ruby
linojon has quit [Quit: linojon]
qmfnp has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
jay_ has quit [Remote host closed the connection]
sinkensabe has joined #ruby
Cope_ is now known as Cope
yxhuvud has quit [Ping timeout: 240 seconds]
linojon has joined #ruby
anarang has quit [Ping timeout: 255 seconds]
philcrissman has joined #ruby
agrinb has quit [Read error: Connection reset by peer]
agrinb has joined #ruby
jottr has quit [Ping timeout: 240 seconds]
SonicX has quit [Ping timeout: 264 seconds]
Neo-- has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
gsd has joined #ruby
EminenceHC has joined #ruby
nanoyak has quit [Read error: Connection reset by peer]
toastynerd has joined #ruby
tectonic has joined #ruby
IceDragon has quit [Ping timeout: 260 seconds]
fantazo has quit [Ping timeout: 240 seconds]
nanoyak has joined #ruby
tectonic has quit [Client Quit]
crdpink has quit [Ping timeout: 240 seconds]
crdprink2 has joined #ruby
nobitanobi has joined #ruby
chipotle has quit [Quit: cya]
IceDragon has joined #ruby
saarinen has joined #ruby
Wolland is now known as Wolland_afk
<EminenceHC> I am trying to write some code to find the current bi-weekly pay period. Date.new(2014,8,25) is the monday the pay period starts. Date.new(2014,8,25).cweek => 35. So the pay period will always fall on an odd cweek. How can I create a date from the first monday of every odd cweek?
robbyoconnor has quit [Ping timeout: 250 seconds]
roolo has joined #ruby
<wallerdev> is it true that it would always be odd?
shackleford has quit [Remote host closed the connection]
godd2 has joined #ruby
Ankhers has quit [Ping timeout: 264 seconds]
<waxjar> would date.next_day(14) work?
jfutbol has quit [Remote host closed the connection]
ptrrr has joined #ruby
tectonic has joined #ruby
Spami has joined #ruby
aspires has quit []
ptrrr has quit [Client Quit]
jay_ has joined #ruby
duggiefresh has quit []
paulfm has joined #ruby
jfutbol has joined #ruby
nobitanobi has quit [Remote host closed the connection]
<EminenceHC> waxjar: That might not be now that I think about it, starting next year.
adamski2600 has quit []
<EminenceHC> waxjar: What does date.next_day(14) do?
<EminenceHC> waxjar: Oh i see now..
<waxjar> returns a date 14 days from now
<EminenceHC> wallerdev: It might not be always odd now that I think about it..
paulfm_ has quit [Ping timeout: 260 seconds]
<wallerdev> yeah seems like it wouldnt be to me haha
<wallerdev> adding 14 days sounds good though :)
benzrf|offline is now known as benzrf
Cheezebox has quit [Remote host closed the connection]
pu22l3r_ has quit [Ping timeout: 255 seconds]
Beoran__ has joined #ruby
nobitanobi has joined #ruby
lw has joined #ruby
<EminenceHC> wallerdev: waxjar: So I could do Date.new(2014,8,25).next_day(14) which would give me the next monday of the pay period.. but three months from now how could I find the closest date that follows that format?
joshbamboo1 has quit [Quit: Leaving]
<wallerdev> well if you have a start date you can always add 14 days to it til you get a date > than the current day
joshbamboo1 has joined #ruby
joshbamboo1 has quit [Remote host closed the connection]
<wallerdev> and if its > 7 days then its the one before
momomomomo_ has joined #ruby
shackleford has joined #ruby
Ilyas has quit [Ping timeout: 255 seconds]
WildBamboo-Josh has joined #ruby
goodenough has joined #ruby
momomomomo has quit [Ping timeout: 240 seconds]
momomomomo_ is now known as momomomomo
jfutbol has quit [Remote host closed the connection]
pandaant has joined #ruby
<wallerdev> might be another strategy but that one seems like itd be quick enough
momomomomo has quit [Client Quit]
<waxjar> you could use the step method: date.step(date.next_month(3), 14).to_a will give all pay-days in the next 3 months
Beoran_ has quit [Ping timeout: 260 seconds]
MrL0ngbowman has joined #ruby
paulfm has quit []
aspires has joined #ruby
<EminenceHC> wallerdev: How would that look in code? A while statement?
<wallerdev> date = 1/2/2003; while date.add_days(14) < Date.today; date = date.add_days(14); end
<wallerdev> or something
<EminenceHC> waxjar: Three months is just a number I threw out there. For any day in the future I want to be able to check which pay period it is in.
<wallerdev> err
<wallerdev> while date < Date.today sorry
<wallerdev> added twice haha
<waxjar> ah, I misunderstood
<EminenceHC> waxjar: I wasnt clear enough.
<EminenceHC> waxjar: Off topic but what does your name mean?
<wallerdev> lol
<EminenceHC> wallerdev: Thanks I will play around with that approach.
<waxjar> i couldn't think of a nickname and there was some hairwax on my desk
<EminenceHC> waxjar: LOL, I thought it meant the fun kind of wax.
definiv has quit [Quit: Lost terminal]
ghr has joined #ruby
spyderma_ has quit []
Neo-- has joined #ruby
Davedo has quit [Ping timeout: 250 seconds]
havenwood has joined #ruby
Neomex has quit [Ping timeout: 240 seconds]
Takle has joined #ruby
mr_foobar_baz has joined #ruby
mr_foobar_baz has quit [Client Quit]
sambao21 has quit [Quit: Computer has gone to sleep.]
thams has quit [Quit: thams]
ghr has quit [Ping timeout: 250 seconds]
thams has joined #ruby
bmurt has quit [Ping timeout: 250 seconds]
Jackneill has quit [Ping timeout: 246 seconds]
Davedo has joined #ruby
Akagi201 has joined #ruby
mercerist has joined #ruby
nobitano_ has joined #ruby
lazyguru has left #ruby [#ruby]
jaffachief has quit [Quit: Connection closed for inactivity]
mercerist has quit [Client Quit]
mercerist has joined #ruby
nobitanobi has quit [Ping timeout: 260 seconds]
Akagi201 has quit [Ping timeout: 255 seconds]
qmfnp has joined #ruby
Ilyas has joined #ruby
emmesswhy has quit [Quit: This computer has gone to sleep]
Ilyas has quit [Client Quit]
sailias has quit [Quit: Leaving.]
jgrevich has quit [Read error: Connection reset by peer]
jgrevich has joined #ruby
eivindml has joined #ruby
eivindml has quit [Max SendQ exceeded]
livingstn has quit []
Cheezebox has joined #ruby
eivindml has joined #ruby
eivindml has quit [Max SendQ exceeded]
sinkensabe has quit [Remote host closed the connection]
eivindml has joined #ruby
eivindml has quit [Max SendQ exceeded]
Cheezebox has quit [Remote host closed the connection]
eivindml has joined #ruby
eivindml has quit [Max SendQ exceeded]
eivindml has joined #ruby
eivindml has quit [Max SendQ exceeded]
Neomex has joined #ruby
jottr has joined #ruby
failshel_ has joined #ruby
eivindml has joined #ruby
eivindml has quit [Max SendQ exceeded]
emmesswhy has joined #ruby
eivindml has joined #ruby
CuriousMind has joined #ruby
Cheezebox has joined #ruby
eivindml has quit [Max SendQ exceeded]
<CuriousMind> Hi.
<CuriousMind> Hello.
<CuriousMind> What channel can I go to for college?
eivindml has joined #ruby
eivindml has quit [Max SendQ exceeded]
<wallerdev> like code school?
peret has joined #ruby
fold has joined #ruby
<havenwood> CuriousMind: I don't know of any irc colleges. Hem.
momomomomo has joined #ruby
<atmosx> Try #economics
eivindml has joined #ruby
<wallerdev> or #cripplingdebt
eivindml has quit [Max SendQ exceeded]
ldnunes has quit [Quit: Leaving]
armyriad has quit [Ping timeout: 246 seconds]
<CuriousMind> Havenwood! (⊙︿⊙)
Kricir has joined #ruby
<CuriousMind> Has been a long time since I seen you, hi there.
federicobucchi has joined #ruby
eivindml has joined #ruby
eivindml has quit [Max SendQ exceeded]
<havenwood> hi
<CuriousMind> You probably don't know who I am since I changed my username. I am "Noob101", I decided to get a better name.
sambao21 has joined #ruby
<CuriousMind> Hi havenwood.(◠‿◠)
eivindml has joined #ruby
eivindml has quit [Max SendQ exceeded]
teddyp1cker has quit [Remote host closed the connection]
<CuriousMind> I need a channel to go to for college, I got bad news!
failshell has quit [Ping timeout: 264 seconds]
<atmosx> ?
failshel_ has quit [Ping timeout: 240 seconds]
<CuriousMind> If anyone can give me a channel that allows those type of discussions then I would be more than happy to join the channel.
<CuriousMind> A channel that talks about college.
eivindml has joined #ruby
eivindml has quit [Max SendQ exceeded]
gsd has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<wallerdev> i dont think theres anything on freenode for that
<wallerdev> try another network
enebo has quit [Quit: enebo]
eivindml has joined #ruby
brothmars has quit [Ping timeout: 260 seconds]
eivindml has quit [Max SendQ exceeded]
dorei has quit [Ping timeout: 245 seconds]
kith_ is now known as kith
qwyeth has quit [Quit: Leaving]
sectionme has joined #ruby
eivindml has joined #ruby
eivindml has quit [Max SendQ exceeded]
robbyoconnor has joined #ruby
<havenwood> CuriousMind: #r.trees
<CuriousMind> Thank you havenwood! (◠‿◠)
eivindml has joined #ruby
eivindml has quit [Max SendQ exceeded]
<shevy> #pr0nInCollege
eivindml has joined #ruby
eivindml has quit [Max SendQ exceeded]
<CuriousMind> Awww, no one is in those channels.
<CuriousMind> :(
<CuriousMind> Ok, can I just ask the question here for crying out loud?
<atmosx> CuriousMind: what do you wanna know about college anyway?
<jhass> CuriousMind: /msg alis * -topic *college*
eivindml has joined #ruby
eivindml has quit [Max SendQ exceeded]
<CuriousMind> Hi jhass, nice to see you and ok.
benlieb has quit [Read error: Connection reset by peer]
<CuriousMind> So this is the thing folks.
* CuriousMind takes a deep deep breath
<havenwood> there're 141 people in #r.trees
<havenwood> CuriousMind: ^
<CuriousMind> Oh ok, I will check it out.
benlieb has joined #ruby
eivindml has joined #ruby
<CuriousMind> So basically to cut the bullshit and get to the point.
eivindml has quit [Max SendQ exceeded]
linguini has joined #ruby
<CuriousMind> I Morehouse college wants me.
<atmosx> you can try on #linux too, I'm sure there are plenty of people there too.
Takle has quit [Remote host closed the connection]
dbasch has joined #ruby
gsd has joined #ruby
eivindml has joined #ruby
eivindml has quit [Max SendQ exceeded]
robbyoconnor has quit [Client Quit]
dbasch has quit [Client Quit]
<atmosx> CuriousMind: do they want you to play on the basketball team or something?
eivindml has joined #ruby
sylvanica has quit [Quit: sylvanica]
eivindml has quit [Max SendQ exceeded]
sectionme has quit [Ping timeout: 240 seconds]
<CuriousMind> atmosx, hmm. I don't know. Give me a second please.
<atmosx> I'm off to bed, so you have more than a second ;-)
<atmosx> night guys
<CuriousMind> In the meanwhile, is that college bad? It's a historically black college and I don't like being around so many african americans.
eivindml has joined #ruby
<CuriousMind> atmosx, night cya.
eivindml has quit [Max SendQ exceeded]
<jhass> m(
atmosx has quit [Quit: Textual IRC Client: www.textualapp.com]
alex88 has quit [Quit: Leaving...]
eivindml has joined #ruby
eivindml has quit [Max SendQ exceeded]
lw has quit [Quit: s]
benzrf is now known as benzrf|offline
obs has quit [Quit: Saliendo]
eivindml has joined #ruby
eivindml has quit [Max SendQ exceeded]
sparrovv has joined #ruby
MrL0ngbowman has quit [Ping timeout: 255 seconds]
mfmfmfmfmfmf has quit [Remote host closed the connection]
<linguini> I've written a small gem to interpret a _very_ small language. And now I realize I want to interpret the same language in javascript. Are there any [realistic] alternatives to duplicating all the parsing logic in a javascript library?
eivindml has joined #ruby
eivindml has quit [Max SendQ exceeded]
<havenwood> linguini: Have you looked at Opal?
mfmfmfmfmfmf has joined #ruby
FL1SK has quit [Read error: Connection reset by peer]
senayar has quit [Remote host closed the connection]
<linguini> havenwood: I just found Opal a few minutes ago; I haven't read about it (yet).
<havenwood> linguini: Why do you need it in javascript? For the browser?
armyriad has joined #ruby
atmosx has joined #ruby
FL1SK has joined #ruby
<linguini> havenwood: Yes.
<wallerdev> yeah just use a parser generator
<wallerdev> can use the same rules to generate for both languages
pandaant has quit [Quit: Lost terminal]
<linguini> racc/yacc == parser generators?
sparrovv has quit [Ping timeout: 272 seconds]
jxf has quit [Ping timeout: 246 seconds]
atmosx has quit [Remote host closed the connection]
nobitano_ has quit []
<shevy> I assume foo = [] is worse than foo.clear if foo already is an array?
jerikl has quit [Quit: jerikl]
mfmfmfmfmfmf has quit [Ping timeout: 272 seconds]
SCHAAP137 has joined #ruby
tvw has quit []
gccostabr has quit [Quit: ZZZzzz…]
<jhass> shevy: just not the same thing
tectonic has quit []
benzrf|offline is now known as benzrf
_cake has joined #ruby
andrewlio has quit [Quit: Leaving.]
<wallerdev> depends what you want to do haha
<shevy> well I initialize an object to its default state
<shevy> next I fill up the array
<shevy> and sometimes I need to empty it again
<wallerdev> all references to the array will be cleared if you do .clear, if you assign to [] then itll just change what that variable points to
Xeago has quit [Remote host closed the connection]
alexju has quit [Remote host closed the connection]
doodlehaus has quit [Remote host closed the connection]
jay_ has quit [Remote host closed the connection]
asteve has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<linguini> foo = bar = [:a]; foo.clear ; foo + bar
<linguini> foo = bar = [:a]; foo = [] ; foo + bar
treehug88 has quit []
ruby-lang038 has joined #ruby
diegoviola has quit [Remote host closed the connection]
benzrf is now known as benzrf|offline
<shevy> but what if the array already was assigned?
<wallerdev> tbh i never use clear
<wallerdev> lol
<shevy> startup is different from when it is running (it's a jukebox actually)
sparrovv has joined #ruby
<shevy> yeah
<wallerdev> if you need all references to be cleared then use clear
<shevy> I find reassignment much simpler somehow
<wallerdev> yeah just easier to read for me
<shevy> hehe
<shevy> wow!
<shevy> a troll!!!
<shevy> -# define sttroll _strtoi64
diegoviola has joined #ruby
jimms has quit []
thumpba has quit [Ping timeout: 264 seconds]
codecop has quit [Remote host closed the connection]
<waxjar> matz is such a troll
MrL0ngbowman has joined #ruby
<wallerdev> troll level: 9000
<shevy> he should just use python already
benlieb has quit [Read error: Connection reset by peer]
treehug88 has joined #ruby
thams has quit [Quit: thams]
benlieb has joined #ruby
thams has joined #ruby
sambao21 has quit [Quit: Computer has gone to sleep.]
terrellt has quit [Remote host closed the connection]
terrellt has joined #ruby
dbasch has joined #ruby
momomomomo_ has joined #ruby
thams has quit [Quit: thams]
cy is now known as nope_nope_nope
jottr has quit [Ping timeout: 240 seconds]
freerobby has quit [Quit: Leaving.]
momomomomo has quit [Ping timeout: 240 seconds]
momomomomo_ is now known as momomomomo
thams has joined #ruby
nope_nope_nope is now known as cy
mary5030 has quit [Remote host closed the connection]
_lexjm has quit [Quit: Textual IRC Client: www.textualapp.com]
<Lewix> shevy: why
_lexjm has joined #ruby
freerobby has joined #ruby
yfeldblum has joined #ruby
CuriousMind has quit [Ping timeout: 246 seconds]
dbasch has quit [Quit: dbasch]
weems|mac has quit [Quit: bai]
<matti> ;]
qmfnp has quit [Quit: Textual IRC Client: www.textualapp.com]
skolman_ has quit [Remote host closed the connection]
_sillymarkets has quit [Ping timeout: 246 seconds]
lxsameer has quit [Quit: Leaving]
ghr has joined #ruby
yfeldblu_ has quit [Ping timeout: 240 seconds]
dbasch has joined #ruby
<zeroNones> I'm reading the Computer Science Programming in Ruby and its talking about for loops. It gives me an example of for i in (0..5) etc. when I say for i is the for essentially asigning i as a variable?
benlieb has quit [Quit: benlieb]
<wallerdev> lol
<wallerdev> no one uses for loops in ruby
<wallerdev> get a new book
mercerist has quit [Quit: Computer has gone to sleep.]
kaspergrubbe_ has joined #ruby
<zeroNones> That might be so wallerdev but its probably a good idea to understand it
<shevy> Lewix so that we have one language that beats php
orolo has quit [Quit: This computer has gone to sleep]
yfeldblum has quit [Ping timeout: 272 seconds]
<shevy> zeroNones not needed, everybody uses .each
<wallerdev> but yes it will assign i to the next number in the range with each loop
<waxjar> yeah, for actually assigns the variable
nanoyak has quit [Quit: Computer has gone to sleep.]
<wallerdev> so it will run 6 times
<wallerdev> 0, 1, 2, 3, 4, 5
yfeldblum has joined #ruby
<shevy> just use .each, you won't need to count
<zeroNones> ok great thanks for the answer
<shevy> or go the python way
<shevy> for x in y in z slay_kittens(lambda in a)
<zeroNones> I understand what it does but I never seen a varaible be assigned like that
<waxjar> you're probably never gonna need it, unless you need to micro-optimize
<shevy> yeah, it will stick out in your ruby code
<zeroNones> it was always i = ...
senayar has joined #ruby
<shevy> oh yes, speed savvy people use for loops
ssvo has quit [Ping timeout: 255 seconds]
earthquake has joined #ruby
nanoyak has joined #ruby
<matti> loopy-shevy
ghr has quit [Ping timeout: 240 seconds]
<wallerdev> yeah it's just a special syntax in ruby to assign a variable to a series of numbers in a loop
<zeroNones> thanks wallerdev
rimenes_ has joined #ruby
<wallerdev> most people would write that as (0..5).each { |i| puts i }
dblessing has quit [Quit: dblessing]
<havenwood> puts *0..5
ssvo has joined #ruby
<wallerdev> sure haha but trying to relate it to his exact example
<ruby-lang038> to exclude the 5, do 0...5
<wallerdev> please dont lol
<wallerdev> just write (0..4) haha
<ruby-lang038> 3 dots is bad practice?
<waxjar> it's easily skipped over
<wallerdev> eh i never use 3 dots
Akagi201 has joined #ruby
<shevy> I use 4 dots
<wallerdev> just such a small subtlety, easy to miss
Takle has joined #ruby
<wallerdev> and id never use it with literals
<waxjar> i use 1 dot
nanoyak has quit [Client Quit]
jottr has joined #ruby
yfeldblum has quit [Remote host closed the connection]
senayar has quit [Ping timeout: 245 seconds]
freerobby has quit [Quit: Leaving.]
rimenes has quit [Ping timeout: 272 seconds]
naw has quit [Remote host closed the connection]
dbasch has quit [Quit: dbasch]
<Lewix> shevy: i dont get it\
<Lewix> shevy: whats the thing about stroll
<shevy> stroll!
<shevy> a troll is hiding
Kricir has quit [Remote host closed the connection]
Aranshada|W has quit [Ping timeout: 245 seconds]
renderful has joined #ruby
<shevy> hiding in a string like it might be hiding under a bridge
<shevy> have you not learned in school about the trolls?
amargherio has quit [Remote host closed the connection]
naw has joined #ruby
<waxjar> looks like #each is even slightly faster than for on 2.1, unless I'm doing something wrong
Akagi201 has quit [Ping timeout: 240 seconds]
GhettoJava has quit [Quit: Leaving]
<wallerdev> pretty close to call anything with that haha
<wallerdev> if there was any reason though its probably just because for assigns everytime and each wouldnt have to if there was no block params
maestrojed has joined #ruby
maestrojed has quit [Client Quit]
pierre1_ has joined #ruby
<waxjar> ah, good point
albedoa has quit [Quit: Textual IRC Client: www.textualapp.com]
Kricir has joined #ruby
diegoviola has quit [Remote host closed the connection]
renderfu_ has quit [Ping timeout: 255 seconds]
<waxjar> hmm, similar results
sylvanica has joined #ruby
kquig has quit [Remote host closed the connection]
krisquigley has joined #ruby
shackleford has quit []
treehug88 has quit []
PsionTheory has quit [Read error: Connection reset by peer]
nanoyak has joined #ruby
riotjone_ has joined #ruby
<Lewix> oh boy
<Lewix> i give up
linojon has quit [Quit: linojon]
<Lewix> it's difficult to talk to you when you're drunk shevy
<Lewix> just like the car - it's never reliable
<Lewix> ^^
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
riotjones has quit [Ping timeout: 240 seconds]
kireevco has joined #ruby
brothmars has joined #ruby
axsuul_ has joined #ruby
<Lewix> waxjar: to my understanding for is a wrapper around each
einarj_ has joined #ruby
ramfjord_ has joined #ruby
dphase- has joined #ruby
bmoyles0117_ has joined #ruby
<Lewix> which explain why it's slower
rodasc has joined #ruby
starkhalo has quit [Read error: Connection reset by peer]
bmoyles0117 has quit [Read error: Connection reset by peer]
dphase has quit [Read error: Connection reset by peer]
bmoyles0117_ is now known as bmoyles0117
FDj_ has joined #ruby
<waxjar> it used to be faster and leak whatever was assigned i believe. oh well
starkhalo has joined #ruby
lemur_ has joined #ruby
crodas has quit [Ping timeout: 255 seconds]
mikeric has quit [Ping timeout: 255 seconds]
seph429 has quit [Ping timeout: 255 seconds]
gf3 has quit [Ping timeout: 255 seconds]
wchun has quit [Ping timeout: 255 seconds]
sfiggins has quit [Ping timeout: 255 seconds]
Aranshada|W has joined #ruby
seph429 has joined #ruby
krisquigley has quit [Remote host closed the connection]
Roa_ has joined #ruby
einarj has quit [Ping timeout: 255 seconds]
TieSoul has quit [Ping timeout: 255 seconds]
icedp has quit [Ping timeout: 255 seconds]
C0deMaver1ck has quit [Ping timeout: 255 seconds]
everett has quit [Ping timeout: 255 seconds]
Roa has quit [Ping timeout: 255 seconds]
minecoins has quit [Ping timeout: 255 seconds]
cuqa has quit [Ping timeout: 255 seconds]
pdtpatr1ck has quit [Ping timeout: 255 seconds]
zorak has quit [Ping timeout: 255 seconds]
Eiam has quit [Ping timeout: 255 seconds]
b00stfr3ak has quit [Ping timeout: 255 seconds]
vieq has quit [Ping timeout: 255 seconds]
Bish has quit [Ping timeout: 255 seconds]
Akuma has quit [Ping timeout: 255 seconds]
YamakasY has quit [Ping timeout: 255 seconds]
David_Miller has quit [Ping timeout: 255 seconds]
daed has quit [Ping timeout: 255 seconds]
<wallerdev> waxjar: all blocks used to leak too
cout has quit [Ping timeout: 255 seconds]
dazeddev has quit [Ping timeout: 255 seconds]
daed has joined #ruby
David_Miller has joined #ruby
vieq has joined #ruby
minecoins has joined #ruby
blackgoat_ has joined #ruby
lemur_ has quit [Remote host closed the connection]
radic has joined #ruby
Dr3amc0dz has joined #ruby
chrishough has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
gf3 has joined #ruby
lemur has joined #ruby
pdtpatr1ck has joined #ruby
sylvanica has quit [Quit: Quitte]
cout has joined #ruby
YamakasY has joined #ruby
shreknet has joined #ruby
b00stfr3ak has joined #ruby
sylvanica has joined #ruby
atraylen has joined #ruby
Anarch_ has joined #ruby
davidcel- has joined #ruby
C0deMaver1ck_ has joined #ruby
razum2um1 has joined #ruby
MrL0ngbowman has quit [Ping timeout: 245 seconds]
earthquake has quit [Quit: earthquake]
BeanDip has joined #ruby
sparrovv has quit [Remote host closed the connection]
icedp has joined #ruby
Urocyon has joined #ruby
NuckingFuts has joined #ruby
everett has joined #ruby
camilasan has joined #ruby
gizless has joined #ruby
oz` has joined #ruby
sparrovv has joined #ruby
Davey_ has joined #ruby
yokel_ has joined #ruby
Avahey_ has joined #ruby
pkrnj has quit [Ping timeout: 272 seconds]
fbernier_ has joined #ruby
vereteran has joined #ruby
aledovsky_ has joined #ruby
skolman has joined #ruby
jack_rabbit_ has joined #ruby
Bish has joined #ruby
gzl_ has joined #ruby
lemur has quit [Ping timeout: 245 seconds]
zorak has joined #ruby
_cake is now known as cake
cake is now known as _cake
Gnubie__ has joined #ruby
m8 has quit [Quit: Sto andando via]
awc737 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
HENKiE_ has joined #ruby
echevemaster_ has joined #ruby
felixjet__ has joined #ruby
Aaaal has joined #ruby
samuelkadolph_ has joined #ruby
peeja_ has joined #ruby
sparrovv has quit [Ping timeout: 260 seconds]
yfeldblum has joined #ruby
Kryptonical has joined #ruby
Neomex_ has joined #ruby
Photism_ has joined #ruby
ordomoko has joined #ruby
skolman has quit [Ping timeout: 255 seconds]
Aranshada|W__ has joined #ruby
einarj has joined #ruby
DEA7TH_ has joined #ruby
dazeddev has joined #ruby
matled- has joined #ruby
dawkirst_ has joined #ruby
deric_skibotn has quit [Ping timeout: 272 seconds]
isomorph1smes has joined #ruby
felixjet_ has quit [Ping timeout: 240 seconds]
amundj_ has joined #ruby
Aranshada|W has quit [Ping timeout: 260 seconds]
wiscasss has joined #ruby
jerius_ has joined #ruby
dawkirst_ has quit [Remote host closed the connection]
Nilium_ has joined #ruby
ptierno_ has joined #ruby
Kryptonic has quit [Ping timeout: 240 seconds]
phreax_ has joined #ruby
goleldar_ has joined #ruby
febuiles has joined #ruby
benzrf|offline is now known as benzrf
Neomex has quit [Ping timeout: 240 seconds]
froggy__ has joined #ruby
mikepack_ has joined #ruby
braincra- has joined #ruby
yfeldblum has quit [Ping timeout: 272 seconds]
wjimene__ has joined #ruby
Photism2 has joined #ruby
Photism has quit [Ping timeout: 255 seconds]
DivineEn1ity has joined #ruby
VBlizzard has joined #ruby
suy_ has joined #ruby
alex-i has joined #ruby
Hobogrammer_ has joined #ruby
dukedave_ has joined #ruby
_izz_ has joined #ruby
brothmars has quit [Read error: Connection reset by peer]
bfrizzle_ has joined #ruby
willgorm- has joined #ruby
brothmars has joined #ruby
sawtooth_ has joined #ruby
Bumptious has quit [*.net *.split]
jack_rabbit has quit [*.net *.split]
echevemaster has quit [*.net *.split]
omosoj has quit [*.net *.split]
Dr3amc0d3r|away has quit [*.net *.split]
ramfjord has quit [*.net *.split]
axsuul has quit [*.net *.split]
naquad has quit [*.net *.split]
jobewan has quit [*.net *.split]
snath has quit [*.net *.split]
braincrash has quit [*.net *.split]
balazs has quit [*.net *.split]
nuck has quit [*.net *.split]
razum2um has quit [*.net *.split]
radic_ has quit [*.net *.split]
cjk101010 has quit [*.net *.split]
njs126 has quit [*.net *.split]
gzl has quit [*.net *.split]
FDj has quit [*.net *.split]
fbernier has quit [*.net *.split]
blackgoat has quit [*.net *.split]
yokel has quit [*.net *.split]
avalarion has quit [*.net *.split]
camilasann has quit [*.net *.split]
f0ster has quit [*.net *.split]
HENKiE has quit [*.net *.split]
Anarch has quit [*.net *.split]
Gnubie_ has quit [*.net *.split]
phreax has quit [*.net *.split]
gizmore has quit [*.net *.split]
aledovsky has quit [*.net *.split]
s_e_ has quit [*.net *.split]
BeanDip_ has quit [*.net *.split]
Platini has quit [*.net *.split]
samuelkadolph has quit [*.net *.split]
peeja has quit [*.net *.split]
AlyssaDaemon has quit [*.net *.split]
isomorphismes has quit [*.net *.split]
hydrajump has quit [*.net *.split]
oz has quit [*.net *.split]
davidcelis has quit [*.net *.split]
Davey has quit [*.net *.split]
avelldiroll has quit [*.net *.split]
oz` is now known as oz
davidcel- is now known as davidcelis
samuelkadolph_ is now known as samuelkadolph
peeja_ is now known as peeja
fbernier_ is now known as fbernier
JBreit has joined #ruby
Aranshada|W has joined #ruby
davidcelis has quit [Changing host]
davidcelis has joined #ruby
TieSoul has joined #ruby
brandon_1 has joined #ruby
crome_ has joined #ruby
einarj has quit [Remote host closed the connection]
YamakasY has left #ruby [#ruby]
Trieste has quit [Ping timeout: 261 seconds]
ggherdov has quit [Ping timeout: 261 seconds]
Derander has quit [Ping timeout: 261 seconds]
aledovsky_ is now known as aledovsky
cuqa has joined #ruby
omosoj has joined #ruby
Trieste has joined #ruby
binaryhat has quit [Remote host closed the connection]
wjimenez_ has quit [Ping timeout: 246 seconds]
davispuhh has joined #ruby
hydrajump has joined #ruby
zettam has quit [Ping timeout: 246 seconds]
momomomomo has quit [Quit: momomomomo]
Aranshada|W__ has quit [Ping timeout: 266 seconds]
akkad has quit [Ping timeout: 240 seconds]
rblackwe has quit [Read error: Connection reset by peer]
davispuhh has quit [Excess Flood]
mr_rich101 has quit [Ping timeout: 240 seconds]
natewalck has quit [Ping timeout: 240 seconds]
bove has quit [Ping timeout: 240 seconds]
tylerkern has quit [Ping timeout: 240 seconds]
LBRapid has quit [Ping timeout: 240 seconds]
goshdarnyou has quit [Ping timeout: 240 seconds]
dziga has quit [Ping timeout: 240 seconds]
psmolen has quit [Ping timeout: 240 seconds]
jshultz has quit [Ping timeout: 240 seconds]
preyalone has quit [Ping timeout: 240 seconds]
Guest85414______ has quit [Ping timeout: 240 seconds]
benlakey has quit [Ping timeout: 240 seconds]
shtirlic has quit [Ping timeout: 240 seconds]
davedev2_ has joined #ruby
jinie has quit [Ping timeout: 240 seconds]
brothmars has quit [Read error: Connection reset by peer]
Guest23528 has quit [Ping timeout: 240 seconds]
adam- has joined #ruby
yfeldblum has joined #ruby
Blizzy has quit [Ping timeout: 246 seconds]
froggy_ has quit [Ping timeout: 246 seconds]
binaryhat has joined #ruby
Photism_ has quit [Ping timeout: 255 seconds]
_lexjm has quit [Ping timeout: 255 seconds]
armyriad has quit [Ping timeout: 255 seconds]
lidaaa has quit [Ping timeout: 255 seconds]
Hobogrammer has quit [Ping timeout: 246 seconds]
Derander has joined #ruby
yetanoth1rdave has joined #ruby
narcan has joined #ruby
Aaaal has quit [Quit: Aaaal]
Davey_ is now known as Davey
starless has quit [Ping timeout: 251 seconds]
mikepack has quit [Ping timeout: 362 seconds]
s_e has joined #ruby
Platini has joined #ruby
lidaaa has joined #ruby
cjk101010 has joined #ruby
yokel_ has quit [Changing host]
yokel_ has joined #ruby
drizz_ has joined #ruby
narcan has quit [Client Quit]
armyriad has joined #ruby
starless has joined #ruby
yokel_ is now known as yokel
Sgeo has joined #ruby
iterator_ has joined #ruby
zettam has joined #ruby
sindork_ has joined #ruby
rblackwe_ has joined #ruby
germanstudent_ has joined #ruby
iteratorP has quit [Ping timeout: 250 seconds]
dacamp_ has joined #ruby
LBRapid_ has joined #ruby
goshdarnyou_ has joined #ruby
einarj_ has quit [*.net *.split]
kirun has quit [*.net *.split]
dawkirst has quit [*.net *.split]
yetanotherdave has quit [*.net *.split]
cy has quit [*.net *.split]
goleldar has quit [*.net *.split]
davispuh has quit [*.net *.split]
ffranz has quit [*.net *.split]
ptierno has quit [*.net *.split]
phoo1234567 has quit [*.net *.split]
davedev24_ has quit [*.net *.split]
DEA7TH has quit [*.net *.split]
RealMarc has quit [*.net *.split]
Rydekull has quit [*.net *.split]
Brando753 has quit [*.net *.split]
patronus has quit [*.net *.split]
bmn has quit [*.net *.split]
Morrolan has quit [*.net *.split]
SirFunk has quit [*.net *.split]
regedarek has quit [*.net *.split]
Azure has quit [*.net *.split]
blenny has quit [*.net *.split]
cornfeedhobo has quit [*.net *.split]
IotaSpencer has quit [*.net *.split]
jerius has quit [*.net *.split]
sawtooth has quit [*.net *.split]
DivineEntity has quit [*.net *.split]
existensil has quit [*.net *.split]
v0n has quit [*.net *.split]
wiscas has quit [*.net *.split]
willgorman has quit [*.net *.split]
drawingthesun has quit [*.net *.split]
maloik_ has quit [*.net *.split]
germanstudent has quit [*.net *.split]
alex-i_ has quit [*.net *.split]
brandon has quit [*.net *.split]
Nilium has quit [*.net *.split]
asuka has quit [*.net *.split]
sindork has quit [*.net *.split]
MindfulMonk has quit [*.net *.split]
Snowstormer has quit [*.net *.split]
dacamp has quit [*.net *.split]
amundj has quit [*.net *.split]
dukedave has quit [*.net *.split]
drizz has quit [*.net *.split]
crome has quit [*.net *.split]
lsmola has quit [*.net *.split]
tommylommykins has quit [*.net *.split]
matled has quit [*.net *.split]
suy has quit [*.net *.split]
_izz has quit [*.net *.split]
Numdox has quit [*.net *.split]
bfrizzle has quit [*.net *.split]
havenwood has quit [*.net *.split]
testcore has quit [*.net *.split]
o0oo0o has quit [*.net *.split]
Boohbah has quit [*.net *.split]
DrCode has quit [*.net *.split]
end_guy has quit [*.net *.split]
Nilium_ is now known as Nilium
dacamp_ is now known as dacamp
LBRapid_ is now known as LBRapid
matled- is now known as matled
joshbamboo1 has joined #ruby
maloik has joined #ruby
InhalingPixels has quit [Read error: Connection reset by peer]
dukedave_ is now known as dukedave
regedarek has joined #ruby
icebourg has quit []
pietr0 has joined #ruby
bthesorceror_ has joined #ruby
Photism_ has joined #ruby
cy has joined #ruby
_djbkd has joined #ruby
SirFunk has joined #ruby
drawingthesun has joined #ruby
preyalone has joined #ruby
bove_ has joined #ruby
adam- is now known as Guest79327
Robert__ has joined #ruby
sepp2k1 has joined #ruby
Rylee_ has quit [Excess Flood]
ptierno__ has joined #ruby
Iota-Spencer has joined #ruby
tylerkern has joined #ruby
dziga has joined #ruby
lid_ has joined #ruby
Numd0x has joined #ruby
blenny_ has joined #ruby
froggy_ has joined #ruby
benlakey has joined #ruby
asuka has joined #ruby
Rylee_ has joined #ruby
MindfulMonk has joined #ruby
davispuh has joined #ruby
bthesorceror has quit [Ping timeout: 255 seconds]
sepp2k has quit [Ping timeout: 255 seconds]
clamstar has quit [Ping timeout: 255 seconds]
Spleeze has quit [Ping timeout: 255 seconds]
Heartbroken has quit [Ping timeout: 255 seconds]
bthesorceror_ is now known as bthesorceror
Morrolan has joined #ruby
Sgeo_ has joined #ruby
Rydekull has joined #ruby
natewalck has joined #ruby
psmolen has joined #ruby
tommylommykins has joined #ruby
jshultz has joined #ruby
jinie has joined #ruby
existensil has joined #ruby
lsmola has joined #ruby
mr_rich101 has joined #ruby
zz_LoRdToLsToI has quit [Ping timeout: 240 seconds]
HaniKazmi has quit [Ping timeout: 240 seconds]
Edelwin has quit [Ping timeout: 240 seconds]
sivoais has quit [Ping timeout: 240 seconds]
RichardLitt has quit [Write error: Broken pipe]
ggherdov has joined #ruby
voodoofish1 has joined #ruby
AlyssaDaemon has joined #ruby
sivoais has joined #ruby
shtirlic has joined #ruby
Edelwin has joined #ruby
Edelwin has quit [Changing host]
Edelwin has joined #ruby
_djbkd has quit [Client Quit]
djbkd has quit [Ping timeout: 255 seconds]
Guest85414______ has joined #ruby
dgutierrez1287 has joined #ruby
akkad has joined #ruby
v0n has joined #ruby
ptierno_ has quit [Ping timeout: 240 seconds]
froggy__ has quit [Ping timeout: 246 seconds]
WildBamboo-Josh has quit [Ping timeout: 246 seconds]
djbkd has joined #ruby
axsuul_ has quit [Ping timeout: 252 seconds]
bbloom_ has joined #ruby
thams has quit [Ping timeout: 246 seconds]
Sgeo has quit [Ping timeout: 240 seconds]
bbloom has quit [Ping timeout: 240 seconds]
HaniKazmi has joined #ruby
geggam has quit [Ping timeout: 260 seconds]
Photism2 has quit [Ping timeout: 255 seconds]
kenndel_ has quit [Ping timeout: 240 seconds]
snath has joined #ruby
Brando753 has joined #ruby
dgutierrez1287 has left #ruby [#ruby]
Dreamer3 has quit [Ping timeout: 272 seconds]
federicobucchi has quit [Quit: Leaving.]
20WAA7MH9 has joined #ruby
Numd0x has quit [Excess Flood]
bthesorceror has quit [Client Quit]
drizz_ has quit [Excess Flood]
wiscasss is now known as wiscas
lidaaa has quit [Ping timeout: 330 seconds]
zz_LoRdToLsToI has joined #ruby
voodoofish has quit [Ping timeout: 347 seconds]
Zackio has quit [Ping timeout: 347 seconds]
philevans_ has quit [Ping timeout: 330 seconds]
drizz has joined #ruby
Numdox has joined #ruby
philevans_ has joined #ruby
brothmars has joined #ruby
axsuul has joined #ruby
cornfeedhobo has joined #ruby
patronus has joined #ruby
Dreamer3 has joined #ruby
yfeldblum has quit [Remote host closed the connection]
Spleeze has joined #ruby
sylvanica has quit [Ping timeout: 255 seconds]
GinoMan has quit [Ping timeout: 250 seconds]
bmn has joined #ruby
njs126 has joined #ruby
ordomoko has quit [Remote host closed the connection]
Zackio has joined #ruby
skolman has joined #ruby
yfeldblum has joined #ruby
ffranz has joined #ruby
dgutierrez1287 has joined #ruby
armyriad has quit [Ping timeout: 270 seconds]
thams has joined #ruby
clamstar has joined #ruby
nb_bez__ has joined #ruby
armyriad has joined #ruby
sincereness has quit [Ping timeout: 246 seconds]
djbkd has quit [Remote host closed the connection]
Azure has joined #ruby
brothmars has quit [Quit: jIRCii - http://www.oldschoolirc.com]
otherj has joined #ruby
nanoyak has quit [Read error: Connection reset by peer]
dukedave has quit [Changing host]
dukedave has joined #ruby
willgorm- has quit [Changing host]
willgorm- has joined #ruby
ggherdov has quit [Changing host]
ggherdov has joined #ruby
djbkd has joined #ruby
goshdarnyou_ has quit [Changing host]
goshdarnyou_ has joined #ruby
bove_ has joined #ruby
bove_ has quit [Changing host]
preyalone has quit [Changing host]
preyalone has joined #ruby
pietr0 has quit [Quit: pietr0]
tylerkern has quit [Changing host]
tylerkern has joined #ruby
dziga has quit [Changing host]
dziga has joined #ruby
benlakey has quit [Changing host]
benlakey has joined #ruby
nanoyak has joined #ruby
natewalck has quit [Changing host]
natewalck has joined #ruby
jshultz has quit [Changing host]
jshultz has joined #ruby
lsmola has joined #ruby
lsmola has quit [Changing host]
Guest85414______ has quit [Changing host]
Guest85414______ has joined #ruby
zz_LoRdToLsToI has quit [Changing host]
zz_LoRdToLsToI has joined #ruby
nb_bez__ has quit [Changing host]
nb_bez__ has joined #ruby
luckyruby has quit [Ping timeout: 264 seconds]
chrishough has joined #ruby
yfeldblum has quit [Remote host closed the connection]
emmesswhy has quit [Quit: This computer has gone to sleep]
crdprink2 has quit [Quit: q term]
Heartbroken has joined #ruby
doodlehaus has joined #ruby
doodlehaus has quit [Client Quit]
kaspergr_ has joined #ruby
kaspergrubbe_ has quit [Ping timeout: 240 seconds]
timonv_ has joined #ruby
mikesplain has joined #ruby
Neomex_ has quit [Read error: Connection reset by peer]
timonv_ has quit [Remote host closed the connection]
_lexjm has joined #ruby
emmesswhy has joined #ruby
toastynerd has quit [Remote host closed the connection]
yfeldblu_ has joined #ruby
michaeldeol has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
yxhuvud has joined #ruby
deric_skibotn has joined #ruby
jrhorn424 is now known as zz_jrhorn424
aedorn has joined #ruby
senayar has joined #ruby
rubyracer has quit [Quit: Konversation terminated!]
juz88 has joined #ruby
gtrak has quit [Ping timeout: 264 seconds]
flowerhack has joined #ruby
Eiam has joined #ruby
michaeldeol has joined #ruby
rjhunter has joined #ruby
klmlfl has quit [Ping timeout: 240 seconds]
gccostabr has joined #ruby
mikesplain has quit [Ping timeout: 240 seconds]
otherj has quit []
patrick99e99 has quit [Ping timeout: 260 seconds]
narcan has joined #ruby
ghostmoth has quit [Quit: ghostmoth]
troyready has joined #ruby
Snowstormer has joined #ruby
lmickh has quit [Remote host closed the connection]
gtrak has joined #ruby
unclouded has joined #ruby
gccostabr has quit [Client Quit]
klmlfl has joined #ruby
itspots has quit [Quit: Lingo - http://www.lingoirc.com]
heftig_ has joined #ruby
heftig has quit [Ping timeout: 240 seconds]
goshdarnyou_ is now known as goshdarnyou
chrishou_ has joined #ruby
osvico has joined #ruby
chrishough has quit [Ping timeout: 260 seconds]
klmlfl has quit [Ping timeout: 246 seconds]
linojon has joined #ruby
Nogbit has joined #ruby
linguini has quit [Quit: ERC Version 5.3 (IRC client for Emacs)]
osvico has quit [Ping timeout: 260 seconds]
digifiv5e_ has quit [Quit: quit]
iamjarvo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
chrishou_ has quit [Client Quit]
chrishough has joined #ruby
klmlfl has joined #ruby
jmbrown412 has quit []
yairgo has quit [Quit: yairgo]
agrinb has quit [Remote host closed the connection]
ghostmoth has joined #ruby
klmlfl has quit [Read error: Connection reset by peer]
klmlfl has joined #ruby
osvico has joined #ruby
chrishough has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
mikeg has joined #ruby
gr33n7007h has joined #ruby
joelroa has quit [Remote host closed the connection]
todor has joined #ruby
joelroa has joined #ruby
lid_ has quit [Ping timeout: 264 seconds]
bmurt has joined #ruby
jhass is now known as jhass|off
mrsolo has quit [Quit: Leaving]
ssvo has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
jottr has quit [Ping timeout: 240 seconds]
otherj has joined #ruby
icole has joined #ruby
pietr0 has joined #ruby
chrishough has joined #ruby
gr33n7007h has quit [Read error: Connection reset by peer]
gr33n7007h has joined #ruby
iamjusthatdude has joined #ruby
linojon has quit [Quit: linojon]
chrishough has quit [Client Quit]
jgrevich_ has joined #ruby
chrishough has joined #ruby
jgrevich_ has quit [Client Quit]
gr33n7007h has quit [Changing host]
gr33n7007h has joined #ruby
<iamjusthatdude> hello there
<iamjusthatdude> I'm stuck on some stuff
<iamjusthatdude> currying and functional programmin
<iamjusthatdude> currying and functional programming*
<matti> iamjusthatdude: Just ask ;]
mikeg has quit [Ping timeout: 272 seconds]
cpruitt has quit [Quit: cpruitt]
jgrevich has quit [Ping timeout: 246 seconds]
robbyoconnor has joined #ruby
<iamjusthatdude> seven(times(five)) must return 35
<iamjusthatdude> and you have a list of all numbers
<iamjusthatdude> as methods
agrinb has joined #ruby
<iamjusthatdude> and the four basic math operations
<iamjusthatdude> as methods too
<iamjusthatdude> I don't know how to start this at all
pietr0 has quit [Quit: pietr0]
britneywright has joined #ruby
goodenough has quit [Remote host closed the connection]
nanoyak has quit [Read error: Connection reset by peer]
nanoyak has joined #ruby
mwmnj has joined #ruby
joshbamboo1 is now known as WildBamboo-josh
ffranz has quit [Quit: Leaving]
gsd has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Wolland_afk has quit [Remote host closed the connection]
Wolland_afk has joined #ruby
<iamjusthatdude> anybody?
bashrw has quit [Quit: bashrw]
Kricir has quit [Remote host closed the connection]
klmlfl has quit [Ping timeout: 240 seconds]
philcrissman has quit [Remote host closed the connection]
mikecmpbll has quit [Quit: i've nodded off.]
philcrissman has joined #ruby
zorak has quit [Ping timeout: 255 seconds]
Wolland_afk has quit [Ping timeout: 264 seconds]
yairgo has joined #ruby
mwmnj has quit [Quit: Textual IRC Client: www.textualapp.com]
thams has quit [Quit: thams]
<eam> iamjusthatdude: what is your question?
mwmnj has joined #ruby
goodenough has joined #ruby
philcrissman has quit [Ping timeout: 245 seconds]