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
sputnik13 has quit [Quit: My Mac Mini has gone to sleep. ZZZzzz…]
<mostlybadfly> d'oh can't sort nil i should've known lol
serb has quit [Quit: Potato]
jamto11 has joined #ruby
<chamblin> rubyonrailed: are you getting a ResolvError? you could try something like this: https://gist.github.com/chamblin/76aac2dd43bd7ecf4b08
testcore has quit [Quit: [BX] You can breathe without BitchX, but I wouldn't recommend it]
icarus_ has quit [Remote host closed the connection]
yfeldblum has quit [Ping timeout: 240 seconds]
tkuchiki has quit [Remote host closed the connection]
terrellt has quit [Quit: Leaving...]
<rubyonrailed> :chamblin thanks that brought me closer, now I get htis error: Resolv::ResolvError: no name for 184.106.55.21
vsoftoiletpaper has quit []
jamto11 has quit [Ping timeout: 250 seconds]
<rubyonrailed> :chamblin saves the first host, then breaks for the next
sepp2k1 has joined #ruby
lw has quit [Quit: s]
Nightmare has quit [Quit: DDoS has died, DDoS has risen, DDoS comin' again]
<chamblin> rubyonrailed: you can add "rescue ip" to the line where it attempts the reverse lookup and that might get you there. i updated the gist.
Zenigor has joined #ruby
<rubyonrailed> chamblin: thanks, you rule!!!!!
sepp2k has quit [Ping timeout: 260 seconds]
brandonshowers has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<chamblin> sure thing :)
Zenigor has quit [Remote host closed the connection]
thumpba_ has joined #ruby
<gr33n7007h> !! (1..10).inject(1,:*)
<wallerdev> ?
<wallerdev> lol
<crazed> it's true
<crazed> obviously
bhuey has joined #ruby
<gr33n7007h> woops
<bhuey> I want to match the the beginning of a line from a file
<crazed> grep
<bhuey> I'm using :
xmad has quit [Ping timeout: 255 seconds]
brandonshowers has joined #ruby
<bhuey> file.match(/BEGIN*/)
<bhuey> I just want to match the beginning of that line
benlieb has quit [Quit: benlieb]
<crazed> /^BEGIN/
<crazed> /^BEGIN/
<bhuey> ok
c00kieb0t has joined #ruby
chamblin has quit [Ping timeout: 255 seconds]
<gr33n7007h> !! (1..10).inject(1,:*)
<c00kieb0t> 3628800
<bhuey> crazed: it says invalid byte sequence
momomomomo has quit [Read error: Connection reset by peer]
Eulipion_ has joined #ruby
<gr33n7007h> !! [:this, :that, :other].map(&:to_s)
<c00kieb0t> ["this", "that", "other"]
momomomomo has joined #ruby
havenwood has joined #ruby
<crazed> bhuey: what's file in your case
danman has quit [Quit: danman]
pietr0 has quit [Quit: pietr0]
saarinen has quit [Quit: saarinen]
<bhuey> File.foreach(file, sep="\n"){ |line|
<bhuey> file is set to some string
<crazed> so many ways to do things in ruby, never seen that syntax
Nightmare has joined #ruby
<bhuey> let me find the object type being passed into that block
Eulipion_ has left #ruby [#ruby]
Nilium has quit [Ping timeout: 264 seconds]
<crazed> File.readlines('/file/path').each { |line| do_sometihng if line.match(/^SOMETHING/) }
<crazed> granted readlines will read the file into memory
tylersmith has joined #ruby
<crazed> so depends on how big the file is
nateberkopec has quit [Quit: Leaving...]
<bhuey> crazed: It's a String
<bhuey> It's about a megabyte
yetanotherdave has quit [Ping timeout: 245 seconds]
mr_snowf1ake has quit [Quit: Leaving]
<momomomomo> there's almost never a good reason to use readlines
<momomomomo> over a buffer
dekz has joined #ruby
<crazed> unelss you want the whole file in memory, for like a config
brandon has quit [Remote host closed the connection]
<crazed> but yeah for text processing over a file, not the best idea
c00kieb0t has quit [Remote host closed the connection]
<bhuey> crazed: it's a fixed sized file
<bhuey> albiet large
robscormack has quit [Quit: Leaving]
dbasch has joined #ruby
gruz0[russia] has quit [Quit: Leaving]
GriffinHeart has joined #ruby
<mostlybadfly> so if i were to do "a".unpack("H*") for example, how do i just get the element from the array to display, i'm looking for a method i can tack on
chrisja has quit [Quit: leaving]
Spami has quit [Quit: This computer has gone to sleep]
<mostlybadfly> so that i get "61" rather than ["61"}
<mostlybadfly> ["61"]
ddv has quit [Ping timeout: 260 seconds]
<wallerdev> [0]
lanox has joined #ruby
<bhuey> crazed: same warning
<wallerdev> dont need * either
<bhuey> bah
<wallerdev> >> ["a"].unpack('H')
<Mon_Robot> wallerdev: => NoMethodError: undefined method `unpack' for ["a"]:Array (https://eval.in:443/171151)
<wallerdev> er
<wallerdev> >> ["a"].pack('H')
<Mon_Robot> wallerdev: => "\xA0" (https://eval.in:443/171152)
<wallerdev> wait
<wallerdev> lol
<wallerdev> "a".unpack('H')
<mostlybadfly> oh duh just pop is all i need
<wallerdev> >> "a".unpack('H')
ddv has joined #ruby
<Mon_Robot> wallerdev: => ["6"] (https://eval.in:443/171153)
<mostlybadfly> since i'm interpolating it into a string
<wallerdev> ohhh right
<wallerdev> nevermind im dumb
<mostlybadfly> >> "a".unpack('H').pop
<Mon_Robot> mostlybadfly: => "6" (https://eval.in:443/171154)
<mostlybadfly> >> "a".unpack('H*').pop
<Mon_Robot> mostlybadfly: => "61" (https://eval.in:443/171155)
<mostlybadfly> ah better
<mostlybadfly> that's odd it's only one letter
tkuchiki has joined #ruby
<wallerdev> i was thinking the other way i think
<mostlybadfly> oh but the hex is two characters?
GriffinHeart has quit [Ping timeout: 250 seconds]
Duckily has quit [Quit: Duckily]
<mostlybadfly> time to make dinner
rebelshrug has quit [Quit: Textual IRC Client: www.textualapp.com]
Kricir has joined #ruby
t_p has quit [Quit: Computer has gone to sleep.]
amystephen has quit [Ping timeout: 260 seconds]
oo_ has joined #ruby
brandonshowers has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
yfeldblum has joined #ruby
lxsameer has quit [Read error: Connection reset by peer]
jxf has quit [Ping timeout: 245 seconds]
lw has joined #ruby
oo_ has quit [Remote host closed the connection]
banjara has quit [Quit: Leaving.]
Zebroid has joined #ruby
thams has quit [Quit: thams]
zz_karupa is now known as karupa
benlieb has joined #ruby
PanPan has joined #ruby
thams has joined #ruby
brandonshowers has joined #ruby
oo_ has joined #ruby
<bhuey> Let's try another route. Is there a snippet of code that read a file and then prints out text matching a specific bit of text in a line ?
Zebroid has quit [Ping timeout: 260 seconds]
Bira has joined #ruby
<pontiki> that's really just a bit too simple to warrant much of anything, bhuey
lw has quit [Quit: s]
Kricir has quit [Remote host closed the connection]
Spami has joined #ruby
Vivekananda_y510 has joined #ruby
<bhuey> pontiki: a pointer would be nice
<pontiki> reading each line of a file, finding matching text, printing it out?
echooo has joined #ruby
startupality_ has joined #ruby
startupality has quit [Ping timeout: 250 seconds]
startupality_ is now known as startupality
Bira has quit [Ping timeout: 256 seconds]
Spami has quit [Client Quit]
<bhuey> pontiki: yeah I thinkI have something but the regular expression is giving me problems
<pontiki> what are you trying?
momomomomo has quit [Quit: momomomomo]
nanoyak has quit [Quit: Computer has gone to sleep.]
CodeLicker has quit [Quit: Nettalk6 - www.ntalk.de]
fwaokda has quit [Ping timeout: 255 seconds]
<bhuey> pontiki: print out lines that begin with "BEGIN "
<bhuey> really basic stuff
danman has joined #ruby
danman has quit [Client Quit]
agent_white has quit [Read error: Connection reset by peer]
nateberkopec has joined #ruby
<bhuey> pontiki: any help would be appreciated as this has become a pain in the ass
_djbkd has quit [Remote host closed the connection]
djbkd has joined #ruby
skysploit has quit []
namxam has joined #ruby
benlieb has quit [Quit: benlieb]
maletor has joined #ruby
marr has quit [Ping timeout: 260 seconds]
agent_white has joined #ruby
jack_rabbit has joined #ruby
Barrayar has joined #ruby
djbkd has quit [Ping timeout: 240 seconds]
TripTastic is now known as JBreit
namxam has quit [Ping timeout: 250 seconds]
mikepack has quit [Remote host closed the connection]
nateberkopec has quit [Ping timeout: 240 seconds]
phinfonet has quit [Ping timeout: 272 seconds]
agent_wh1te has joined #ruby
phinfonet has joined #ruby
fwaokda has joined #ruby
helpa has quit [Remote host closed the connection]
helpa has joined #ruby
agent_white has quit [Ping timeout: 250 seconds]
magic_ has joined #ruby
nowthatsamatt has quit [Quit: nowthatsamatt]
startupality has quit [Quit: startupality]
Deele has quit [Ping timeout: 240 seconds]
magic_ is now known as magic
bricker`work has quit [Ping timeout: 240 seconds]
Barrayar has quit [Ping timeout: 240 seconds]
Ankhers has joined #ruby
yfeldblum has quit [Remote host closed the connection]
Channel6 has joined #ruby
benzrf|offline is now known as benzrf
Ankhers has quit [Remote host closed the connection]
bradleyprice has joined #ruby
nfk has quit [Ping timeout: 240 seconds]
Davey is now known as Eomar
kaspergrubbe has quit [Remote host closed the connection]
thams has quit [Quit: thams]
k0m has joined #ruby
macclearich has quit [Quit: Computer has gone to sleep.]
AlexBlomCOM has joined #ruby
macclearich has joined #ruby
thams has joined #ruby
Shidash has quit [Quit: Leaving.]
thams has quit [Client Quit]
ItSAN____ has quit [Quit: Leaving...]
macclearich has quit [Ping timeout: 260 seconds]
robustus has quit [Ping timeout: 255 seconds]
robscormack has joined #ruby
robustus has joined #ruby
dbasch has quit [Ping timeout: 245 seconds]
xcesariox has quit [Remote host closed the connection]
k0m has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
havenwood has quit [Remote host closed the connection]
SilkFox_ has quit [Ping timeout: 250 seconds]
oo_ has quit [Remote host closed the connection]
dbasch has joined #ruby
fgo has joined #ruby
maletor has quit [Quit: Computer has gone to sleep.]
Spami has joined #ruby
sevenseacat has joined #ruby
troyready has quit [Ping timeout: 256 seconds]
mikepack has joined #ruby
bmurt has joined #ruby
fgo has quit [Ping timeout: 240 seconds]
toastynerd has quit [Remote host closed the connection]
Zebroid has joined #ruby
maletor has joined #ruby
yfeldblum has joined #ruby
rubyNooby has joined #ruby
absolutezeroff has joined #ruby
hamakn has quit [Remote host closed the connection]
Zebroid has quit [Ping timeout: 255 seconds]
Bira has joined #ruby
yfeldblu_ has joined #ruby
toastynerd has joined #ruby
phutchins has joined #ruby
nateberkopec has joined #ruby
yfeldblum has quit [Ping timeout: 240 seconds]
Bira has quit [Ping timeout: 240 seconds]
yfeldblu_ has quit [Ping timeout: 240 seconds]
em0ral has joined #ruby
nateberkopec has quit [Ping timeout: 240 seconds]
oo_ has joined #ruby
brandonshowers has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
rubyonrailed has quit []
namxam has joined #ruby
ItSANgo has joined #ruby
MatthewsFace has joined #ruby
rp__ has quit [Ping timeout: 260 seconds]
skysploit has joined #ruby
bricker`LA has quit [Ping timeout: 240 seconds]
tokik has joined #ruby
k0m has joined #ruby
mary5030 has joined #ruby
namxam has quit [Ping timeout: 260 seconds]
echooo has quit [Read error: Connection reset by peer]
AlexBlomCOM has quit [Ping timeout: 260 seconds]
echooo has joined #ruby
havenwood has joined #ruby
r_rios has joined #ruby
<rubyNooby> anyone know how to pass a array of hashes as params in a form? right now when i try to place my array of hashes in a param it is passed as a string with the commas missing.
hamakn has joined #ruby
wallerdev has quit [Quit: wallerdev]
AlexBlomCOM has joined #ruby
k0m has quit [Quit: Textual IRC Client: www.textualapp.com]
JoshGlzBrk has joined #ruby
nanoyak has joined #ruby
GriffinHeart has joined #ruby
havenwood has quit [Ping timeout: 264 seconds]
maletor has quit [Quit: Computer has gone to sleep.]
JoshGlzBrk has quit [Client Quit]
razum2um has joined #ruby
razum2um1 has quit [Ping timeout: 250 seconds]
GriffinHeart has quit [Ping timeout: 255 seconds]
sailias has joined #ruby
havenwood has joined #ruby
IteratorP has joined #ruby
MatthewsFace has quit [Quit: This computer has gone to sleep]
IteratorP has quit [Remote host closed the connection]
IteratorP has joined #ruby
larissa has joined #ruby
yfeldblum has joined #ruby
<ericwood> rubyNooby: #rubyonrails is more up your alley for this question :)
<rubyNooby> ok thanks
havenwood has quit [Ping timeout: 264 seconds]
nanoyak has quit [Quit: Computer has gone to sleep.]
noober03 has joined #ruby
lw has joined #ruby
noober03 has quit [Client Quit]
razum2um1 has joined #ruby
razum2um has quit [Ping timeout: 245 seconds]
MatthewsFace has joined #ruby
xenomorph is now known as {xenomorph}
mr_snowf1ake has joined #ruby
MatthewsFace has quit [Client Quit]
freezey has joined #ruby
SilkFox_ has joined #ruby
lethjakman has joined #ruby
MatthewsFace has joined #ruby
p0sixpscl has joined #ruby
bmurt has quit []
{xenomorph} is now known as xenomorph
Shidash has joined #ruby
davispuh has quit [Read error: Connection reset by peer]
NinoScript has quit [Quit: My Mac Mini has gone to sleep. ZZZzzz…]
mikepack has quit [Remote host closed the connection]
fgo has joined #ruby
SilkFox_ has quit [Ping timeout: 260 seconds]
rubyNooby has quit [Ping timeout: 246 seconds]
brandonshowers has joined #ruby
SilkFox_ has joined #ruby
darkxploit has quit [Ping timeout: 240 seconds]
hectorrr has quit [Remote host closed the connection]
mocfive has quit [Remote host closed the connection]
Zebroid has joined #ruby
hectorrr has joined #ruby
mocfive has joined #ruby
fgo has quit [Ping timeout: 245 seconds]
alvaro_o has quit [Quit: Ex-Chat]
dbasch has quit [Read error: Connection reset by peer]
fgo has joined #ruby
dbasch has joined #ruby
SilkFox_ has quit [Ping timeout: 240 seconds]
LexicalScope has joined #ruby
LexicalScope has joined #ruby
closer has quit [Ping timeout: 252 seconds]
Zebroid has quit [Ping timeout: 245 seconds]
mocfive has quit [Ping timeout: 240 seconds]
hectorrr has quit [Ping timeout: 264 seconds]
drizz has quit [Quit: Reconnecting]
drizz has joined #ruby
Barrayar has joined #ruby
nateberkopec has joined #ruby
closer has joined #ruby
Duckily has joined #ruby
fgo has quit [Ping timeout: 245 seconds]
FenixFyreX has joined #ruby
codezomb has joined #ruby
Spami has quit [Quit: This computer has gone to sleep]
<FenixFyreX> Hi, can anyone tell me how to check if an object's class in ruby equal to or a subclass of a specific class, from the c api?
Barrayar has quit [Client Quit]
toordog_ has joined #ruby
Bira has joined #ruby
wallerdev has joined #ruby
sepp2k1 has quit [Read error: Connection reset by peer]
toordog has quit [Ping timeout: 260 seconds]
hamakn has quit [Read error: Connection reset by peer]
wallerdev has quit [Client Quit]
Eomar is now known as Davey
wallerdev has joined #ruby
hamakn has joined #ruby
toastynerd has quit [Remote host closed the connection]
Bira has quit [Ping timeout: 256 seconds]
<IceDragon> FenixFyreX: download ruby's source and do a search in module.c for < > == <=> methods
<IceDragon> Find the C methods attached to them and see if their available in the API (true most times)
<FenixFyreX> Thanks IceDragon.
<IceDragon> otherwise use rb_obj_is_kind_of # (I think thats what it was called)
ra4king has quit [Remote host closed the connection]
fgo has joined #ruby
ra4king has joined #ruby
em0ral_ has joined #ruby
em0ral has quit [Read error: Connection reset by peer]
toastynerd has joined #ruby
namxam has joined #ruby
phinfonet has quit []
nonnatus has joined #ruby
<nonnatus> #haskell
nonnatus has quit [Client Quit]
snath has joined #ruby
GriffinHeart has joined #ruby
namxam has quit [Ping timeout: 255 seconds]
mgberlin has joined #ruby
Zenigor has joined #ruby
d4nk has joined #ruby
narcan has quit [Quit: -[AppDelegate installMalware]: unrecognized selector sent to instance 0x156109c0]
kreisys has joined #ruby
Guest_ has joined #ruby
Duckily has quit [Quit: Duckily]
MZAWeb has quit [Ping timeout: 250 seconds]
phutchins has quit [Ping timeout: 240 seconds]
mattmcclure has quit [Quit: Connection closed for inactivity]
rezzack has quit [Quit: Leaving.]
dbasch has quit [Quit: dbasch]
toastynerd has quit [Remote host closed the connection]
DivineEntity has quit [Quit: Lost terminal]
oso96_2000 has quit [Ping timeout: 244 seconds]
narcan has joined #ruby
krz has joined #ruby
oso|away has joined #ruby
oso|away is now known as oso96_2000
BadQuanta has joined #ruby
pis0xpscl has joined #ruby
lethan has quit []
djbkd has joined #ruby
gbaway has joined #ruby
gbaway has quit [Max SendQ exceeded]
sixxy has quit [Quit: Leaving]
p0sixpscl has quit [Ping timeout: 250 seconds]
gbaway has joined #ruby
gbaway has quit [Max SendQ exceeded]
rebelshrug has joined #ruby
rebelshrug has quit [Client Quit]
caveat- has quit [Ping timeout: 240 seconds]
momomomomo has joined #ruby
caveat- has joined #ruby
Zenigor has quit [Remote host closed the connection]
ndrei has joined #ruby
pis0xpscl has quit [Ping timeout: 250 seconds]
gbaway has joined #ruby
gbaway has quit [Max SendQ exceeded]
Eiam has quit [Ping timeout: 260 seconds]
p0sixpscl has joined #ruby
caveat- has quit [Remote host closed the connection]
Spami has joined #ruby
roodee has joined #ruby
ndrei has quit [Ping timeout: 250 seconds]
skysploit has quit []
yfeldblum has quit [Remote host closed the connection]
gbaway has joined #ruby
yfeldblum has joined #ruby
mikepack has joined #ruby
SilkFox_ has joined #ruby
Zebroid has joined #ruby
MZAWeb has joined #ruby
iamjarvo has joined #ruby
jaequery has joined #ruby
ridget has joined #ruby
Gue______ has joined #ruby
SilkFox_ has quit [Ping timeout: 240 seconds]
tectonic has joined #ruby
lethjakman has quit [Ping timeout: 264 seconds]
Zebroid has quit [Ping timeout: 245 seconds]
LouisR has joined #ruby
IteratorP has quit [Remote host closed the connection]
LouisR has quit [Client Quit]
freerobby has quit [Quit: Leaving.]
caveat- has joined #ruby
e^0 has joined #ruby
echooo has quit [Quit: echooo]
oo_ has quit [Remote host closed the connection]
echooo has joined #ruby
Ilyas has joined #ruby
fgo_ has joined #ruby
mikemac has quit [Remote host closed the connection]
havenwood has joined #ruby
ramfjord has quit [Ping timeout: 245 seconds]
mikemac has joined #ruby
Bira has joined #ruby
pothibo has quit [Quit: Textual IRC Client: http://www.textualapp.com/]
fgo__ has joined #ruby
FenixFyreX has quit [Quit: Page closed]
echevemaster has quit [Quit: Leaving]
britneywright has quit [Quit: Textual IRC Client: www.textualapp.com]
agent_wh1te is now known as agent_white
DivineEntity has joined #ruby
fgo has quit [Ping timeout: 245 seconds]
fgo_ has quit [Ping timeout: 245 seconds]
Bira has quit [Ping timeout: 272 seconds]
nateberkopec has quit [Quit: Leaving...]
namxam has joined #ruby
<benzrf> noocode: :3
<benzrf> er, nonnatus
<benzrf> oh missed em
toastynerd has joined #ruby
iamjarvo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
havenwood has quit []
Vivekananda_y510 has quit [Ping timeout: 264 seconds]
deric_skibotn has quit [Ping timeout: 240 seconds]
Skwallinux has joined #ruby
namxam has quit [Ping timeout: 250 seconds]
rafaelmagu has joined #ruby
nanoyak has joined #ruby
chrishough has quit [Quit: chrishough]
charliesome has joined #ruby
kmels has joined #ruby
roodee has quit [Quit: Lost terminal]
kreisys has quit [Quit: Computer has gone to sleep.]
StephenA1 has joined #ruby
AlexBlomCOM has quit [Ping timeout: 255 seconds]
Channel6 has quit [Quit: Leaving]
gbaway has quit [Ping timeout: 256 seconds]
e^0_ has joined #ruby
IteratorP has joined #ruby
kreisys has joined #ruby
sailias has quit [Ping timeout: 260 seconds]
chrishough has joined #ruby
e^0 has quit [Ping timeout: 240 seconds]
mallu has joined #ruby
IteratorP has quit [Ping timeout: 250 seconds]
<mallu> hi, new to ruby, in bash I can pass $1 is there anything similar in Ruby?
<mallu> I have a script which start and stop a process
ramfjord has joined #ruby
Vivekananda_y510 has joined #ruby
<j_mcnally> mallu: ARGV[0]
<pipework> mallu: ARGV, right
<mallu> ok
r_rios has quit [Ping timeout: 260 seconds]
zkay11 has left #ruby [#ruby]
anaeem1_ has joined #ruby
Alina-malina has quit [Read error: Connection reset by peer]
bridge has joined #ruby
momomomomo has quit [Quit: momomomomo]
lanox has quit [Quit: Lost terminal]
NinoScript has joined #ruby
Mon_Ouie has joined #ruby
StephenA1 has quit [Quit: StephenA1]
e^0_ has quit [Quit: WeeChat 0.4.3]
<bridge> i have this code in perl how i can achieve the same in ruby
<bridge> print Dump( {classes => \@classes, } );
e^0 has joined #ruby
<bridge> where @classes is an array
<bridge> this code prints out yaml format
<j_mcnally> @classes.each{ |c| puts c.inspect }
<j_mcnally> something like that?
<j_mcnally> hmm not sure about yaml tho
<j_mcnally> @classes.each{ |c| puts YAML.dump(c) }
<j_mcnally> or maybe even
<j_mcnally> YAML.dump(@classes)
spastorino has quit [Quit: Connection closed for inactivity]
blasius has quit [Remote host closed the connection]
Alina-malina has joined #ruby
gold_tooth has joined #ruby
MZAWeb has quit [Ping timeout: 250 seconds]
dbasch has joined #ruby
<bridge> j_mcnally: thanks j_mcnally i just figured out
<bridge> it should something like this
<bridge> a = {'classes' => ["foo1", "foo2", 'testing']}
<bridge> puts (a)
casheew__ has joined #ruby
<j_mcnally> i dont think that would give you YAML tho
<bridge> i mean puts YAML.dump(a)
<j_mcnally> yeah
jaequery has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<j_mcnally> when you say classes do you mean Ruby classes or like school classes?
dopiee has joined #ruby
<bridge> its puppet classes
Alina-malina has quit [Read error: Connection reset by peer]
j416_ has joined #ruby
<j_mcnally> ahh, to learn to create and craft puppets?
<bridge> i am writing a node classifier for the nodes in puppet
mgberlin_ has joined #ruby
tobago has joined #ruby
<j_mcnally> or like puppeteering ?
jshultz has quit [Quit: Connection closed for inactivity]
<bridge> puppet as an automation tool for managing computers
djbkd has quit [Quit: My people need me...]
casheew has quit [Read error: Connection reset by peer]
dopie has quit [Read error: Connection reset by peer]
j416 has quit [Read error: Connection reset by peer]
Alina-malina has joined #ruby
SilkFox_ has joined #ruby
<mallu> can someone please tell me what I am doing wrong? http://pastebin.com/eC4pawew
<mallu> error is in the bottom of the page
Zebroid has joined #ruby
brandonshowers has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<j_mcnally> mallu: start isn't defined
<agent_white> mallu: Move your "start" method above the case statement.
<j_mcnally> or ideally into a service class
<j_mcnally> and require that at the top of the file
<mallu> ok.. thank you guys
<agent_white> Though... it would probably just be easier to just do "systemctl status chef" or "service chef status"... or what have you.
<agent_white> But, anyways! :D
Lingo has joined #ruby
mgberlin has quit [Ping timeout: 264 seconds]
<j_mcnally> agent_white: could i write an init.d script as ruby?
<j_mcnally> thats a neat idea, i dislike bash/sh
<j_mcnally> if the shebang was ruby would it work?
IteratorP has joined #ruby
inside has quit [Ping timeout: 255 seconds]
<gold_tooth> hello all, i just took a dump
<gold_tooth> hi fives?
<j_mcnally> congrats
SilkFox_ has quit [Ping timeout: 240 seconds]
<j_mcnally> i need an adult
<agent_white> j_mcnally: You know what, I have NO idea... but that's a good thought.
mkoskar has joined #ruby
BadQuanta has quit [Quit: Leaving.]
mgberlin_ has quit [Remote host closed the connection]
Zebroid has quit [Ping timeout: 255 seconds]
mgberlin has joined #ruby
BadQuanta has joined #ruby
lethjakman has joined #ruby
brandonshowers has joined #ruby
mehlah has quit [Quit: Leaving...]
mgberlin_ has joined #ruby
cschneid has quit [Ping timeout: 240 seconds]
Bira has joined #ruby
CaptainJet has quit []
mgberlin has quit [Ping timeout: 240 seconds]
<eam> j_mcnally: yes it would absolutely work
cschneid has joined #ruby
<j_mcnally> eam: thats pretty cool. i hate writing all that bash
<eam> init.d scripts can be any executable type
<j_mcnally> eam: awesome to know
<eam> you can implement the entire userland in ruby if you wish, aside from ld.so which is needed to load ruby itself
<eam> even init can be written in ruby
<eam> if you statically compile ruby and stay away from gems with C extensions you don't even need ld.so
<j_mcnally> it seemed like it should be possible. very neat. RubyOS
Bira has quit [Ping timeout: 245 seconds]
<j_mcnally> ruby shell lol
<eam> in fact, if you pop into grub and add the line init=/usr/bin/irb, you will start up a kernel with irb as pid=1, the only process on the box
<eam> and you can just start typing in ruby
mallu has quit [Ping timeout: 246 seconds]
<j_mcnally> interesting
oo_ has joined #ruby
<j_mcnally> that one may be a bit overkill
mgberlin_ has quit [Remote host closed the connection]
<eam> it's pretty common to do init=/bin/sh to get around broken rc setup (eg, bypass login passwords)
namxam has joined #ruby
thams has joined #ruby
asmodlol has joined #ruby
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
namxam has quit [Ping timeout: 256 seconds]
mkoskar has quit [Quit: mkoskar]
arup_r has joined #ruby
EvanR_ has quit [Write error: Connection reset by peer]
mkoskar has joined #ruby
MatthewsFace has quit [Quit: This computer has gone to sleep]
EvanR_ has joined #ruby
yfeldblum has quit [Ping timeout: 255 seconds]
mr_snowf1ake has quit [Quit: Leaving]
pipework is now known as boten_anna
JoshGlzBrk has joined #ruby
philcrissman has joined #ruby
gold_tooth has quit [Quit: Page closed]
CodeLicker has joined #ruby
tectonic has quit []
IceDragon has quit [Quit: Space~~~]
yxhuvud has quit [Remote host closed the connection]
aganov has joined #ruby
rafaelmagu has quit [Quit: Textual IRC Client: www.textualapp.com]
bricker`LA has joined #ruby
Morkel has joined #ruby
Sauvin has joined #ruby
DeanH has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
charliesome has joined #ruby
mocfive has joined #ruby
jack_rabbit has quit [Ping timeout: 250 seconds]
oo_ has quit [Remote host closed the connection]
boten_anna is now known as pipework
oo_ has joined #ruby
Ilyas_ has joined #ruby
havenwood has joined #ruby
apeiros has quit [Read error: Connection reset by peer]
apeiros has joined #ruby
BadQuanta has quit [Quit: Leaving.]
Ilyas has quit [Ping timeout: 264 seconds]
mkoskar has quit [Quit: mkoskar]
mkoskar has joined #ruby
nobodyzzz has joined #ruby
escues has joined #ruby
mkoskar has quit [Client Quit]
oxez has left #ruby [#ruby]
benzrf has quit [Quit: bye]
benzrf|offline has joined #ruby
benzrf|offline is now known as benzrf
tylersmith has quit [Remote host closed the connection]
tylersmith has joined #ruby
benzrf is now known as benzrf|offline
Dude007 has joined #ruby
tylersmith has quit [Ping timeout: 264 seconds]
mary5030 has quit [Remote host closed the connection]
escues has quit [Quit: escues]
sigurding has joined #ruby
nanoyak has quit [Quit: Computer has gone to sleep.]
apeiros has quit [Remote host closed the connection]
apeiros has joined #ruby
drago777 has quit [Ping timeout: 240 seconds]
duncannz has joined #ruby
whyy has joined #ruby
memph1s has joined #ruby
DeanH has joined #ruby
drago777 has joined #ruby
apeiros has quit [Ping timeout: 260 seconds]
agjacome has quit [Quit: leaving]
jackneill has joined #ruby
relix has joined #ruby
chrishough has quit [Quit: chrishough]
codezomb has quit [Quit: Textual IRC Client: www.textualapp.com]
Alina-malina has quit [Read error: Connection reset by peer]
Alina-malina has joined #ruby
MatthewsFace has joined #ruby
Alina-malina has quit [Read error: Connection reset by peer]
SilkFox_ has joined #ruby
Alina-malina has joined #ruby
Zebroid has joined #ruby
mikepack has quit [Remote host closed the connection]
tagrudev has joined #ruby
kreisys has quit [Quit: Computer has gone to sleep.]
SilkFox_ has quit [Ping timeout: 260 seconds]
Zebroid has quit [Ping timeout: 245 seconds]
StephenA1 has joined #ruby
yfeldblum has joined #ruby
[gmi] has joined #ruby
StephenA1 has quit [Client Quit]
banjara has joined #ruby
Ilyas_ has quit [Ping timeout: 240 seconds]
Morkel has quit [Quit: Morkel]
fabrice31 has joined #ruby
JasmeetQA has joined #ruby
why_away has joined #ruby
Bira has joined #ruby
banister has joined #ruby
banister has quit [Max SendQ exceeded]
banister has joined #ruby
Duckily has joined #ruby
doev has joined #ruby
fabrice31 has quit [Ping timeout: 255 seconds]
whyy has quit [Ping timeout: 245 seconds]
<bhuey> Hey, I've got a simple ruby program to read in lines and try to match them but I keep getting the same error for the regular expression
<bhuey> no matter what I try
<bhuey> ./jtreg_extract.rb:8:in `match': invalid byte sequence in US-ASCII (ArgumentError)
<bhuey> What's that about ?
dumdedum has joined #ruby
GriffinHeart has quit [Remote host closed the connection]
sputnik13 has joined #ruby
<bhuey> I try putting in plain text and it doesn't seem to work
<sevenseacat> you've got something that isn't US-ASCII
Bira has quit [Ping timeout: 260 seconds]
<bhuey> There's nothing but plain text in this file
<robscormack> put # coding: utf-8
<robscormack> in the beginning of your Ruby file
<bhuey> top of the file
<bhuey> beore the #!/usr/bin/ruby ?
Lingo has quit [Quit: Computer has gone to sleep.]
<robscormack> no, in that case put it on the second line
<robscormack> let me check if that's the name
em0ral_ has quit []
namxam has joined #ruby
<robscormack> it's # encoding: UTF-8
<bhuey> still complains about it on the same line
<robscormack> sorry about that
<bhuey> no problem
<bhuey> I still get the same error
<bhuey> puts "#{line}" if line.match("^")
<bhuey> That's all I'm doing and it's generating a error warning from the .match
<bhuey> Any clues as to why this is blowing out ?
apeiros has joined #ruby
<sam113101> what's the line?
<sevenseacat> because line has non-ASCII characters in it
<bhuey> I changed the encoding using:
<bhuey> The environment variables and it's ok now
namxam has quit [Ping timeout: 250 seconds]
dangerousdave has joined #ruby
philcrissman has quit [Remote host closed the connection]
LexicalScope has quit [Quit: Leaving]
arup_r_ has joined #ruby
why_away has quit [Ping timeout: 245 seconds]
arup_r has quit [Ping timeout: 255 seconds]
larissa has quit [Quit: Leaving]
whyy has joined #ruby
Hobogrammer_ has joined #ruby
deadbolt has joined #ruby
wjimenez5271 has quit [Remote host closed the connection]
Dude007 has quit [Remote host closed the connection]
Dude007 has joined #ruby
p0sixpscl has quit [Quit: p0sixpscl]
lw has quit [Quit: s]
Hobogrammer has quit [Ping timeout: 250 seconds]
sputnik13 has quit [Quit: My Mac Mini has gone to sleep. ZZZzzz…]
bal has joined #ruby
Guest_ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<bhuey> robscormack: thanks
<bhuey> it put me on the right track. Had no idea that Ruby was sensitive to character encodines
<robscormack> np, sorry it was a blind catch
<bhuey> encodings
Dude007 has quit [Ping timeout: 240 seconds]
<robscormack> it is, it's being a pain for me in this exact moment
<bhuey> robscormack: I set environment variable from the link and it automatically worked
<bhuey> like normal
<robscormack> yeah, it's being a pain for me for different reasons :)
fabrice31 has joined #ruby
wallerdev has quit [Quit: wallerdev]
asmodlol has quit [Read error: Connection reset by peer]
Dude007 has joined #ruby
Elhu has joined #ruby
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
fabrice31 has quit [Ping timeout: 260 seconds]
matrixdevuk has joined #ruby
<matrixdevuk> Hi guys
<robscormack> hi matrixdevuk
Deele has joined #ruby
<matrixdevuk> I R B NEWB to ruby
<matrixdevuk> It's... too easy
<matrixdevuk> the syntax is so simple
<robscormack> but...?
<sevenseacat> this doesnt sound like a bad thing
<matrixdevuk> It's a bad thing, because I'm here now needing a challenge
GriffinHeart has joined #ruby
<matrixdevuk> That's how I grow my skills
<matrixdevuk> By challenging myself to the extreme
<robscormack> challenges are not bad things
<matrixdevuk> Any of you guys know anything ruby related that might challenge me?
<matrixdevuk> I loveee challenge
brandonshowers has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<robscormack> I challenge you to write a library that can do audio fingerprinting, shazam style :)
<robscormack> ok, that was harsh
<matrixdevuk> hmm
<matrixdevuk> can ruby even do that?
<robscormack> not by itself, but using the C bindings for libffi and other external libraries, it can even create rspec matchers
<robscormack> for songs that look like the same.
<matrixdevuk> that's pretty dope
<matrixdevuk> PHP can't dot that c:
<matrixdevuk> Ruby feels so nice to program in
<robscormack> a student of mine was doing something in that line, I'll know if he could on friday
<matrixdevuk> Like PHP did when I was noob to it
<matrixdevuk> You are a lecturer/teacher?
<robscormack> yes sir
<robscormack> not sure what's the difference between both, since we have only one word for teachers in Spanish
Ilyas has joined #ruby
roodee has joined #ruby
Ilyas has quit [Client Quit]
<matrixdevuk> OMG you're Spanish?
charliesome has joined #ruby
e^0 has quit [Ping timeout: 240 seconds]
<robscormack> chilean, actually, u?
<robscormack> we eliminated Spaniards from the world cup :D hehehehehe
whyy has quit [Remote host closed the connection]
<matrixdevuk> Are you fluent Spanish?
<robscormack> Sí señor
<matrixdevuk> I'm your biggest fan already
<robscormack> why?
ebanoid has joined #ruby
<matrixdevuk> You don't even know how much I love Spanish
<j_mcnally> me too robscormack
<robscormack> j_mcnally, you what?
<j_mcnally> im your biggest fan also
<robscormack> why is that?
<robscormack> hahaha
MatthewsFace has quit [Quit: This computer has gone to sleep]
<matrixdevuk> robscormack: I love Spanish so much, hate French though. Haha
<matrixdevuk> Learnt Spanish Sept 2013 — July 2014
<matrixdevuk> Continuing when we start back at school
<matrixdevuk> :D
ebanoid has quit [Client Quit]
<matrixdevuk> I was one of the only people in my year/grade to pick Spanish <3
ebanoid has joined #ruby
<robscormack> too bad that spanish language has weird characters like ñ and acute-accented vowels
davedev24_ has quit [Read error: Connection reset by peer]
<matrixdevuk> That's fine for me, since I use a mac and can do those ñ's all I like
<matrixdevuk> Just hold the n key and it pops up
davedev24_ has joined #ruby
Bira has joined #ruby
<robscormack> mine has the ñ key to the right of the L letter
MatthewsFace has joined #ruby
agent_white has quit [Read error: Connection reset by peer]
senayar has joined #ruby
<matrixdevuk> robscormack: can I see your keyboard? Like, a picture?
Gue______ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ridget has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
philcrissman has joined #ruby
roolo has joined #ruby
mostlybadfly has quit [Quit: Connection closed for inactivity]
<matrixdevuk> Now there's ironic.
<matrixdevuk> Two people's Mac's went to sleep before me, and at the same time
JoshGlzBrk has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<robscormack> shouldn't be hard
memph1s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
ndrei has joined #ruby
philcrissman has quit [Remote host closed the connection]
agent_white has joined #ruby
mary5030 has joined #ruby
mary5030 has quit [Remote host closed the connection]
whyy has joined #ruby
<sevenseacat> if i hold n on my keyboard, i just get nnnnnnnnnnnnnnnn >_>
mike32 has joined #ruby
<j_mcnally> sevenseacat: lol
Fusl has joined #ruby
<j_mcnally> sevenseacat: what irc client r u using?
<sevenseacat> pidgin - im also not on osx, i just wanted to share that tidbit :)
mocfive has quit [Remote host closed the connection]
dbasch has quit [Quit: dbasch]
mocfive has joined #ruby
fabrice31 has joined #ruby
bridge has quit [Ping timeout: 245 seconds]
Zespre has quit [Quit: leaving]
Zespre has joined #ruby
<j_mcnally> hahaha, how is pidgin at irc?
<j_mcnally> seems like there might be better options
SilkFox_ has joined #ruby
<sevenseacat> its fine. there might be better, but ive been using pidgin for a long time and have no reason to change
Zebroid has joined #ruby
dopiee has quit [Read error: Connection reset by peer]
mocfive has quit [Ping timeout: 256 seconds]
lethjakman has quit [Ping timeout: 250 seconds]
dopiee has joined #ruby
mary5030 has joined #ruby
ebanoid has quit [Ping timeout: 260 seconds]
<robscormack> I'm using X-Chat on Mac
sigurding_ has joined #ruby
SilkFox_ has quit [Ping timeout: 245 seconds]
sigurding has quit [Ping timeout: 240 seconds]
sigurding_ is now known as sigurding
Zebroid has quit [Ping timeout: 260 seconds]
mary5030 has quit [Remote host closed the connection]
dawkirst has joined #ruby
sargas has joined #ruby
ebanoid has joined #ruby
<matrixdevuk> robscormack: I use Lingo
<matrixdevuk> (full screened too, since full screening is cool these days)
banjara has quit [Quit: Leaving.]
e^0 has joined #ruby
Macaveli has joined #ruby
sargas has quit [Quit: I'm going to rest my eyeballs...]
Zebroid has joined #ruby
namxam has joined #ruby
ephemerian has joined #ruby
alem0lars has joined #ruby
namxam has quit [Ping timeout: 245 seconds]
Zebroid has quit [Ping timeout: 245 seconds]
banister is now known as banisterfiend
blackmesa has joined #ruby
moritzs has joined #ruby
ylluminarious has quit [Quit: Leaving...]
toastynerd has quit [Remote host closed the connection]
sargas has joined #ruby
Mooneye has quit [Quit: Leaving]
timonv_ has joined #ruby
noop has joined #ruby
little_fu has joined #ruby
asdadsada has joined #ruby
<asdadsada> hey guys
<asdadsada> is there a ruby web app that allows users to send coins to each others ?
<sevenseacat> thats a bit vague.
sargas has quit [Quit: I'm going to rest my eyeballs...]
<asdadsada> or a node.js app ?
<asdadsada> I need to implement a feature to my website where people can send coins or points to each other
Elhu has quit [Quit: Computer has gone to sleep.]
<matrixdevuk> asdadsada: I can do that with PHP... if you are able to use tht instead
<matrixdevuk> I'm a master PHP'er
sargas has joined #ruby
<asdadsada> really ?
claymore has joined #ruby
e^0 has quit [Quit: WeeChat 0.4.3]
<asdadsada> I wanted to be like a field where you put a nubmer of the receiver and then you put the amount and the coins will be sent
<asdadsada> something like this
<sevenseacat> make it yourself?
<asdadsada> idk how
<robscormack> what kind of coins?
<sevenseacat> time to learn
<asdadsada> doesn't matter
<asdadsada> fun coins
<asdadsada> or points
<robscormack> if ur trying to create a payment broker, there is plenty of apps for those
Zebroid has joined #ruby
<asdadsada> no no
<robscormack> then?
<asdadsada> its like bitcoin
<asdadsada> ok
<asdadsada> you have a balance
<asdadsada> and sent coins to each other
<asdadsada> I want something similar
<asdadsada> but web based
<robscormack> it's not difficult to create it in Ruby on Rails or Sinatra
<asdadsada> is there a tutorial ?
<robscormack> lots
<asdadsada> Could you link me one please ?
sargas has quit [Client Quit]
roolo has quit [Quit: Leaving...]
bMalum_ has joined #ruby
<robscormack> go private, this questions suits better on #rubyonrails
<sevenseacat> not if he wants a nodejs app
closures999 has joined #ruby
<robscormack> he asked for a ruby one first
<asdadsada> .....
Dude007 has quit [Remote host closed the connection]
Akagi201 has joined #ruby
<asdadsada> I don't know to creat this thing in rails
<asdadsada> I asked if there is something similar
Dude007 has joined #ruby
<banisterfiend> asdadsada what county are you from?
<asdadsada> what does it matter ?
s2013 has joined #ruby
<s2013> any tips on parsing a huge file? its 678M lines
_tpavel has joined #ruby
Zebroid has quit [Ping timeout: 264 seconds]
benlieb has joined #ruby
<j416_> s2013: one chunk at a time
j416_ is now known as j416
<s2013> would i chunk it using ruby or just chunk it ahead of time
benlieb has quit [Client Quit]
<j416> ruby can handle it
benlieb has joined #ruby
<s2013> does it read file into memory?
<j416> I wouldn't think so
<j416> but try
<s2013> cause the file is like 18gb, its a json file actually.
<s2013> its on a remote server with 8gigs of ram
<j416> I vaguely remember there was a json parser that worked like SAX for XML
<j416> i.e. that triggers event
<j416> s
closures999 has quit [Client Quit]
<robscormack> I can't recall either.
<robscormack> 18 Gb in a JSON file? good luck and begin creating a large swapfile.
Dude007 has quit [Ping timeout: 264 seconds]
ndrei has quit [Ping timeout: 245 seconds]
timonv_ has quit [Remote host closed the connection]
TomyWork has joined #ruby
Alina-malina has quit [Read error: Connection reset by peer]
<s2013> robscormack, yeah :\ .. i cant even import it to mongo. im so stuck. basically we are moving away from parse.com
<s2013> so we exported the db.. thats just one table..
<s2013> i thought about moving to postgres
whyy has quit [Remote host closed the connection]
<s2013> since we do need a lot of relational stuff
Alina-malina has joined #ruby
narcan has quit [Quit: -[AppDelegate installMalware]: unrecognized selector sent to instance 0x156109c0]
yunlei has joined #ruby
namxam has joined #ruby
freezey has quit [Remote host closed the connection]
<sevenseacat> lol mongodb
<yunlei> lol
blackmesa has quit [Ping timeout: 264 seconds]
<s2013> not a huge fan of mongo which is why i wanted to move to pg
<bMalum_> mongo is working fine for me with 75Gig DB at the Moment with enorm I/O
freezey has joined #ruby
<s2013> 18gb isnt that big of a database adn mongo can easily handle it.. but thing is i exported the db and need to import it to another db
<j416> s2013: so stop talking and google for the sax-like json parser :)
<s2013> json-stream?
yunlei has quit [Client Quit]
<s2013> j416, ^
<j416> not sure, never used anything but stdlib json
<j416> try it :)
<j416> stream-based parser is what you want
<s2013> thats what it is.. i guess i can make it parse the file locally
<s2013> maybe im going about it the wrong way. maybe there is a better way to convert a json file into a pg dump or something
<j416> stream-based parser should do it
<j416> it'll work like this,
freezey has quit [Ping timeout: 264 seconds]
<j416> you give it the stream, set something to trigger when the parser has enough data, then use that something to either generate some kind of SQL or what have you or simply insert directly into a database
<j416> be sure to wrap it in a single transaction or it'll probably be very slow.
<j416> never used mongodb so not sure how it works in that regard.
<s2013> not for mongo. for postgres
<j416> for postgres that's what you'll want to do
<s2013> mongo has a mongoimport that works with json directly although it keeps saying file too large in my case
<bMalum_> so we exported the db.. thats just one table.. => other way to Export the DB maybe in an Format for PG?
<s2013> but i think pg is a better fit for us
<j416> s2013: you can also see if there is a postgres foreign data wrapper for json
relix has quit [Remote host closed the connection]
<s2013> i googled. couldnt find much. also might be cause its almost 4 am and i had 4 hrs of sleep last night.. good times
<s2013> bmalum_, were you talking to me?
whyy has joined #ruby
relix has joined #ruby
<j416> not sure if it's designed for 18 GB json files but worth skimming through perhaps
* j416 is off to work o/
SilkFox_ has joined #ruby
<s2013> cool. thank you very much j416
anarang has joined #ruby
SegFaultAX has quit [Excess Flood]
Bumptious has quit [Remote host closed the connection]
tvw has joined #ruby
Bumptious has joined #ruby
tvw has quit [Client Quit]
<bMalum_> s2013, yes - was just thinking - what db was the older one
arup_r_ has quit [Remote host closed the connection]
SilkFox_ has quit [Ping timeout: 272 seconds]
sandelius has joined #ruby
MatthewsFace has quit [Quit: This computer has gone to sleep]
sinkensabe has joined #ruby
s2013_ has joined #ruby
alexju has joined #ruby
<s2013_> do you know mongo well? bmalum_
tesuji has joined #ruby
radic has quit [Ping timeout: 240 seconds]
<sandelius> Anyone know how to document class variables using Yarddoc?
s2013 has quit [Ping timeout: 255 seconds]
radic has joined #ruby
<guardian> anyone having experiences with Ruby under Windows? Should I go cygwin or RubyInstaller? knowing the gems I'm using require to compile native extensions, e.g. Compass gem
dANOKELOFF has joined #ruby
ebanoid has quit [Ping timeout: 240 seconds]
Elhu has joined #ruby
SegFaultAX has joined #ruby
<s2013_> guardian, install ubuntu or something
<s2013_> trying to patch things all the time will get tiring real soon
whyy has quit [Remote host closed the connection]
LiohAu has joined #ruby
mary5030 has joined #ruby
j_mcnally_ has quit [Ping timeout: 256 seconds]
e^0 has joined #ruby
mikecmpbll has joined #ruby
Takle has joined #ruby
Spami has quit [Quit: This computer has gone to sleep]
<guardian> oh I'm on a Mac
<apeiros> `git log branch --not master` <3
<sevenseacat> then why do you care about windows? >_>
<guardian> but some coworkers aren't and I want to figure out whether it flies for them
mary5030 has quit [Ping timeout: 250 seconds]
<guardian> it's about compiling our product doc which is built with nanoc
timonv_ has joined #ruby
e^0 has quit [Ping timeout: 255 seconds]
<guardian> so they need to compile the doc by themselves every now and then
inside has joined #ruby
freezey has joined #ruby
[gmi] has quit [Quit: Leaving]
ndrei has joined #ruby
kaspergrubbe has joined #ruby
Alina-malina has quit [Ping timeout: 245 seconds]
MatthewsFace has joined #ruby
Joulse has joined #ruby
thams has quit [Quit: thams]
St_Marx has quit [Ping timeout: 264 seconds]
freezey has quit [Ping timeout: 256 seconds]
Alina-malina has joined #ruby
ebanoid has joined #ruby
oo_ has quit [Remote host closed the connection]
postmodern has quit [Quit: Leaving]
oo_ has joined #ruby
aaronmcadam has joined #ruby
aaronmcadam has quit [Client Quit]
e^0 has joined #ruby
ramfjord has quit [Ping timeout: 260 seconds]
GriffinHeart has quit [Remote host closed the connection]
kmels has quit [Ping timeout: 240 seconds]
timonv_ has quit [Remote host closed the connection]
timonv_ has joined #ruby
Morkel has joined #ruby
whyy has joined #ruby
arup_r has joined #ruby
asdadsada has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
Alina-malina has quit [Ping timeout: 250 seconds]
MatthewsFace has quit [Quit: This computer has gone to sleep]
ghr has joined #ruby
ebanoid has quit [Ping timeout: 255 seconds]
Shidash has quit [Ping timeout: 240 seconds]
mike32 has quit [Quit: Leaving]
agent_white has quit [Quit: night]
rdark has joined #ruby
elaptics`away is now known as elaptics
mocfive has joined #ruby
dopiee has quit [Read error: Connection reset by peer]
bal has quit [Ping timeout: 240 seconds]
end_guy has quit [Ping timeout: 264 seconds]
yokel has quit [Ping timeout: 260 seconds]
ebanoid has joined #ruby
lxsameer has joined #ruby
lxsameer has quit [Changing host]
lxsameer has joined #ruby
Mongey has quit [Ping timeout: 256 seconds]
dopiee has joined #ruby
yokel has joined #ruby
jle` has quit [Quit: WeeChat 0.4.2]
cina has joined #ruby
jle` has joined #ruby
bal has joined #ruby
sandelius has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
roolo has joined #ruby
Wolland has quit [Remote host closed the connection]
ghr has quit [Read error: Connection timed out]
olivier_bK has joined #ruby
beauby has joined #ruby
ghr has joined #ruby
bayed has joined #ruby
<cina> Why is `x` still empty, but x["k"] is an array here: x = Hash.new([]); x["k"] << "v"; p x; p x["k"]
end_guy has joined #ruby
<sevenseacat> >> x = Hash.new([]); x["k"] << "v"; p x; p x["k"]
<Mon_Robot> sevenseacat: => {}... (https://eval.in:443/171252)
dvb_ua has quit [Ping timeout: 240 seconds]
<cina> sevenseacat: thanks!
timonv^ has joined #ruby
<apeiros> cina: you modify the default value there. you never assign a value to the key "k"
<apeiros> i.e., x["k"] # returns default value
<apeiros> << "v" # push "v" to the default value
absolutezeroff has quit [Ping timeout: 260 seconds]
timonv^ has quit [Remote host closed the connection]
timonv_ has quit [Ping timeout: 272 seconds]
<cina> apeiros: I still don't get it. What I really want to do is to avoid checking if the value at key is initialized already or not.
<cina> if x["k"] just returns the default value, why does its value change (it is not ["v"])
<cina> it is *NOW ["v"]
Poky has joined #ruby
<bMalum_> Does anyone have a solution for this: I have to add variabel lengh list and values to an table and generate a PDF with Header and so - i had a look at prawn can it do this?
ebanoid has quit [Ping timeout: 255 seconds]
sandelius has joined #ruby
<sevenseacat> it can.
DeanH has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<cina> apeiros: oh I see, I'm appending to the default value (for all keys)
ebanoid has joined #ruby
<bMalum_> sevenseacat, is ther a better tutorial or Dokumentation as the Manual with some ticks for headers and so?
<sevenseacat> the manual is pretty comprehensive.
SilkFox_ has joined #ruby
<cina> In case anyone is interested, the solution to my query is: >> x[:k] = x[:k] << "v"
claymore has quit [Ping timeout: 240 seconds]
absolutezeroff has joined #ruby
cina has quit [Quit: leaving]
claymore has joined #ruby
e^0 has quit [Ping timeout: 264 seconds]
fgo__ has quit [Remote host closed the connection]
SilkFox_ has quit [Ping timeout: 255 seconds]
lanox has joined #ruby
cina has joined #ruby
absolutezeroff has quit [Ping timeout: 255 seconds]
banisterfiend has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<olivier_bK> somebody know how i can list all operator of channel on irc
<olivier_bK> this one or another one ?*
Wolland has joined #ruby
<jle`> olivier_bK: are you asking how to do it with a program?
<olivier_bK> jle`, no
<jle`> because my client lists them at the top of the users bar
<apeiros> cina: sorry, was on the other side of the table. yes, exactly.
<olivier_bK> you know the command as '/msg etc ...
<olivier_bK> i know we can list all operator but i cant find how
chth0n has joined #ruby
ra4king has quit [Ping timeout: 250 seconds]
namxam has quit [Remote host closed the connection]
casheew_ has left #ruby [#ruby]
freezey has joined #ruby
casheew has joined #ruby
inside has quit [Ping timeout: 240 seconds]
Karpuragauram has joined #ruby
absolutezeroff has joined #ruby
Alina-malina has joined #ruby
freezey has quit [Ping timeout: 250 seconds]
timonv_ has joined #ruby
<dopiee> hey all
<dopiee> hey Olipro
<dopiee> olivier_bK,
arup_r has quit [Remote host closed the connection]
Hobogrammer_ has quit [Read error: Connection reset by peer]
arup_r has joined #ruby
<olivier_bK> hay
<olivier_bK> hey
<olivier_bK> dopiee, what's up
<dopiee> nothing much just trying to figure this out
<dopiee> :)
<dopiee> ruby ruby ruby
casheew has left #ruby [#ruby]
timonv_ has quit [Remote host closed the connection]
Karpuragauram has quit [Quit: Leaving]
workmad3 has joined #ruby
absolutezeroff has quit [Ping timeout: 256 seconds]
namxam has joined #ruby
timonv_ has joined #ruby
s2013_ has quit [Ping timeout: 255 seconds]
marr has joined #ruby
diegoviola has quit [Quit: WeeChat 0.4.3]
Symbiosisz has quit [Read error: Connection reset by peer]
GriffinHeart has joined #ruby
absolutezeroff has joined #ruby
fgo has joined #ruby
sevenseacat has quit [Quit: Leaving.]
jdj_dk has joined #ruby
ebanoid has quit [Ping timeout: 245 seconds]
alexju has quit [Read error: Connection reset by peer]
bluenemo has joined #ruby
ebanoid has joined #ruby
fgo has quit [Ping timeout: 240 seconds]
klaut has joined #ruby
rylev has joined #ruby
Dude007_ has joined #ruby
ra4king has joined #ruby
alem0lars has quit [Quit: Going AFK...]
ebanoid has quit [Ping timeout: 245 seconds]
kaspergr_ has joined #ruby
ebanoid has joined #ruby
kaspergrubbe has quit [Ping timeout: 260 seconds]
andrewlio has joined #ruby
karupa is now known as zz_karupa
pandaant_ has joined #ruby
St_Marx has joined #ruby
Wolland has quit [Remote host closed the connection]
absolutezeroff has quit [Ping timeout: 245 seconds]
mustermax has joined #ruby
hamakn has quit [Remote host closed the connection]
Dude007_ has quit [Ping timeout: 245 seconds]
SilkFox_ has joined #ruby
GriffinHeart has quit [Remote host closed the connection]
yfeldblum has quit [Ping timeout: 240 seconds]
dopiee has quit [Read error: Connection reset by peer]
dopiee has joined #ruby
kaspergr_ is now known as kaspergrubbe
andrewlio has quit [Remote host closed the connection]
yacks has quit [Ping timeout: 245 seconds]
Wolland has joined #ruby
fabrice31 has quit [Remote host closed the connection]
SilkFox_ has quit [Ping timeout: 245 seconds]
jdj_dk has quit [Remote host closed the connection]
yacks has joined #ruby
lanox has quit [Remote host closed the connection]
Atttwww has quit [Remote host closed the connection]
Atttwww has joined #ruby
roodee has quit [Ping timeout: 240 seconds]
freezey has joined #ruby
roodee has joined #ruby
roodee is now known as Guest1881
jdj_dk has joined #ruby
ebanoid has quit [Ping timeout: 240 seconds]
flagg0204 has quit [Ping timeout: 256 seconds]
CorpusCallosum has quit [Ping timeout: 256 seconds]
Mongey has joined #ruby
ebanoid has joined #ruby
zenspider has quit [Ping timeout: 272 seconds]
zenspider has joined #ruby
flagg0204 has joined #ruby
Zebroid has joined #ruby
hamakn has joined #ruby
freezey has quit [Ping timeout: 240 seconds]
narcan has joined #ruby
narcan has quit [Client Quit]
startupality has joined #ruby
sandelius has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Atttwww has quit [Ping timeout: 264 seconds]
sandelius has joined #ruby
Bira has quit [Remote host closed the connection]
hendricius has left #ruby [#ruby]
fgo has joined #ruby
ddv has joined #ruby
ddv has quit [Changing host]
<mrgrieves> how can I check the ruby version at runtime i.e. from irb?
beauby has quit [Ping timeout: 245 seconds]
<workmad3> mrgrieves: RUBY_VERSION constant
fgo has quit [Ping timeout: 250 seconds]
hamed_r has joined #ruby
treehug88 has joined #ruby
<mrgrieves> workmad3: Cheers!
<arup_r> How to suppress rails console echo/inspection
yfeldblum has joined #ruby
<arup_r> in IRB i can do irb --simple-prompt --noecho
Alina-malina has quit [Read error: Connection reset by peer]
<arup_r> how the same can be done in while starting rails console
Alina-malina has joined #ruby
lanox has joined #ruby
rylev has quit [Remote host closed the connection]
rylev has joined #ruby
andrewlio has joined #ruby
yfeldblum has quit [Ping timeout: 250 seconds]
DaniG2k has joined #ruby
startupality has quit [Quit: startupality]
whyy has quit [Read error: Connection reset by peer]
dekz has quit [Quit: Connection closed for inactivity]
startupality has joined #ruby
whyy has joined #ruby
rylev has quit [Ping timeout: 256 seconds]
duncannz has quit [Ping timeout: 272 seconds]
fabrice31 has joined #ruby
jdj_dk has quit [Remote host closed the connection]
rylev has joined #ruby
Zebroid has quit [Remote host closed the connection]
mbuf has joined #ruby
p0sixpscl has joined #ruby
Alina-malina has quit [Ping timeout: 250 seconds]
beauby has joined #ruby
p0sixpscl has quit [Ping timeout: 250 seconds]
havenwood has quit []
roolo has quit [Quit: Leaving...]
shevy has joined #ruby
ebanoid has quit [Ping timeout: 256 seconds]
tylersmith has joined #ruby
sandelius has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
PanPan has quit [Quit: ChatZilla 0.9.90.1 [Firefox 31.0/20140716183446]]
nfk has joined #ruby
nfk has quit [Read error: Connection reset by peer]
ebanoid has joined #ruby
tylersmith has quit [Ping timeout: 260 seconds]
banister has joined #ruby
little_fu has quit [Remote host closed the connection]
puppeh has joined #ruby
lanox has quit []
<puppeh> when I call an object like `obj = Foo.new; obj`
<puppeh> then it's #inspect method is called?
rylev has quit [Remote host closed the connection]
DivineEntity has quit [Ping timeout: 250 seconds]
DivineEntity has joined #ruby
rylev has joined #ruby
sandelius has joined #ruby
madhu has joined #ruby
kyb3r_ has quit [Read error: Connection reset by peer]
mehlah has joined #ruby
zenspider has quit [Remote host closed the connection]
SilkFox_ has joined #ruby
<madhu> Hi every one I getting very confuse raise and rescue friends
mr-foobar has quit [Quit: Leaving...]
Duckily has quit [Quit: Duckily]
<madhu> andrewlio: Hi
Bira has joined #ruby
freezey has joined #ruby
rylev has quit [Ping timeout: 272 seconds]
Vivekananda_y510 has quit [Ping timeout: 264 seconds]
madhu has left #ruby [#ruby]
razorgfx has joined #ruby
nfk has joined #ruby
dumdedum has quit [Quit: foo]
startupality has quit [Quit: startupality]
SilkFox_ has quit [Ping timeout: 245 seconds]
JasmeetQA has quit [Quit: Leaving.]
Ilyas has joined #ruby
Bira has quit [Ping timeout: 245 seconds]
amacou has joined #ruby
Dude007 has joined #ruby
freezey has quit [Ping timeout: 245 seconds]
Morkel has quit [Quit: Morkel]
<shevy> puppeh in irb perhaps, but a sure way to call it is by using p
<shevy> p is Kernel#p
<shevy> so:
<shevy> obj = Foo.new; p obj
<shevy> >> class Foo; end; obj = Foo.new; p obj
<Mon_Robot> shevy: => #<Foo:0x40aedb08>... (https://eval.in:443/171308)
<shevy> \o/
<shevy> damn it... I just read Mon_Robert rather than Mon_Robot ...
fabrice31 has quit [Remote host closed the connection]
dblessing has joined #ruby
GriffinHeart has joined #ruby
ebanoid has quit [Ping timeout: 240 seconds]
matrixdevuk has quit [Quit: Computer has gone to sleep.]
AlSquire has joined #ruby
amacou has quit [Remote host closed the connection]
matrixdevuk has joined #ruby
Dude007_ has joined #ruby
Dude007_ has quit [Read error: Connection reset by peer]
matrixdevuk has quit [Read error: Connection reset by peer]
Dude007_ has joined #ruby
Dude007 has quit [Ping timeout: 260 seconds]
matrixdevuk has joined #ruby
nicoulaj has joined #ruby
amisha has joined #ruby
gil has quit [Remote host closed the connection]
phantomtiger has joined #ruby
ebanoid has joined #ruby
gregf_ has quit [Quit: leaving]
memph1s has joined #ruby
dumdedum has joined #ruby
fabrice31 has joined #ruby
<wasamasa> no eval_bot?
startupality has joined #ruby
narcan has joined #ruby
ygdakk has joined #ruby
ylluminarious has joined #ruby
beauby has quit [Ping timeout: 245 seconds]
<banister> >> 'alut'
<Mon_Robot> banister: => "alut" (https://eval.in:443/171321)
end_guy has quit [Ping timeout: 264 seconds]
<banister> >> Dir['*]
<Mon_Robot> banister: => SyntaxError: (eval):1: unterminated string meets end of file... (https://eval.in:443/171323)
<banister> >> Dir['*']
<Mon_Robot> banister: => ["input-958442ba0952", "output-958442ba0952", "source-958442ba0952"] (https://eval.in:443/171325)
Rollabunna has quit [Quit: Leaving...]
<banister> >> File.read( "source-958442ba0952"])
<Mon_Robot> banister: => SyntaxError: (eval):1: syntax error, unexpected ']', expecting ')'... (https://eval.in:443/171327)
<banister> >> File.read( "source-958442ba0952")
yfeldblum has joined #ruby
<Mon_Robot> banister: => Errno::ENOENT: No such file or directory @ rb_sysopen - source-958442ba0952 (https://eval.in:443/171328)
<banister> >> File.read("./source-958442ba0952")
<Mon_Robot> banister: => (https://eval.in:443/171330)
mustermax1 has joined #ruby
fgo has joined #ruby
<shevy> wasamasa it was conquered by the french
<shevy> it now ouputs accents
<wasamasa> that explains everything
<wasamasa> >> 'salut à tous'
<Mon_Robot> wasamasa: => "salut à tous" (https://eval.in:443/171336)
mustermax has quit [Ping timeout: 250 seconds]
beauby has joined #ruby
Zebroid has joined #ruby
ebanoid has quit [Quit:
moritzs has quit [Ping timeout: 240 seconds]
yfeldblum has quit [Ping timeout: 255 seconds]
phoo1234567 has joined #ruby
fgo has quit [Ping timeout: 245 seconds]
Atrumx has quit [Quit: exit]
Dude007_ has quit [Read error: Connection reset by peer]
phoo1234567 has quit [Max SendQ exceeded]
phoo1234567 has joined #ruby
decoponio has joined #ruby
beseku has joined #ruby
Dude007 has joined #ruby
ndrei has quit [Ping timeout: 255 seconds]
rylev has joined #ruby
ebanoid has joined #ruby
amacou has joined #ruby
spastorino has joined #ruby
amacou has quit [Remote host closed the connection]
tvw has joined #ruby
tokik has quit [Ping timeout: 240 seconds]
end_guy has joined #ruby
benlieb has quit [Quit: benlieb]
Photism has quit [Quit: Leaving]
echooo has quit [Ping timeout: 250 seconds]
rylev has quit [Ping timeout: 240 seconds]
timonv_ has quit [Remote host closed the connection]
timonv_ has joined #ruby
armyriad has quit [Ping timeout: 250 seconds]
joonty has quit [Ping timeout: 245 seconds]
Dude007 has quit [Ping timeout: 260 seconds]
armyriad has joined #ruby
Dude007 has joined #ruby
Beoran has quit [Ping timeout: 264 seconds]
amacou has joined #ruby
timonv_ has quit [Ping timeout: 240 seconds]
MCDev has quit [Ping timeout: 250 seconds]
sk87 has quit [Quit: My Mac Mini has gone to sleep. ZZZzzz…]
lw has joined #ruby
ebanoid has quit [Ping timeout: 240 seconds]
nuck has quit [Read error: Connection reset by peer]
tylersmith has joined #ruby
nuck has joined #ruby
ebanoid has joined #ruby
fgo has joined #ruby
ndrei has joined #ruby
joonty has joined #ruby
tylersmith has quit [Ping timeout: 245 seconds]
rylev has joined #ruby
klaut has quit [Remote host closed the connection]
Beoran has joined #ruby
Akuma has quit [Quit: So long sukkas!]
jespada has joined #ruby
freezey has joined #ruby
fgo has quit [Ping timeout: 256 seconds]
elaptics is now known as elaptics`away
elaptics`away is now known as elaptics
alem0lars has joined #ruby
sandelius has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Akuma has joined #ruby
ldnunes has joined #ruby
SilkFox_ has joined #ruby
freezey has quit [Ping timeout: 260 seconds]
Alina-malina has joined #ruby
Bira has joined #ruby
LadyRainicorn has joined #ruby
<olivier_bK> how can i select all character after [
Takle has quit [Remote host closed the connection]
Vivekananda_y510 has joined #ruby
<Mon_Ouie> >> "foo[bar baz\n qux"[/\[(.+)/m, 1]
<Mon_Robot> Mon_Ouie: => "bar baz\n qux" (https://eval.in:443/171390)
<Mon_Ouie> Or make that .*
Takle has joined #ruby
amystephen has joined #ruby
SilkFox_ has quit [Ping timeout: 256 seconds]
iamjarvo has joined #ruby
Bira has quit [Ping timeout: 260 seconds]
<olivier_bK> thanks Mon_Ouie
ebanoid has quit [Ping timeout: 256 seconds]
Dude007 has quit [Read error: Connection reset by peer]
Dude007 has joined #ruby
phinfonet has joined #ruby
mbuf has quit [Quit: Leaving]
ebanoid has joined #ruby
Zebroid has quit [Remote host closed the connection]
charliesome has joined #ruby
AskSteve has joined #ruby
cina has quit [Ping timeout: 255 seconds]
anaeem1_ has quit [Remote host closed the connection]
godd2 has quit [Remote host closed the connection]
AskSteve has left #ruby [#ruby]
ridget has joined #ruby
zenspider has joined #ruby
vertis has joined #ruby
iamjarvo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mityaz has quit [Ping timeout: 250 seconds]
sailias has joined #ruby
mityaz has joined #ruby
Dude007 has quit [Read error: Connection reset by peer]
Sgeo has quit [Read error: Connection reset by peer]
Dude007 has joined #ruby
Dude007 has quit [Read error: Connection reset by peer]
Dude007 has joined #ruby
memph1s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
mustermax1 has quit [Quit: Leaving.]
Bira has joined #ruby
pandaant_ has quit [Quit: leaving]
jcromartie has joined #ruby
timonv_ has joined #ruby
cina has joined #ruby
iamjarvo has joined #ruby
hamakn has quit [Remote host closed the connection]
timonv_ has quit [Remote host closed the connection]
timonv_ has joined #ruby
Dude007_ has joined #ruby
ebanoid has quit [Ping timeout: 240 seconds]
gregf_ has joined #ruby
Dude007__ has joined #ruby
amisha has quit [Ping timeout: 260 seconds]
ebanoid has joined #ruby
davispuh has joined #ruby
arup_r has quit [Remote host closed the connection]
mostlybadfly has joined #ruby
Dude007 has quit [Ping timeout: 240 seconds]
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Dude007_ has quit [Ping timeout: 240 seconds]
arup_r has joined #ruby
vertis has quit [Quit: vertis]
vertis has joined #ruby
whyy has quit [Remote host closed the connection]
vertis has quit [Remote host closed the connection]
ridget has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
phutchins has joined #ruby
puppeh has left #ruby ["Leaving..."]
iamjarvo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
marr has quit [Ping timeout: 240 seconds]
memph1s has joined #ruby
klaut has joined #ruby
philcrissman has joined #ruby
DivineEntity has quit [Quit: leaving]
deepy has quit [Ping timeout: 245 seconds]
klaut has quit [Ping timeout: 245 seconds]
sk87 has joined #ruby
aeonti has joined #ruby
MZAWeb has joined #ruby
Zebroid has joined #ruby
Wolland has quit [Remote host closed the connection]
Emmanuel_Chanel has quit [Quit: Leaving]
Port3M5[Work] has quit [Remote host closed the connection]
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Dude007 has joined #ruby
tylersmith has joined #ruby
freezey has joined #ruby
AlexBlomCOM has joined #ruby
Emmanuel_Chanel has joined #ruby
Port3M5[Work] has joined #ruby
fgo has joined #ruby
braincrash has joined #ruby
ebanoid has quit [Ping timeout: 250 seconds]
Dude007_ has joined #ruby
narcan has quit [Quit: -[AppDelegate installMalware]: unrecognized selector sent to instance 0x156109c0]
Dude007__ has quit [Ping timeout: 264 seconds]
deepy has joined #ruby
tylersmith has quit [Ping timeout: 255 seconds]
freezey has quit [Ping timeout: 245 seconds]
deepy is now known as Guest77493
joast has joined #ruby
ebanoid has joined #ruby
Dude007 has quit [Ping timeout: 240 seconds]
AlexBlomCOM has quit [Ping timeout: 245 seconds]
fgo has quit [Ping timeout: 272 seconds]
freerobby has joined #ruby
sailias has quit [Ping timeout: 240 seconds]
whyy has joined #ruby
memph1s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Dude007 has joined #ruby
ndrei has quit [Ping timeout: 260 seconds]
agjacome has joined #ruby
SilkFox_ has joined #ruby
freerobby has quit [Client Quit]
arup_r has quit [Remote host closed the connection]
Dude007_ has quit [Ping timeout: 240 seconds]
ndrei has joined #ruby
lw has quit [Quit: s]
cina has quit [Ping timeout: 264 seconds]
cina has joined #ruby
PudgePacket has joined #ruby
<PudgePacket> I'm getting this error on gem install: gem install jekyll ERROR: While executing gem ... (Errno::EEXIST) File exists @ dir_s_mkdir - /usr/local/Cellar/ruby/2.1.1_1/lib/ruby/gems
bmurt has joined #ruby
SilkFox_ has quit [Ping timeout: 272 seconds]
charliesome has joined #ruby
aeonti has left #ruby ["Once you know what it is you want to be true, instinct is a very useful device for enabling you to know that it is"]
Guest77493 has quit [Ping timeout: 260 seconds]
DeanH has joined #ruby
Lingo has joined #ruby
freerobby has joined #ruby
EMoreth has quit [Quit: Lingo - http://www.lingoirc.com]
ebanoid has quit [Ping timeout: 264 seconds]
qwyeth has joined #ruby
spyderman4g63 has joined #ruby
GriffinHeart has quit [Remote host closed the connection]
<PudgePacket> nvm found solution :)
charliesome has quit [Client Quit]
PudgePacket has quit [Quit: Page closed]
hamakn has joined #ruby
mehlah has quit [Quit: Leaving...]
cina has quit [Remote host closed the connection]
ebanoid has joined #ruby
Skwallinux has quit [Ping timeout: 256 seconds]
banister has joined #ruby
hamakn has quit [Read error: Connection reset by peer]
banister has quit [Max SendQ exceeded]
memph1s has joined #ruby
banister has joined #ruby
nateberkopec has joined #ruby
britneywright has joined #ruby
ari-_-e has quit [Ping timeout: 255 seconds]
sailias has joined #ruby
DaniG2k has quit [Ping timeout: 240 seconds]
chth0n has quit [Ping timeout: 256 seconds]
thams has joined #ruby
Zebroid has quit [Remote host closed the connection]
ari-_-e has joined #ruby
cina has joined #ruby
klaut has joined #ruby
memph1s has quit [Quit: I couldn't come up with quit message :(]
cina has quit [Client Quit]
memph1s has joined #ruby
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
klaut has quit [Remote host closed the connection]
sailias has quit [Ping timeout: 256 seconds]
<mostlybadfly> Good morning
Bumptious has quit [Read error: Connection reset by peer]
Bumptiou_ has joined #ruby
banister has joined #ruby
Zebroid has joined #ruby
klaut has joined #ruby
Zebroid has quit [Read error: Connection reset by peer]
linojon has joined #ruby
Zebroid has joined #ruby
tkuchiki_ has joined #ruby
MZAWeb has quit [Quit: WeeChat 0.4.3]
<matrixdevuk> This channel... is so ... dead
<matrixdevuk> lol
<matrixdevuk> G'mornin, mostlybadfly
charliesome has joined #ruby
TripTastic has joined #ruby
<mostlybadfly> What's up
<mostlybadfly> It's a bit more active in the afternoon
<mostlybadfly> But nobody just talks. Its always just questions
tkuchiki has quit [Ping timeout: 256 seconds]
AlexBlomCOM has joined #ruby
JBreit has quit [Ping timeout: 255 seconds]
iamjarvo has joined #ruby
tkuchiki_ has quit [Ping timeout: 255 seconds]
Zebroid has quit [Ping timeout: 250 seconds]
amisha has joined #ruby
benzrf|offline is now known as benzrf
<olivier_bK> ho i can get the second occurence ?
freerobby has quit [Quit: Leaving.]
arup_r has joined #ruby
seanosaur has joined #ruby
endash has joined #ruby
AlexBlomCOM has quit [Client Quit]
pskosinski has joined #ruby
ixti has joined #ruby
arup_r has quit [Remote host closed the connection]
<wasamasa> matrixdevuk: nou
Dude007 has quit []
SilkFox has quit [Ping timeout: 255 seconds]
sambao21 has joined #ruby
wald0 has joined #ruby
fgo has joined #ruby
iamjarvo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
memph1s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
lw has joined #ruby
mehlah has joined #ruby
deepy- has joined #ruby
fgo_ has joined #ruby
blasius has joined #ruby
arup_r has joined #ruby
Lingo is now known as andrewbredow
arup_r has quit [Remote host closed the connection]
fgo has quit [Ping timeout: 256 seconds]
ghr has quit []
Zenigor has joined #ruby
freezey has joined #ruby
andrewbredow has quit [Quit: Lingo - http://www.lingoirc.com]
jottr has joined #ruby
Takle has quit [Remote host closed the connection]
sandelius has joined #ruby
Lingo has joined #ruby
Lingo has quit [Client Quit]
andrewbredow has joined #ruby
ghr has joined #ruby
tkuchiki has joined #ruby
blasius has quit [Ping timeout: 250 seconds]
chth0n has joined #ruby
relix has quit [Read error: Connection reset by peer]
relix_ has joined #ruby
jerius has joined #ruby
startupality has quit [Quit: startupality]
freezey has quit [Ping timeout: 245 seconds]
treehug88 has quit [Ping timeout: 245 seconds]
ebanoid has quit [Ping timeout: 250 seconds]
arup_r has joined #ruby
deepy- has quit [Ping timeout: 240 seconds]
tylersmith has joined #ruby
marr has joined #ruby
tvw has quit []
centrx has joined #ruby
Zebroid has joined #ruby
ebanoid has joined #ruby
tvw has joined #ruby
mikecmpbll has quit [Ping timeout: 250 seconds]
Zebroid has quit [Read error: Connection reset by peer]
startupality has joined #ruby
Zebroid has joined #ruby
tylersmith has quit [Ping timeout: 245 seconds]
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
arup_r has quit [Remote host closed the connection]
mikecmpbll has joined #ruby
snath has quit [Ping timeout: 260 seconds]
andrewbredow has quit [Quit: Computer has gone to sleep.]
freerobby has joined #ruby
supergeek has joined #ruby
deepy has joined #ruby
freerobby has quit [Client Quit]
andrewbredow has joined #ruby
deepy is now known as Guest22598
blasius has joined #ruby
supergeek has quit [Client Quit]
kreisys has joined #ruby
blasius has quit [Remote host closed the connection]
Zebroid has quit [Ping timeout: 272 seconds]
whyy has quit [Ping timeout: 260 seconds]
blasius has joined #ruby
andrewbredow has quit [Client Quit]
andrewbredow has joined #ruby
relix_ has quit [Remote host closed the connection]
relix has joined #ruby
SilkFox_ has joined #ruby
ARCADIVS has joined #ruby
jshultz has joined #ruby
<j416> I've defined Kernel.log to return an instance of my logger; now I want to automatically prefix each log message with the name of the class/module that wrote the log entry
<j416> in the def for Kernel.log I'm in the scope of that class/module so it's easy to get ahold of; but I need to pass it on to the logger. Since I'm returning the logger instance itself, the only clean way to do it as I see (which is a bit ugly still) is to set a variable in the logger instance and clear it when the message has been logged
JohnFord has joined #ruby
yfeldblum has joined #ruby
<workmad3> j416: you could return a wrapped instance of the logger
<j416> I'm thinking, maybe there is a way to add a hook so that after _any_ method call, it could clear it.. hm
<workmad3> j416: e.g. LogWrapper.new(logger, class, module)
<j416> workmad3: hm, that's an idea
<workmad3> j416: and LogWrapper looks like the logger, but adds the extra formatting on
blasius has quit [Ping timeout: 250 seconds]
<j416> perhaps it's the cleanest solution
<j416> creating a class like that is about as expensive as creating a string or so anyway, right?
Guest22598 has quit [Ping timeout: 260 seconds]
<j416> s/creating a class/instantiating a class/
<workmad3> j416: the other option would be to use something like binding_of_caller in your log methods to grab that data
<centrx> Yes, instantiating a class is cheap in the context of a logger
<j416> I think I'll go that route
<centrx> unless you're logging from the inside of loops
<centrx> hotspot loops that is
<j416> I think we don't want to be logging either way inside of that kind of loop
<workmad3> centrx: even then, I'd expect the cost of writing the log to most likely dwarf the cost of creating the wrapper :)
<j416> it'd be stupid
<j416> :)
<centrx> right
<j416> thanks for the input guys
<j416> I'm off to wrap this
SilkFox_ has quit [Ping timeout: 256 seconds]
jds has joined #ruby
supermat has quit [Quit: ZNC - http://znc.in]
yfeldblum has quit [Ping timeout: 256 seconds]
dylannorthrup has quit [Read error: Connection reset by peer]
dylannorthrup has joined #ruby
deepy- has joined #ruby
anarang has quit [Quit: Leaving]
itspots has joined #ruby
itspots has joined #ruby
DaniG2k has joined #ruby
DaniG2k has quit [Client Quit]
thams has quit [Quit: thams]
Doc_X has joined #ruby
axl_ has joined #ruby
krz has quit [Quit: WeeChat 0.4.3]
<jds> My 2.1.2 Rails app is leaking like crazy, hitting around 800MB per instance after 20 minutes / 800 requests. It's a pretty big app, and I'm struggling to figure out where the leak is
<centrx> jds, symbol generation?
Ilyas has quit [Read error: Connection reset by peer]
dylannorthrup has quit [Ping timeout: 264 seconds]
kreisys has quit [Quit: Computer has gone to sleep.]
<jds> I've been using rack-mini-profiler a lot, especially with profile-gc-ruby-head, and it's not actually showing me anything like that much memory. I'm beginning to suspect leakage in C
<jds> centrx: Don't think so, no. Although I guess it might be worth my trying to monkeypath Symbol#initialize & double-check
<jds> *patch
<centrx> jds, Does speed-profiling as opposed to memory-profiling show anything?
<centrx> jds, You can get down and dirty with memory profiling with valgrind if you want
mikesplain has joined #ruby
Ankhers has joined #ruby
kevind has joined #ruby
ebanoid has quit [Ping timeout: 245 seconds]
deepy- has quit [Ping timeout: 250 seconds]
startupality has quit [Quit: startupality]
ebanoid has joined #ruby
SilkFox has joined #ruby
aganov has quit [Quit: Leaving]
lmickh has joined #ruby
<j416> guys
voodoofish1 has quit [Quit: Leaving.]
<j416> it's elegant and it works very well.
<j416> workmad3++ centrx++
voodoofish has joined #ruby
<workmad3> j416: cool :)
oo_ has quit [Remote host closed the connection]
<workmad3> j416: same principle as a lot of log formatters btw... fairly simple decorator concept :)
<Karunamon> silly question: what would be the most idiomatic way to represent disk partitions in Ruby code? Right now I'm using a hash, each disk is a symbol keyed to a struct containing the partition details. Looks fine in code, but is a bit hard to understand when dumped out to YAML
philcrissman has quit [Remote host closed the connection]
<centrx> Karunamon, How so?
<Hanmac> charliesome: hey, Mon_Ouie did an rewrite/revite of your bot, but there are some options for the evalin mainpage that needto be fixed ... like currently requiring of "bigdecimal" or similar does not work because its C-compiled stdlib stuff
sandelius has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<Karunamon> This is the YAML: https://gist.github.com/Karunamon/3204c119e2abe88f060c, this is the hash it was constructed from: https://gist.github.com/Karunamon/49202b91ee27ad979bfb
<Karunamon> @centrx
startupality has joined #ruby
<charliesome> Hanmac: oof I see
<charliesome> I'll take a look tonight
<centrx> Karunamon, If you mean all the - !ruby/struct, just convert to a hash before or as part of the process of dumping the YAML
<charliesome> i think this has been a long standing issue
mary5030 has joined #ruby
<centrx> Karunamon, Convert the symbols to strings
hobodave has joined #ruby
startupality has quit [Client Quit]
phantomtiger has quit [Quit: phantomtiger]
iamjarvo has joined #ruby
rp__ has joined #ruby
pskosinski has quit [Quit: Til rivido Idisti! | http://www.ido.li]
sailias has joined #ruby
tesuji has quit [Ping timeout: 240 seconds]
startupality has joined #ruby
Macaveli has quit [Quit: Textual IRC Client: www.textualapp.com]
freerobby has joined #ruby
zorak has quit [Ping timeout: 250 seconds]
startupality has quit [Client Quit]
freezey has joined #ruby
jamto11 has joined #ruby
startupality has joined #ruby
freerobby1 has joined #ruby
freerobby has quit [Read error: Connection reset by peer]
moritzs has joined #ruby
AskSteve has joined #ruby
startupality has quit [Client Quit]
freezey has quit [Ping timeout: 260 seconds]
Ankhers has quit [Remote host closed the connection]
fifthofwry has joined #ruby
startupality has joined #ruby
kreisys has joined #ruby
speakingcode has joined #ruby
Ankhers has joined #ruby
startupality has quit [Client Quit]
thams has joined #ruby
tagrudev has quit [Quit: Me = Awesome]
toastynerd has joined #ruby
AskSteve has left #ruby [#ruby]
mary5030_ has joined #ruby
cocotton has joined #ruby
kmels has joined #ruby
JohnFord has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<cocotton> Hey all. Is there a way to show return carriages(\n) when outputting a string? (puts mystring)
tylersmith has joined #ruby
<Mon_Ouie> You can use p to show a string like IRB/Pry do
<Mon_Ouie> >> p "foo\n\r\t"
<Mon_Robot> Mon_Ouie: => "foo\n\r\t"... (https://eval.in:443/171443)
<cocotton> @Mon_Ouie Thx!
mary5030_ has quit [Remote host closed the connection]
mary5030 has quit [Ping timeout: 255 seconds]
mary5030 has joined #ruby
mikesplain has quit [Ping timeout: 272 seconds]
Guest28075 has joined #ruby
banister has joined #ruby
banister has quit [Max SendQ exceeded]
mikesplain has joined #ruby
banister has joined #ruby
ffranz has joined #ruby
banister has quit [Max SendQ exceeded]
Zebroid has joined #ruby
tylersmith has quit [Ping timeout: 255 seconds]
banister has joined #ruby
<cocotton> I'm trying to match a condition where a string contains "My string" or a single "\n". Is the best way to do it <if string == "\n" or string.include? "My string"> or would there be a better way to do that? (really new to ruby sorry)
sandelius has joined #ruby
aaronmcadam has joined #ruby
<centrx> cocotton, That's fine and t says what you mean
<centrx> cocotton, Alternative would probably be regex
<cocotton> @centrx Ok nice, thx :)
mikesplain has quit [Read error: Connection reset by peer]
mikespla_ has joined #ruby
yfeldblum has joined #ruby
Gooder` has joined #ruby
startupality has joined #ruby
hectorrr has joined #ruby
ebanoid has quit [Ping timeout: 255 seconds]
supermat has joined #ruby
wald0 has quit [Quit: Lost terminal]
ebanoid has joined #ruby
Zebroid has quit [Ping timeout: 240 seconds]
doev has quit [Ping timeout: 240 seconds]
speakingcode has quit [Remote host closed the connection]
<apeiros> cocotton: btw., \n is linefeed, not carriage return. \r is carriage return.
moritzs has quit [Ping timeout: 240 seconds]
hectorrr has quit [Read error: Connection reset by peer]
lxsameer has quit [Quit: Leaving]
<cocotton> Oh that makes sense, my bad
doev has joined #ruby
hectorrr has joined #ruby
<centrx> You'll never make Head Typewriter with a mistake like that
speakingcode has joined #ruby
banister_ has joined #ruby
banister_ has quit [Max SendQ exceeded]
yfeldblum has quit [Ping timeout: 240 seconds]
SilkFox_ has joined #ruby
banister_ has joined #ruby
banister_ has quit [Max SendQ exceeded]
toastynerd has quit [Remote host closed the connection]
<cocotton> Damn :( Typewriters are the future! Some governments around the world are switching to it for security measures!
banister_ has joined #ruby
banister has quit [Ping timeout: 256 seconds]
blurredbits has joined #ruby
<apeiros> bonus points if you know \v :)
noop has quit [Ping timeout: 255 seconds]
mikesplain has joined #ruby
mikespla_ has quit [Ping timeout: 240 seconds]
Guest28075 has quit [Ping timeout: 250 seconds]
Guest89068 has joined #ruby
yazgoo has quit [Ping timeout: 245 seconds]
centrx has quit [Quit: Mead error: Connection reset by beer]
SilkFox_ has quit [Ping timeout: 272 seconds]
CaptainJet has joined #ruby
yazgoo has joined #ruby
phantomtiger has joined #ruby
mrgrieves has quit [Quit: leaving]
phantomtiger has quit [Client Quit]
sinkensabe has quit [Remote host closed the connection]
sambao21 has quit [Quit: Computer has gone to sleep.]
mary5030 has quit [Read error: Connection reset by peer]
mary5030 has joined #ruby
treehug88 has joined #ruby
Neomex has joined #ruby
GlenK has joined #ruby
mary5030 has quit [Remote host closed the connection]
momomomomo has joined #ruby
mr-foobar has joined #ruby
mary5030 has joined #ruby
snath has joined #ruby
thams has quit [Quit: thams]
rylev has quit [Remote host closed the connection]
Dreamer3 has joined #ruby
rylev has joined #ruby
jackneill has quit [Read error: Connection reset by peer]
Poky has quit [Remote host closed the connection]
sambao21 has joined #ruby
rylev_ has joined #ruby
rylev has quit [Ping timeout: 240 seconds]
bal has quit [Quit: bal]
razum2um1 has quit [Quit: Leaving.]
kkh has quit [Read error: Connection reset by peer]
amargherio has joined #ruby
asmodlol has joined #ruby
drager has quit [Ping timeout: 256 seconds]
kkh has joined #ruby
apeiros has quit [Remote host closed the connection]
Guest89068 has quit [Read error: Connection timed out]
apeiros has joined #ruby
deepy- has joined #ruby
blasius has joined #ruby
banisterfiend has joined #ruby
jlovick has joined #ruby
dbasch has joined #ruby
banister_ has quit [Ping timeout: 260 seconds]
terrellt has joined #ruby
blasius has quit [Client Quit]
apeiros has quit [Ping timeout: 264 seconds]
yazgoo has quit [Ping timeout: 240 seconds]
lbwski has joined #ruby
VTLob has joined #ruby
sk87 has quit [Quit: My Mac Mini has gone to sleep. ZZZzzz…]
jobewan has joined #ruby
TomyWork has quit [Ping timeout: 250 seconds]
deepy- has quit [Excess Flood]
startupality has quit [Quit: startupality]
freezey has joined #ruby
codabrink has quit [Quit: Textual IRC Client: www.textualapp.com]
startupality has joined #ruby
banister has joined #ruby
codabrink has joined #ruby
renderful has joined #ruby
freezey_ has joined #ruby
freezey has quit [Read error: Connection reset by peer]
sandelius has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
linguini has joined #ruby
wald0 has joined #ruby
Skwallinux has joined #ruby
benzrf is now known as benzrf|offline
memph1s has joined #ruby
mehlah has quit [Quit: Leaving...]
<lagweezle> Make certain you destroy the ink-tape, though!
bMalum_ has quit [Ping timeout: 240 seconds]
startupality has quit [Quit: startupality]
<mary5030> good morning :)
startupality has joined #ruby
chrishough has joined #ruby
IceDragon has joined #ruby
<mary5030> Question: JSON.parse(e.http_body) returns this: {"status":"500","error":"Internal Server Error"}, now how can I in a next line only get "Internal Server Error" ?
<mary5030> excuse if this is a trivial question for you :)
<workmad3> mary5030: response = JSON.parse(e.http_body); puts response["error"]
k0m has joined #ruby
jamto11 has quit [Remote host closed the connection]
<mary5030> ah sweet thanks
<mary5030> i will try that :)
george_mcfly has joined #ruby
<george_mcfly> what does 'update_sources' do in a gemrc file ?
<linguini> I want to spawn some processes whose output and exit status I do not care about. What's the best way to do this in ruby?
asdas has joined #ruby
krz has joined #ruby
fabrice31 has quit [Remote host closed the connection]
<linguini> Kernel.fork || Kernel.fork || exec ?
mehlah has joined #ruby
v0n has quit [Ping timeout: 256 seconds]
mehlah has quit [Client Quit]
tylersmith has joined #ruby
jcromartie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
timonv_ has quit [Remote host closed the connection]
andrewbredow has quit [Quit: Computer has gone to sleep.]
andrewbredow has joined #ruby
wald0 has quit [Quit: Lost terminal]
sambao21 has quit [Quit: Computer has gone to sleep.]
timonv_ has joined #ruby
<asdas> can a dev help me ?
<asdas> I can pay them
<asdas> pm
carraroj has joined #ruby
jaequery has joined #ruby
Zebroid has joined #ruby
tylersmith has quit [Ping timeout: 255 seconds]
jaequery has quit [Client Quit]
cocotton has quit [Remote host closed the connection]
felixjet_ has quit [Read error: Connection reset by peer]
andrewbredow has quit [Ping timeout: 240 seconds]
cocotton has joined #ruby
IceDragon has quit [Ping timeout: 260 seconds]
cocotton has quit [Remote host closed the connection]
cocotton has joined #ruby
timonv_ has quit [Ping timeout: 240 seconds]
fifthofwry has quit [Ping timeout: 264 seconds]
Zebroid has quit [Ping timeout: 245 seconds]
senayar has quit [Remote host closed the connection]
carraroj has quit [Quit: Konversation terminated!]
s2013 has joined #ruby
george_mcfly has quit [Ping timeout: 245 seconds]
shlant1 has joined #ruby
shlant1 has left #ruby [#ruby]
<lagweezle> O.o
senayar has joined #ruby
<lagweezle> What is it you actually need?
SilkFox_ has joined #ruby
BBBThunda has joined #ruby
IceDragon has joined #ruby
<linguini> To answer my own question: Process.detach(Process.spawn(command))
terrellt has quit [Remote host closed the connection]
bluenemo has quit [Remote host closed the connection]
bMalum__ has joined #ruby
terrellt has joined #ruby
j_mcnally_ has joined #ruby
lukeholder has joined #ruby
centrx has joined #ruby
SilkFox_ has quit [Ping timeout: 240 seconds]
george_mcfly has joined #ruby
asdas has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
polysics has joined #ruby
<polysics> hello
<polysics> tricky question
<polysics> I am building an exception reporter via emai;
<polysics> and yes, I know about Airbrake :D
<polysics> but I am writing specs, and just doing StandardError.new does not give my exception a backtrace
cocotton has quit [Read error: Connection reset by peer]
<polysics> ie. it is not ALIIIIVE!
cocotton_ has joined #ruby
<polysics> do I just mock #backtrace?
fgo_ has quit []
Mon_Ouie has quit [Ping timeout: 245 seconds]
cocotton_ has quit [Remote host closed the connection]
saarinen has joined #ruby
bMalum__ has quit [Quit: Computer has gone to sleep.]
<canton7> of course it doesn't have a backtrace - it hasn't gone up the stack yet
Skwallinux has quit [Ping timeout: 245 seconds]
bMalum__ has joined #ruby
<canton7> the stack trace is "here's what happened between the exception being thrown and it being caught"
amisha has quit [Read error: Connection reset by peer]
<polysics> I just found out #set_backtrace exists
<canton7> ah, reading again, you probably figured that :p
jcromartie has joined #ruby
<canton7> yeah, mock or set it
<polysics> it will do, I essentially only need to test the message is formatted correctly
<canton7> yeah, I realise that now - too trigger-happy :)
<polysics> :D
yazgoo_ has joined #ruby
<polysics> thanks anyway
amisha has joined #ruby
ebanoid has quit [Ping timeout: 240 seconds]
cocotton has joined #ruby
cocotton has quit [Remote host closed the connection]
jmbrown412 has joined #ruby
jokke has quit [Remote host closed the connection]
amisha has quit [Client Quit]
doev has quit [Ping timeout: 240 seconds]
alem0lars has quit [Quit: Going AFK...]
cocotton has joined #ruby
darkxploit has joined #ruby
doev has joined #ruby
beauby has quit [Ping timeout: 255 seconds]
jay__ has joined #ruby
bMalum__ has quit [Ping timeout: 245 seconds]
ebanoid has joined #ruby
jay__ is now known as rubyonrailed
mikepack has joined #ruby
<rubyonrailed> I have the postmark gem installed, why am I getting this error? https://gist.github.com/anonymous/bf7e0d06d744efde11f1
macclearich has joined #ruby
mikepack has quit [Remote host closed the connection]
mikepack has joined #ruby
<workmad3> rubyonrailed: did you require it?
<hectorrr> don't you need a require?
Ilyas has joined #ruby
Ilyas has quit [Max SendQ exceeded]
<workmad3> rubyonrailed: and, if you're in rails, did you put it in your Gemfil?
<workmad3> *Gemfile
sambao21 has joined #ruby
polysics has left #ruby [#ruby]
klaut has quit [Remote host closed the connection]
<rubyonrailed> in rails it's in my gemfile, In console I required it
Ilyas has joined #ruby
<eam> >> [true, not(true), not()]
<Mon_Robot> eam: => [true, false, true] (https://eval.in:443/171455)
dANOKELOFF has quit [Remote host closed the connection]
<eam> >> [not true]
<Mon_Robot> eam: => SyntaxError: (eval):1: syntax error, unexpected keyword_true, expecting '('... (https://eval.in:443/171457)
apeiros has joined #ruby
<mary5030> workmad3: sorry to bug you again, but what if in one case i get {"status":"500","error":"Internal Server Error"} and other case i get {"status":"500", "description":"failed some check"}
dANOKELOFF has joined #ruby
<mary5030> then i couldn't do response["error"]
<workmad3> mary5030: indeed
s2013 has quit [Ping timeout: 250 seconds]
<mary5030> how would i would i go about making a case statement here?
<mary5030> i can't check status code since they are both 500
<mary5030> any other way?
<workmad3> mary5030: well, you could just do 'response["error"] || response["description"]'
<TTilus> response["error"] || response["error"]
<TTilus> d'oh
<hectorrr> rubyonrailed: did it worked on the console?
<workmad3> mary5030: or you could shout at the designer of that API for being inconsistent ;)
<rubyonrailed> hectorrr: nope
<mary5030> yes for sure inconsistent
<workmad3> mary5030: note that the second option will still probably end up with the first option being used anyway... but you get the satisfaction of shouting :)
<canton7> what did the require return? did it thrown an exception?
andrewbredow has joined #ruby
bricker`work has joined #ruby
amargherio has quit [Remote host closed the connection]
amargherio has joined #ruby
<mary5030> hehe thanks workmad3 :)
george_mcfly has quit [Ping timeout: 245 seconds]
timonv_ has joined #ruby
ramfjord has joined #ruby
zz_jrhorn424 is now known as jrhorn424
sambao21 has quit [Ping timeout: 272 seconds]
jcromartie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
dANOKELOFF has quit [Ping timeout: 250 seconds]
<rubyonrailed> It's really driving me crazy!
<canton7> rubyonrailed, that's odd. normally require returns true/false
<rubyonrailed> yeah, idk if it has something to do with using ruby 1.8.7
tylersmith has joined #ruby
startupality has quit [Quit: startupality]
<rubyonrailed> but I was using the console yeseterday and require resolv and it worked fine. It gave the same empty brackets
sambao21 has joined #ruby
deepy has joined #ruby
<TTilus> rails?
arya_ has joined #ruby
<hectorrr> can you try in a newer version of ruby?
sputnik13 has joined #ruby
<hectorrr> 1.9.3?
deepy is now known as Guest12899
<TTilus> iirc require returns array there
<TTilus> (and i could have that one totally wrong)
mehlah has joined #ruby
<jds> centrx: you mentioned symbols wrt my memory leak earlier
<rubyonrailed> hectorr: yeah i'll try outside of 1.8
<jds> Which I initially dismissed because _obviously_ I'm not dumb enough to go around calling user_input.to_sym all over the place
<workmad3> jds: hehe
IcyDragon has joined #ruby
<workmad3> jds: I'm guessing a dumb, younger version of you did just that? :)
<jds> But thanks for the suggestion, because it turned out we had user_hash.deep_symbolize_keys buried deep somewhere
icarus_ has joined #ruby
<jds> workmad3: Yeah, way back in 2009
jaequery has joined #ruby
<jds> It's gone unnoticed for a long time, but seems like our upgrade to ruby 2.1 made the problem way more obvious
jaequery has quit [Max SendQ exceeded]
<rubyonrailed> hectorr: I tried in 2.1 and it returns true
<mary5030> workmad3: response.first && response.first["description"] || response["error"] , the first one works but i get " can't convert String into Integer" when the second case happens
jaequery has joined #ruby
<mary5030> first response = [{\"title\":\"device\",\"description\":\"A device is required\"}]
seph429 has joined #ruby
IceDragon has quit [Ping timeout: 260 seconds]
adasd has joined #ruby
<adasd> hey guys
<adasd> can someone help me ?
<mary5030> second response = [{\"status\":\"500\",\"error\":\"A device is required\"}]
codeurge has joined #ruby
<workmad3> mary5030: ok... so take a look at how you're accessing the description and how you're accessing the error
Rainicorn has joined #ruby
<workmad3> mary5030: and form a hypothesis about how you might need to change things ;)
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
fifthofwry has joined #ruby
<apeiros> adasd: no idea. can we?
<mary5030> so response.first checks if it is a hash but i can't use that for my second case
<workmad3> mary5030: no, response.first doesn't check if it's a hash
<adasd> I need a good dev to code something for me
<apeiros> adasd: hire somebody?
rippa has joined #ruby
<adasd> yea
IcyDragon is now known as IceDragon
<workmad3> mary5030: care to take another guess as to what response.first is doing? :)
LadyRainicorn has quit [Ping timeout: 245 seconds]
arup_r has joined #ruby
<adasd> none ?
Vivekananda_y510 has quit [Ping timeout: 255 seconds]
<mary5030> it is returning true or false
<workmad3> mary5030: no
<workmad3> mary5030: it's getting the first item of an array
s2013 has joined #ruby
Zenigor has quit [Remote host closed the connection]
<mary5030> right sorry meant the &&
<apeiros> adasd: would you act upon a random dude on irc saying "I have something I want coded!" - and nothing more. would you?
<mary5030> so if the first item doesn't exist
<mary5030> it returns false
<workmad3> mary5030: yeah
<adasd> can someone help me ? Or Im I wasting my time ?
<mary5030> so my first one is an array of hash but i don't think my second one is
<workmad3> mary5030: look at it again ;)
<workmad3> mary5030: see those '[]' wrapping the json response?
maletor has joined #ruby
<mary5030> so that was my mistake
Zenigor has joined #ruby
<centrx> adasd, You need to present yourself in a different manner to get someone to code on your project, including explaining what it is.
<mary5030> this is the actual error
<adasd> Im paying them
<mary5030> [{"title":"Generators::UnprocessableTemplateError","description":"No template could be found"}] for first and {"status":"500","error":"Internal Server Error"} for the second
<centrx> adasd, That said, I'm not sure how many of these occasions where someone comes in looking for a developer are successful, for either side.
<mary5030> not array for the second :(
<adasd> waste of time
adasd has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
wallerdev has joined #ruby
<apeiros> I somehow have the feeling that he'd be the kind of guy nobody would want to work for
<mary5030> apeiros: right on
rebelshrug has joined #ruby
jcromartie has joined #ruby
ndrei has quit [Ping timeout: 245 seconds]
<mary5030> so workmad3 my bad one is array of hash it appears one is only a hash, not sure a case statement will work then?
deric_skibotn has joined #ruby
dbasch has quit [Read error: Connection reset by peer]
<workmad3> mary5030: well, the error you got indicated that the second one is also an array
<mary5030> [{"title":"Generators::UnprocessableTemplateError","description":"No template could be found"}] for first and {"status":"500","error":"Internal Server Error"} for the second
dbasch has joined #ruby
pandaant has quit [Quit: Lost terminal]
<mary5030> the second one was not wrapped in [] i looked at the logs
Joulse has quit [Quit: Joulse]
<mary5030> it was my mistake assuming the first time around i think
b00stfr3ak has joined #ruby
<rubyonrailed> hectorrr: So the api works fine in 2.1, I guess its a version issue. I'm going to talk with postmark support
jaimef has quit [Excess Flood]
nfk has quit [Ping timeout: 256 seconds]
jmbrown412 has quit [Remote host closed the connection]
<hectorrr> rubyonrailed: it most likely it won't be supported on 1.8.7, can you upgrade the version of ruby?
jmbrown412 has joined #ruby
dangerousdave has quit [Read error: Connection reset by peer]
dangerousdave has joined #ruby
<rubyonrailed> I know that it used to be supported, the gem goes back to 1.8.7. And unfortunately not at this time :/
St_Marx has quit [Ping timeout: 264 seconds]
jaimef has joined #ruby
Tricon has joined #ruby
<hectorrr> =\
St_Marx has joined #ruby
thams has joined #ruby
mattstratton has joined #ruby
xmad has joined #ruby
ramfjord has quit [Ping timeout: 245 seconds]
jmbrown412 has quit [Ping timeout: 240 seconds]
troyready has joined #ruby
dbasch has quit [Quit: dbasch]
Sleepee has joined #ruby
ndrei has joined #ruby
hydrozen has joined #ruby
acrussell has joined #ruby
<Sou|cutter> a lot of this -used- to be supported
<Sou|cutter> s/this/things
chamblin has joined #ruby
flak has joined #ruby
mikecmpbll has quit [Ping timeout: 256 seconds]
saarinen has quit [Quit: saarinen]
jdj_dk has joined #ruby
rippa has quit [Ping timeout: 250 seconds]
hydrozen has quit [Quit: Computer has gone to sleep.]
<iamjarvo> is there a difference with these two http://pastie.org/private/g7zznza7qxmsmxjumehb4g
Martxel has joined #ruby
MartinCleaver has joined #ruby
<centrx> iamjarvo, I found the second one makes it harder to refer to other objects within the class's module hierarchy
wjimenez5271 has joined #ruby
<centrx> iamjarvo, You have to use the full reference
jimms has joined #ruby
<centrx> iamjarvo, Fundamentally it's the same for the class being opened up
zkay11 has joined #ruby
<centrx> iamjarvo, e.g. it's the standard way of monkeypatching libraries
thams has quit [Quit: thams]
<workmad3> iamjarvo: you can see programmatically what centrx is saying by looking at the difference between 'Module.nesting' in the two contexts
thams has joined #ruby
<MartinCleaver> is there a status code that says whether a string.replace() did a replacement?
macclearich has quit [Quit: Lingo - http://www.lingoirc.com]
dumdedum has quit [Quit: foo]
momomomomo_ has joined #ruby
<centrx> MartinCleaver, String#replace always does a replacement.
momomomomo has quit [Ping timeout: 240 seconds]
momomomomo_ is now known as momomomomo
<workmad3> MartinCleaver: 'string.replace() == string'
<MartinCleaver> y, sure I could test to see if a change happened
<iamjarvo> centrx workmad3 thanks
binaryhat has quit [Quit: Leaving]
Zebroid has joined #ruby
flak has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
rippa has joined #ruby
wallerdev has quit [Quit: wallerdev]
_tpavel has quit [Quit: Leaving]
banisterfiend has quit [Quit: Computer has gone to sleep.]
sigurding has quit [Quit: sigurding]
xmad has quit [Changing host]
xmad has joined #ruby
thams has quit [Client Quit]
olivier_bK has quit [Ping timeout: 264 seconds]
ebanoid has quit [Ping timeout: 260 seconds]
namxam has quit [Remote host closed the connection]
razorgfx has quit [Quit: Textual IRC Client: www.textualapp.com]
dangerousdave has quit [Read error: Connection reset by peer]
hydrozen has joined #ruby
dangerousdave has joined #ruby
hydrozen has quit [Client Quit]
aaronmcadam has quit [Ping timeout: 245 seconds]
nfk has joined #ruby
britneywright has quit [Remote host closed the connection]
Zebroid has quit [Ping timeout: 250 seconds]
thams has joined #ruby
jamto11 has joined #ruby
Rahul_Roy has joined #ruby
darkxploit has quit [Read error: Connection reset by peer]
britneywright has joined #ruby
binaryhat has joined #ruby
asmodlol has quit [Read error: Connection reset by peer]
CorpusCallosum has joined #ruby
Akagi201 has quit [Remote host closed the connection]
ebanoid has joined #ruby
SilkFox_ has joined #ruby
dbasch has joined #ruby
timonv_ has quit [Remote host closed the connection]
thams has quit [Client Quit]
brandonshowers has joined #ruby
elaptics is now known as elaptics`away
Elhu has quit [Quit: Computer has gone to sleep.]
thams has joined #ruby
SegFaultAX has quit [Excess Flood]
Guest1881 is now known as roodee
SilkFox_ has quit [Ping timeout: 255 seconds]
roodee has left #ruby [#ruby]
cocotton has quit [Remote host closed the connection]
yeticry has quit [Ping timeout: 250 seconds]
cocotton has joined #ruby
cocotton has quit [Remote host closed the connection]
mikecmpbll has joined #ruby
cocotton has joined #ruby
banisterfiend has joined #ruby
ghr has quit [Ping timeout: 260 seconds]
djbkd has joined #ruby
namxam has joined #ruby
cornfeedhobo has joined #ruby
sinkensabe has joined #ruby
gbaway has joined #ruby
gbaway has quit [Max SendQ exceeded]
workmad3 has quit [Ping timeout: 245 seconds]
wallerdev has joined #ruby
edgarjs_afk is now known as edgarjs
rylev_ has quit [Remote host closed the connection]
asmodlol has joined #ruby
Bira has quit []
gbaway has joined #ruby
rylev has joined #ruby
ebanoid has quit [Ping timeout: 272 seconds]
memph1s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Spami has joined #ruby
renderful has quit [Remote host closed the connection]
toastynerd has joined #ruby
k0m has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
ebanoid has joined #ruby
moritzs has joined #ruby
Fire-Dragon-DoL has joined #ruby
SegFaultAX has joined #ruby
rylev has quit [Ping timeout: 240 seconds]
ygdakk has quit [Ping timeout: 245 seconds]
CorpusCallosum has quit [Ping timeout: 250 seconds]
beef-wellington has joined #ruby
jamto11 has quit [Remote host closed the connection]
sambao21 has quit [Quit: Computer has gone to sleep.]
jmbrown412 has joined #ruby
thnee has quit [Ping timeout: 255 seconds]
sinkensabe has quit [Remote host closed the connection]
toastynerd has quit [Ping timeout: 260 seconds]
bMalum__ has joined #ruby
yeticry has joined #ruby
NCS_One has joined #ruby
<NCS_One> hi
thnee has joined #ruby
SilkFox has quit [Ping timeout: 255 seconds]
noop has joined #ruby
<NCS_One> how do I itenerate through the rows and through the cols of the current row of an hash?
<cornfeedhobo> do i need to require something to use enumerators? i am getting an error saying sort_by! is not a valid method
thams has quit [Quit: thams]
ramfjord has joined #ruby
Takle has joined #ruby
sambao21 has joined #ruby
atmosx has quit [Remote host closed the connection]
<craigbowen3> cornfeedhobo, could you show the code on pastebin?
<NCS_One> cornfeedhobo: maybe the object doesn't support sort_by?
sambao21 has quit [Client Quit]
thams has joined #ruby
atmosx has joined #ruby
<NCS_One> try: puts obj.methods
<craigbowen3> NCS_One, cornfeedhobo or the object is not enumerable
<cornfeedhobo> NCS_One: " for #<Array:0x7f8a96c97570>"
cocotton has quit [Remote host closed the connection]
moritzs has quit [Ping timeout: 255 seconds]
sambao21 has joined #ruby
mehlah has quit [Quit: Leaving...]
duke_togo13 has joined #ruby
cocotton has joined #ruby
cocotton has quit [Remote host closed the connection]
<Hanmac> cornfeedhobo: sort_by is defined in Enumerable, sort_by! is only defined in Array
<cornfeedhobo> version 1.8.7
<cornfeedhobo> hmmm
cocotton has joined #ruby
<Hanmac> and you NEED to upgrade your ruby version
<craigbowen3> heh
<cornfeedhobo> Hanmac: didnt know that. thanks. but this is still iterating over an array
<cornfeedhobo> Hanmac: i know. dont get me started about centos. i dont make those types of choices here
<Hanmac> "centos - still running on stone circles"
<cornfeedhobo> mmmhm
craigbowen3 has quit [Quit: Ухожу я от вас (xchat 2.4.5 или старше)]
bayed has quit [Quit: Connection closed for inactivity]
craigbowen3 has joined #ruby
jmbrown412 has quit [Remote host closed the connection]
CorpusCallosum has joined #ruby
jmbrown412 has joined #ruby
mocfive has quit [Remote host closed the connection]
beef-wellington has quit [Ping timeout: 255 seconds]
mocfive has joined #ruby
wald0 has joined #ruby
<apeiros> NCS_One: a hash doesn't have cols/rows. you can iterate the key/value pairs using .each. You can iterate the keys only using each_key. and values only using each_value.
banjara has joined #ruby
george_mcfly has joined #ruby
<NCS_One> apeiros: soo I should use an array
jottr has quit [Ping timeout: 260 seconds]
<NCS_One> apeiros: thanks
<apeiros> NCS_One: I have no idea what you should use
<apeiros> you haven't told anything which would allow to make any recommendation
banisterfiend has quit [Quit: Computer has gone to sleep.]
<apeiros> and arrays don't have cols/rows either
kaspergrubbe has quit [Ping timeout: 240 seconds]
dawkirst has quit [Remote host closed the connection]
Gooder` has quit [Ping timeout: 250 seconds]
lsmola has joined #ruby
<NCS_One> apeiros: arr[rows][cols]
<apeiros> you can represent them using arrays of arrays. but same applies for hashes.
<NCS_One> ohh
ghr has joined #ruby
claymore has quit [Ping timeout: 256 seconds]
Takle has quit [Remote host closed the connection]
fabrice31 has joined #ruby
jmbrown412 has quit [Ping timeout: 256 seconds]
doev has quit [Ping timeout: 250 seconds]
jackneill has joined #ruby
<mostlybadfly> What ate you trying to do exactly
geggam has joined #ruby
mocfive has quit [Ping timeout: 250 seconds]
<mostlybadfly> If you want just values you can do myhash.values and iterate through that
jrhe has joined #ruby
<apeiros> mostlybadfly: .each_value is better if you want to iterate them
end_guy has quit [Ping timeout: 264 seconds]
lukeholder has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<mostlybadfly> Or else do myhash.each { |k ,v| yourcodehere }
<mostlybadfly> Hard to tell without know exactly what is needed
<mostlybadfly> Oh right apeiros duh
claymore has joined #ruby
fschuindt has joined #ruby
nanoyak has joined #ruby
maestrojed has joined #ruby
ghr has quit [Ping timeout: 255 seconds]
larsam has joined #ruby
<eam> values.each has a huge advantage in that you won't blow up if you modify the hash
thnee has quit [Ping timeout: 255 seconds]
k0m has joined #ruby
pietr0 has joined #ruby
qhartman has joined #ruby
thnee has joined #ruby
sambao21 has quit [Quit: Computer has gone to sleep.]
<NCS_One> mostlybadfly: I need to itenerate only through the rows
<NCS_One> not the cols
ebanoid has quit [Quit:
chrishough has quit [Quit: chrishough]
melik has joined #ruby
s2013 has quit [Ping timeout: 245 seconds]
ARCADIVS has quit [Quit: WeeChat 0.4.3]
<NCS_One> has apeiros said I need an array of arrays or an hash of hashes
thams has quit [Quit: thams]
<apeiros> I said no such thing
<NCS_One> right
<apeiros> I said those are ways to represent rows/cols. I said nothing about you needing to use them.
<NCS_One> right
jimms has quit [Ping timeout: 245 seconds]
britneywright has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
rebelshrug has quit [Quit: Textual IRC Client: www.textualapp.com]
<mostlybadfly> NCS_One: there are no rows through
<mostlybadfly> Please give us a sample hash with what you think are the rows
<mostlybadfly> Label it
jimms has joined #ruby
renderful has joined #ruby
s2013 has joined #ruby
andrewlio has quit [Ping timeout: 260 seconds]
hamed_r has quit [Quit: Ex-Chat]
thams has joined #ruby
<banister> eam how can you modify the hash with each_value ?
deric_skibotn has quit [Ping timeout: 240 seconds]
<banister> i mean you'd be cahnging the value, not the key, so the hash won't care, right?
phutchins has quit [Ping timeout: 264 seconds]
wombo has joined #ruby
Zebroid has joined #ruby
Elhu has joined #ruby
dawkirst has joined #ruby
rdark has quit [Quit: leaving]
bronson has joined #ruby
Takle has joined #ruby
maestrojed has quit [Quit: Computer has gone to sleep.]
postmodern has joined #ruby
larsam has quit [Read error: Connection reset by peer]
deric_skibotn has joined #ruby
<rubyonrailed> this is noob, but i'm using ruby 1.8 and trying to require an older version of a gem. https://gist.github.com/anonymous/38265d857d13c144762b I want whois to be version 1.5
g0bl1n has joined #ruby
troyready has quit [Ping timeout: 240 seconds]
Shidash has joined #ruby
mattmcclure has joined #ruby
kaspergrubbe has joined #ruby
yfeldblum has joined #ruby
freezey_ has quit [Remote host closed the connection]
jespada_ has joined #ruby
<ruisantos> exit
<ruisantos> oops
jespada has quit [Ping timeout: 255 seconds]
axl_ has quit [Ping timeout: 264 seconds]
end_guy has joined #ruby
maestrojed has joined #ruby
axl_ has joined #ruby
Akagi201 has joined #ruby
Takle has quit [Read error: Connection reset by peer]
SilkFox_ has joined #ruby
rylev has joined #ruby
amargherio has quit [Read error: Connection reset by peer]
mocfive has joined #ruby
<lagweezle> ^^
andrewlio has joined #ruby
lw has quit [Quit: s]
jottr has joined #ruby
jdj_dk has quit [Remote host closed the connection]
Brando753 has quit [Read error: Connection reset by peer]
arya_ has quit [Ping timeout: 272 seconds]
baweaver has joined #ruby
timonv_ has joined #ruby
jdj_dk has joined #ruby
Brando753 has joined #ruby
lw has joined #ruby
<chamblin> rubyonrailed: If you want to maintain two versions of the whois gem at the same time, you should check out bundler. Otherwise, you should just e.g. gem install whois -v 1.5
SilkFox_ has quit [Ping timeout: 260 seconds]
Akagi201 has quit [Ping timeout: 245 seconds]
NinoScript has quit [Ping timeout: 272 seconds]
troyready has joined #ruby
duke_togo13 has quit [Read error: Connection reset by peer]
momomomomo has quit [Ping timeout: 255 seconds]
momomomomo has joined #ruby
craigbowen3 has quit [Ping timeout: 256 seconds]
<dbasch> switching from clojure to ruby, tried a couple euler exercises. How idiomatic is this? https://gist.github.com/dbasch/46e9e0e7b55b26b47d2f
DrShoggoth has joined #ruby
lw has quit [Quit: s]
beseku has quit [Quit: Computer has gone to sleep.]
beef-wellington has joined #ruby
lw has joined #ruby
lw has quit [Client Quit]
beseku has joined #ruby
lw has joined #ruby
DrShoggoth has quit [Client Quit]
DrShoggoth has joined #ruby
jheg_ has joined #ruby
lw has quit [Client Quit]
lw has joined #ruby
jheg_ has quit [Client Quit]
chrishough has joined #ruby
chamblin has quit [Ping timeout: 255 seconds]
lw has quit [Client Quit]
yetanotherdave has joined #ruby
beseku has quit [Ping timeout: 256 seconds]
saarinen has joined #ruby
Akuma has quit [Quit: So long sukkas!]
lw has joined #ruby
Akuma has joined #ruby
mikecmpbll has quit [Quit: i've nodded off.]
charliesome has quit [Quit: Textual IRC Client: www.textualapp.com]
russ_ has joined #ruby
g0bl1n has quit [Quit: g0bl1n]
<baweaver> dbasch - give me a sec, I'll shoot a comment on it.
mikecmpbll has joined #ruby
mattstratton has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
lw has quit [Client Quit]
thams has quit [Quit: thams]
Thermatix has joined #ruby
lw has joined #ruby
<Thermatix> hello
freezey has joined #ruby
<Maitiu> FREE PALESTINE
<russ_> Hey all - I'm looking for a way of visualizing a queue; which order jobs were taken, how long each took, etc. I'm looking to visualize to see patterns and work out what to optimize. Any suggestions welcome! :)
ndrei has quit [Ping timeout: 272 seconds]
<Thermatix> I have a very simple rails question, I'm building an engine but I need some code to run AFTER the main app has finished initializing, I just want to know if this >> `self.config.after_initialize do` will work for a block that will run after the main app has initialized.
freezey has quit [Read error: Connection reset by peer]
<Thermatix> hello?
<centrx> Thermatix, Try #rubyonrails
<Thermatix> AH
<Thermatix> thank you
axl__ has joined #ruby
krz has quit [Quit: WeeChat 0.4.3]
freezey has joined #ruby
<centrx> Thermatix, You'll have to use a registered/identified nick
<Thermatix> yeah
<centrx> to join that channel
<Thermatix> I just tried it and It said the same thing
axl_ has quit [Ping timeout: 250 seconds]
axl__ is now known as axl_
<Thermatix> how do I register?
JohnFord has joined #ruby
lw has quit [Ping timeout: 240 seconds]
<centrx> /nickserv help
jmbrown412 has joined #ruby
<Thermatix> do I use /user?
<centrx> no?
sambao21 has joined #ruby
ndrei has joined #ruby
<Thermatix> oh
<centrx> I am not familiar with that command
<centrx> maybe it does, I don't think I've ever seen it used
acrussell has quit [Quit: Leaving.]
Thermatix is now known as thermatix
<seph429> do /msg nickserv help register
<thermatix> AH
<thermatix> thanks, It's been a while since I've been on IRC
<seph429> not a problem
Port3M5[Work] has quit [Ping timeout: 245 seconds]
freezey has quit [Ping timeout: 245 seconds]
<thermatix> hmmm my chat pane doesn't scroll
<thermatix> or it's becuase the printout from commands doesn't scroll it, nvm
Port3M5[Work] has joined #ruby
<thermatix> thanks for your help
<thermatix> heh, all this just for a confirmation :P
Aryasam has joined #ruby
russ_ is now known as ukd1
CodeLicker has quit [Ping timeout: 245 seconds]
blackmesa has joined #ruby
<george_mcfly> why is it when my .gemrc specifies a certain source, when i do 'gem source' it shows me the default rubygems ? https://gist.github.com/bttf/bd5e5744a9bf22921819#file-gistfile1-txt-L21
Hanmac has quit [Ping timeout: 260 seconds]
jerius has quit []
<wallerdev> morning friends
<wallerdev> might have to update the source cache
Sauvin has quit [Read error: Connection reset by peer]
<wallerdev> gem sources -u
fabrice31 has quit [Remote host closed the connection]
<george_mcfly> i tried that :/
<wallerdev> did you change the gemrc manually or did you add it with gem sources --add
momomomomo has quit [Quit: momomomomo]
alem0lars has joined #ruby
<george_mcfly> i just added the gemrc file to /etc
jcromartie has quit [Ping timeout: 245 seconds]
<george_mcfly> shouldn't gem pick up the gemrc on the fly
Elhu has quit [Quit: Computer has gone to sleep.]
roolo has joined #ruby
jcromartie has joined #ruby
bosworth has joined #ruby
<mostlybadfly> Hi wallerdev good day to you
sputnik13 has quit [Quit: My Mac Mini has gone to sleep. ZZZzzz…]
_maes_ has joined #ruby
thermatix has left #ruby [#ruby]
jmbrown412 has quit [Remote host closed the connection]
jmbrown412 has joined #ruby
sputnik13 has joined #ruby
<george_mcfly> i'm stumped
<george_mcfly> can anyone shed some light on this
jmbrown412 has quit [Read error: Connection reset by peer]
charliesome has joined #ruby
britneywright has joined #ruby
ffranz has quit [Ping timeout: 272 seconds]
beseku has joined #ruby
ffranz has joined #ruby
Tricon has quit [Quit: Linkinus - http://linkinus.com]
maestrojed has quit [Quit: Computer has gone to sleep.]
<george_mcfly> ruby gods, i seek guidance
senayar has quit [Remote host closed the connection]
<george_mcfly> help me o ruby lords
Wolland has joined #ruby
<george_mcfly> my gems, they won't install properly
Wolland has quit [Read error: Connection reset by peer]
mikepack has quit [Remote host closed the connection]
<george_mcfly> lend me your insight
Wolland has joined #ruby
<wallerdev> did you try using gem sources --add
Digidog has joined #ruby
sandelius has joined #ruby
Duckily has joined #ruby
IceDragon has quit [Ping timeout: 256 seconds]
<george_mcfly> i almost sacrificed a goat
<george_mcfly> wallerdev: no i didn't but i am using chef to push down a gemrc file ...
IceDragon has joined #ruby
beseku has quit [Ping timeout: 250 seconds]
<wallerdev> did you put it in /etc/gemrc or /etc/.gemrc
<george_mcfly> /etc/gemrc
Hanmac has joined #ruby
soheil has joined #ruby
<wallerdev> whats your gemrc look like
<george_mcfly> one sec
kreisys has quit [Ping timeout: 240 seconds]
rylev has quit [Remote host closed the connection]
rylev has joined #ruby
rylev_ has joined #ruby
gbaway has quit [Ping timeout: 255 seconds]
SilkFox_ has joined #ruby
Akagi201 has joined #ruby
frankle has joined #ruby
spyderma_ has joined #ruby
Elhu has joined #ruby
<george_mcfly> eureka
baweaver has quit [Ping timeout: 255 seconds]
<seph429> you zigged when you should have zagged?
cocotton has quit [Remote host closed the connection]
<george_mcfly> precisely
<wallerdev> what was it?
<wallerdev> haha
<wallerdev> looked fine to me but i never use different sources through gem
<wallerdev> always through bundler
rylev has quit [Ping timeout: 272 seconds]
cocotton has joined #ruby
qwyeth has quit [Ping timeout: 272 seconds]
cocotton has quit [Remote host closed the connection]
cocotton has joined #ruby
spyderman4g63 has quit [Ping timeout: 245 seconds]
SilkFox_ has quit [Ping timeout: 250 seconds]
<george_mcfly> yaml syntax
Akagi201 has quit [Ping timeout: 272 seconds]
JohnFord has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
centrx has quit [Quit: Mead error: Connection reset by beer]
<wallerdev> ohh
<george_mcfly> doing the 'gem sources --add ...' refactored my gemrc into the correct formatting so that helped
yeticry has quit [Ping timeout: 240 seconds]
<wallerdev> lol
yeticry has joined #ruby
Elhu has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
nowthatsamatt has joined #ruby
lw has joined #ruby
freezey has joined #ruby
yekta has joined #ruby
IceDragon has quit [Ping timeout: 245 seconds]
mattstratton has joined #ruby
hobodave has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
sambao21 has quit [Quit: Computer has gone to sleep.]
Tricon has joined #ruby
ndrei has quit [Ping timeout: 256 seconds]
yeticry has quit [Ping timeout: 245 seconds]
IceDragon has joined #ruby
yeticry has joined #ruby
sambao21 has joined #ruby
momomomomo has joined #ruby
JohnFord has joined #ruby
namxam_ has joined #ruby
nanoyak has quit [Quit: Computer has gone to sleep.]
qwyeth has joined #ruby
treehug88 has quit [Ping timeout: 256 seconds]
sigurding has joined #ruby
relix has joined #ruby
NinoScript has joined #ruby
existensil has joined #ruby
alem0lars has quit [Quit: Going AFK...]
namxam has quit [Ping timeout: 263 seconds]
qwyeth has quit [Remote host closed the connection]
bosworth has quit [Ping timeout: 240 seconds]
NinoScript has quit [Read error: Connection reset by peer]
maestrojed has joined #ruby
senayar has joined #ruby
cocotton has quit [Remote host closed the connection]
NinoScript has joined #ruby
chth0n has quit [Ping timeout: 240 seconds]
renderfu_ has joined #ruby
mikepack has joined #ruby
NinoScript has quit [Read error: Connection reset by peer]
thams has joined #ruby
yeticry has quit [Ping timeout: 260 seconds]
jaequery_ has joined #ruby
dbasch has quit [Quit: dbasch]
jaimef has quit [Excess Flood]
NinoScript has joined #ruby
yeticry has joined #ruby
heftig has joined #ruby
jaequery_ has quit [Max SendQ exceeded]
sputnik13 has quit [Quit: My Mac Mini has gone to sleep. ZZZzzz…]
brandonshowers has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
jaequery_ has joined #ruby
mattstratton has quit [Read error: Connection reset by peer]
senayar has quit [Ping timeout: 255 seconds]
cocotton has joined #ruby
cocotton has quit [Remote host closed the connection]
mattstratton has joined #ruby
renderful has quit [Ping timeout: 240 seconds]
cocotton has joined #ruby
maximski has joined #ruby
jaequery has quit [Ping timeout: 240 seconds]
Soda has joined #ruby
<ukd1> does anyone know if a Set will keep the insert order?
rylev_ has quit [Remote host closed the connection]
sigurding has quit [Quit: sigurding]
<hoelzro> I would assume not
sputnik13 has joined #ruby
<hoelzro> but hashes tend not to, but they do in Ruby, so I could be wrong
mikepack has quit [Ping timeout: 245 seconds]
<hoelzro> TIAS
<ukd1> hoelzro hmm, any suggestions for something which would keep insert order in stdlib?
<hoelzro> either way, I don't think you should rely on it
yeticry has quit [Read error: Connection reset by peer]
<hoelzro> ukd1: I don't have any, but what do you need to preserve insert order for?
NinoScript has quit [Ping timeout: 264 seconds]
<ukd1> I want to keep a list of items in the order I've first seen them. I guess I could use a hash and store that time, then sort it
yeticry has joined #ruby
NinoScript has joined #ruby
jaimef has joined #ruby
<hoelzro> why do you need a set/hash? in order to not store duplicates?
<hoelzro> a hash, iirc, does preserve insert order
qhartman has quit [Quit: Ex-Chat]
<hoelzro> (which weirds me out, but whatever)
sambao21 has quit [Quit: Computer has gone to sleep.]
Tricon has quit [Quit: Linkinus - http://linkinus.com]
endash has quit [Quit: endash]
maestrojed has quit [Quit: Computer has gone to sleep.]
lsmola has quit [Ping timeout: 264 seconds]
mr_rich101 has joined #ruby
mr_rich101 has quit [K-Lined]
hectorrr has quit [Ping timeout: 255 seconds]
NinoScript has quit [Ping timeout: 240 seconds]
yeticry has quit [Ping timeout: 240 seconds]
NinoScript has joined #ruby
ghr has joined #ruby
mikepack has joined #ruby
mikepack has quit [Remote host closed the connection]
dbasch has joined #ruby
yeticry has joined #ruby
mikepack has joined #ruby
Duckily has quit [Quit: Duckily]
fschuindt has quit [Quit: Textual IRC Client: www.textualapp.com]
renderfu_ has quit [Remote host closed the connection]
agjacome_ has joined #ruby
v0n has joined #ruby
ghr has quit [Ping timeout: 264 seconds]
xenomorph is now known as {xenomorph}
dbasch has quit [Ping timeout: 256 seconds]
{xenomorph} is now known as xenomorph
agjacome has quit [Ping timeout: 240 seconds]
yeticry has quit [Ping timeout: 245 seconds]
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
<Karunamon> Here's a puzzle! I'm trying to do some regex, here, and the tool I'm using, http://rubular.com, is giving me different results than my pry shell and I'm not sure why.
rezzack has joined #ruby
yeticry has joined #ruby
jdj_dk has quit [Remote host closed the connection]
dbasch has joined #ruby
<Karunamon> In this case, ideally i'd get a match back that contains the "pv.02" line
jmbrown412 has joined #ruby
<Karunamon> Rubular does what I mean, giving me both of them and then letting me grab the last one. Actually in a pry session, though, the last item I get is the pv.01 line
davedev2_ has joined #ruby
davedev24_ has quit [Read error: Connection reset by peer]
<Karunamon> and 2 is nowhere to be found
rezzack has quit [Client Quit]
rezzack has joined #ruby
claymore has quit [Read error: Connection reset by peer]
Rainicorn has quit [Read error: Connection reset by peer]
LadyRainicorn has joined #ruby
momomomomo has quit [Quit: momomomomo]
xenomorph is now known as {xenomorph}
beseku has joined #ruby
{xenomorph} is now known as xenomorph
yeticry has quit [Ping timeout: 240 seconds]
jmbrown412 has quit [Ping timeout: 256 seconds]
LekeFly has joined #ruby
LekeFly has quit [Client Quit]
yeticry has joined #ruby
sputnik13 has quit [Quit: My Mac Mini has gone to sleep. ZZZzzz…]
hectorrr has joined #ruby
sputnik13 has joined #ruby
GlenK has quit []
beseku has quit [Ping timeout: 272 seconds]
codeurge has quit [Quit: Quit.]
benlieb has joined #ruby
VTLob has quit [Quit: VTLob]
Atttwww has joined #ruby
andrewbredow has quit [Remote host closed the connection]
yeticry has quit [Ping timeout: 256 seconds]
yeticry has joined #ruby
jespada_ has quit [Ping timeout: 245 seconds]
dvb_ua has joined #ruby
codeurge has joined #ruby
wallerdev has quit [Quit: wallerdev]
yokel has quit [Ping timeout: 240 seconds]
SilkFox_ has joined #ruby
decoponio has quit [Quit: Leaving...]
sandelius has quit [Quit: Textual IRC Client: www.textualapp.com]
<shevy> ok guys
<shevy> when to subclass
<shevy> and when to use a module
yokel has joined #ruby
<AntelopeSalad> does anyone know how to reach into a thor class and get the available options for a command?
<AntelopeSalad> (from outside of the thor class)
yeticry has quit [Ping timeout: 260 seconds]
ndrei has joined #ruby
yeticry has joined #ruby
camilasan has joined #ruby
jdj_dk has joined #ruby
<shevy> no idea!
SilkFox_ has quit [Ping timeout: 245 seconds]
<shevy> if the thor author was clever, he documented it properly
JoshGlzBrk has joined #ruby
rubyonrailed has quit []
JoshGlzBrk has quit [Remote host closed the connection]
ffranz has quit [Ping timeout: 240 seconds]
noop has quit [Ping timeout: 260 seconds]
cocotton has quit [Remote host closed the connection]
<AntelopeSalad> i spent a while looking at the source/docs, i couldn't find a way
LadyRainicorn has quit [Read error: Connection reset by peer]
LadyRainicorn has joined #ruby
Sleepee has quit [Quit: Leaving]
yeticry has quit [Remote host closed the connection]
yeticry has joined #ruby
thams has quit [Quit: thams]
<shevy> did you find out where the commandline options are stored?
Digidog has quit [Excess Flood]
Piotrek has joined #ruby
andrewbredow has joined #ruby
thams has joined #ruby
awc737 has joined #ruby
<AntelopeSalad> nope, i couldn't initialize my class , it kept throwing errors
Zebroid has quit [Remote host closed the connection]
lbwski has quit [Ping timeout: 240 seconds]
benlieb has quit [Quit: benlieb]
<AntelopeSalad> but when i fulfilled what it said it expected then it still failed
cocotton has joined #ruby
cocotton has quit [Remote host closed the connection]
TripTastic has quit [Read error: Connection reset by peer]
cocotton has joined #ruby
arup_r has quit [Ping timeout: 272 seconds]
yeticry has quit [Ping timeout: 264 seconds]
maximski has quit [Ping timeout: 264 seconds]
yeticry has joined #ruby
jespada_ has joined #ruby
jimms has quit []
Ankhers has quit [Remote host closed the connection]
Pumukel has joined #ruby
edgarjs is now known as edgarjs_afk
brandonshowers has joined #ruby
chrishough has quit [Ping timeout: 245 seconds]
hydrozen has joined #ruby
Ankhers has joined #ruby
LadyRainicorn has quit [Read error: Connection reset by peer]
yeticry has quit [Ping timeout: 255 seconds]
chamblin has joined #ruby
chrishough has joined #ruby
LadyRainicorn has joined #ruby
e4xit has joined #ruby
amargherio has joined #ruby
mikepack has quit []
<shevy> sounds like marriage
nanoyak has joined #ruby
edgarjs_afk is now known as edgarjs
wombo has quit [Quit: wombo]
mikepack has joined #ruby
jaequery_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
WormDrink has joined #ruby
yekta has quit [Quit: yekta]
xaxisx has joined #ruby
yeticry has joined #ruby
saarinen has quit [Quit: saarinen]
JBreit has joined #ruby
Takle has joined #ruby
Photism has joined #ruby
saarinen has joined #ruby
phutchins has joined #ruby
wallerdev has joined #ruby
baroquebobcat has joined #ruby
<eam> shevy: you are too young to be so jaded
yeticry has quit [Ping timeout: 255 seconds]
<shevy> the years have made be a cynic :(
Zebroid has joined #ruby
<shevy> erm
<shevy> *me
mailo has joined #ruby
<shevy> also, work sucks
yeticry has joined #ruby
<seph429> yes it does
<apeiros> shevy: speaking from personal experience? (marriage)
<shevy> no
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<shevy> but my statement that work sucks comes from work experience :(
roolo has quit [Ping timeout: 240 seconds]
jaequery has joined #ruby
<seph429> have you ever had a day where everything that could go wrong does?
Duckily has joined #ruby
<seph429> because that's today
<shevy> today I saw a .csh or something file... some special shell file
<shevy> seph429 well, perhaps not everything, but a lot of things, yeah
LekeFly has joined #ruby
<apeiros> seph429: it actually was yesterday
<apeiros> today, stuff worked
<shevy> I have also noticed that, if I am not physically in a good shape, stuff immensely sucks more than normally
<eam> you guys know about the -f flag for csh? it makes it faster
<shevy> like tooth ache
<shevy> I don't even know what the guy that gave me that shell file wanted
<shevy> it had a crazy kind of loop I haven't seen before
ghr has joined #ruby
<shevy> something like ... wehil <; or so
<shevy> sorry
<shevy> while <;
LiohAu has quit [Quit: LiohAu]
freerobby1 has quit [Quit: Leaving.]
renderful has joined #ruby
nanoyak has quit [Quit: Computer has gone to sleep.]
Rainicorn has joined #ruby
alvaro_o has joined #ruby
LekeFly has quit [Client Quit]
yeticry has quit [Ping timeout: 260 seconds]
nanoyak has joined #ruby
wald0 has quit [Quit: Lost terminal]
Pumukel has quit [Quit: ChatZilla 0.9.90.1 [Firefox 30.0/20140605174243]]
Zebroid has quit [Remote host closed the connection]
yeticry has joined #ruby
centrx has joined #ruby
benlieb has joined #ruby
LadyRainicorn has quit [Ping timeout: 255 seconds]
hydrozen has quit [Quit: Computer has gone to sleep.]
agjacome has joined #ruby
jdj_dk has quit [Remote host closed the connection]
andrewbredow has quit [Quit: Computer has gone to sleep.]
<benlieb> Can someone break this down for me: from nltk.book import *
jdj_dk has joined #ruby
ghr has quit [Ping timeout: 272 seconds]
<benlieb> so nltk is the module... what is book?
<centrx> benlieb, Looks like some Python
<benlieb> oops
<benlieb> :)
<benlieb> wrong spot
andrewbredow has joined #ruby
britneywright has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
agjacome_ has quit [Ping timeout: 260 seconds]
hectorrr has quit [Remote host closed the connection]
<seph429> haha
yeticry has quit [Remote host closed the connection]
hectorrr has joined #ruby
yeticry has joined #ruby
jespada_ has quit [Quit: Leaving]
<Rainicorn> benlieb: book is a submodule. * copies everything from that namespace to the local one.
jdj_dk has quit [Ping timeout: 264 seconds]
kmels has quit [Ping timeout: 260 seconds]
diegoviola has joined #ruby
reset has joined #ruby
hectorrr has quit [Ping timeout: 256 seconds]
xaxisx has quit [Quit: xaxisx]
mehlah has joined #ruby
Zenigor has quit [Remote host closed the connection]
dawkirst has quit [Remote host closed the connection]
beseku has joined #ruby
qhartman has joined #ruby
charliesome has joined #ruby
yeticry has quit [Ping timeout: 240 seconds]
hydrozen has joined #ruby
hectorrr has joined #ruby
stephenmac7 has joined #ruby
yeticry has joined #ruby
existensil has quit [Quit: WeeChat 0.4.2]
<stephenmac7> I was wondering if it was possible to automatically raise an error if an ENV var doesn't exist.
sambao21 has joined #ruby
Photism has quit [Quit: Leaving]
larsam has joined #ruby
<apeiros> raise unless Object.const_defined?(:ENV)
beseku has quit [Ping timeout: 260 seconds]
cocotton_ has joined #ruby
<apeiros> oh, to actually answer the question: yes, it is possible
<stephenmac7> apeiros: Thanks, but you obviously knew exactly what I meant.
momomomomo has joined #ruby
<apeiros> the constant influx of badly phrased question made me almost clairvoyant
<apeiros> *questions
<stephenmac7> apeiros: Though, that's actually not what I was looking for. I meant if a key inside the hash has no value (would otherwise return nil)
<apeiros> see, only almost
W0rmDr1nk has joined #ruby
<apeiros> (clairvoyant)
<apeiros> stephenmac7: how'd you try to do it?
bmurt has quit []
hectorrr has quit [Ping timeout: 255 seconds]
<stephenmac7> apeiros: raise unless ENV['VAR']
<stephenmac7> Though it would be nice to be able to actually return the value if it's in there.
<apeiros> viable, since values are always strings
cocotton has quit [Ping timeout: 255 seconds]
yetanotherdave has quit [Ping timeout: 245 seconds]
<apeiros> use ENV.fetch then
<apeiros> works like Hash#fetch
momomomomo has quit [Client Quit]
<stephenmac7> apeiros: Isn't ENV a hash?
<apeiros> no
<apeiros> >> ENV.class
<Mon_Robot> apeiros: => Object (https://eval.in:443/171486)
cocotton_ has quit [Ping timeout: 260 seconds]
WormDrink has quit [Ping timeout: 245 seconds]
<shevy> stephenmac7, it even has a method like this ENV.to_hash
<shevy> >> ENV.to_hash
<Mon_Robot> shevy: => {"LIBC_FATAL_STDERR_"=>"1", "LANG"=>"en_US.UTF-8"} (https://eval.in:443/171487)
fantazo has joined #ruby
existensil has joined #ruby
Mooneye has joined #ruby
SilkFox_ has joined #ruby
startupality has joined #ruby
Akagi201 has joined #ruby
yeticry has quit [Ping timeout: 250 seconds]
<shevy> hmm
reset has quit [Quit: Leaving...]
<shevy> are there any public alternatives to rubygems.org for hosting gems?
<stephenmac7> apeiros: ENV.fetch works perfectly. Thanks.
<apeiros> yw
shredding has joined #ruby
yeticry has joined #ruby
bridge has joined #ruby
<existensil> shevy: if you consider rails-assets.org an alternative...
<existensil> also, github itself works quite well. Bundler even supports the shorthand: `gem github: "user/repo"`
<existensil> Accidently left out the name, but that's the idea
Ilyas has quit [Ping timeout: 240 seconds]
ffranz has joined #ruby
kyb3r_ has joined #ruby
gimpygoo has quit [Ping timeout: 240 seconds]
SilkFox_ has quit [Ping timeout: 245 seconds]
Akagi201 has quit [Ping timeout: 250 seconds]
<shevy> aha, never heard of rails assets before
xaxisx has joined #ruby
jimms has joined #ruby
<shevy> it would work without bundler too right? I could like add that via: "gem sources --add rails-assets.org" and then "gem install" should also check that URL?
<shevy> hmm or perhaps add https ... "https://rails-assets.org/"
graft has joined #ruby
centrx has quit [Quit: Mead error: Connection reset by beer]
yeticry has quit [Ping timeout: 260 seconds]
fold has quit [Ping timeout: 260 seconds]
brandonshowers has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
johnmolina has joined #ruby
johnmolina has quit [Remote host closed the connection]
<graft> hey folks, looking for some advice: I am hacking on this gem which i am using in production on this machine, and i want to be able to build and install a dev version of this gem without messing up the production environment... what's a good way to achieve this?
yeticry has joined #ruby
itspots has quit [Ping timeout: 240 seconds]
MrDoctor has joined #ruby
stephenmac7 has quit []
xaxisx has quit [Quit: xaxisx]
jackneill has quit [Remote host closed the connection]
DeanH has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
beseku has joined #ruby
brandonshowers has joined #ruby
shawnjgoff has joined #ruby
larsam has quit [Read error: Connection reset by peer]
yeticry has quit [Ping timeout: 255 seconds]
xaxisx has joined #ruby
<shawnjgoff> I need to make "ab:cd:ef:gh..." turn into "abcd:efgh..."
NinoScript has quit [Ping timeout: 240 seconds]
<shawnjgoff> Is this the most straightforward way: "ab:ce:ef:gh".split(':').each_slice(2).map { |*a| a.join }.join(":")
<shawnjgoff> It seems like it should be simpler.
yeticry has joined #ruby
Rahul_Roy has quit [Quit: Connection closed for inactivity]
MrL0ngbowman has joined #ruby
seanosaur has quit [Remote host closed the connection]
<apeiros> .gsub(/(..):(..)/, '\1\2')
EvanR_ has quit [Ping timeout: 256 seconds]
EvanR_ has joined #ruby
<apeiros> shawnjgoff: ^
jelera has joined #ruby
NinoScript has joined #ruby
<shawnjgoff> That works.
<apeiros> graft: use bundler. use rvm. use a different user. pick one :)
andrewbredow has quit [Quit: Computer has gone to sleep.]
<apeiros> oh, I forgot: don't install it, use $LOAD_PATH (e.g. via -I flag)
thams has quit [Quit: thams]
beseku has quit [Ping timeout: 272 seconds]
olivier_bK has joined #ruby
andrewbredow has joined #ruby
<apeiros> last one is what I usually do
MrDoctor has quit [Read error: Connection reset by peer]
NinoScript has quit [Read error: Connection reset by peer]
<existensil> shevy: I would think so. Never used it that way.
NinoScript has joined #ruby
dawkirst has joined #ruby
bMalum__ has quit [Quit: Computer has gone to sleep.]
bMalum__ has joined #ruby
NinoScript has quit [Read error: Connection reset by peer]
EvanR_ has quit [Ping timeout: 256 seconds]
fifthofwry has quit [Ping timeout: 264 seconds]
yeticry has quit [Ping timeout: 272 seconds]
NinoScript has joined #ruby
asmodlol has quit [Read error: Connection reset by peer]
nateberkopec has quit [Quit: Leaving...]
andrewbredow has quit [Ping timeout: 240 seconds]
thams has joined #ruby
george_mcfly has quit [Quit: leaving]
yeticry has joined #ruby
nateberkopec has joined #ruby
dbasch has quit [Read error: Connection reset by peer]
Ankhers has quit [Ping timeout: 264 seconds]
davedev2_ has quit [Remote host closed the connection]
dbasch has joined #ruby
jelera has quit [Ping timeout: 240 seconds]
MrL0ngbowman has quit [Ping timeout: 272 seconds]
saarinen has quit [Quit: saarinen]
davedev24_ has joined #ruby
NinoScript has quit [Read error: Connection reset by peer]
dawkirst has quit [Ping timeout: 240 seconds]
dblessing has quit [Quit: dblessing]
yetanotherdave has joined #ruby
bMalum__ has quit [Ping timeout: 240 seconds]
NinoScript has joined #ruby
yeticry has quit [Ping timeout: 250 seconds]
NinoScript has quit [Read error: Connection reset by peer]
ldnunes has quit [Quit: Leaving]
doev has joined #ruby
yeticry has joined #ruby
NinoScript has joined #ruby
NinoScript has quit [Read error: Connection reset by peer]
MartinCleaver has quit [Quit: MartinCleaver]
NinoScript has joined #ruby
doev has quit [Client Quit]
reset has joined #ruby
namxam_ has quit [Remote host closed the connection]
larsam has joined #ruby
saarinen has joined #ruby
_reset has joined #ruby
reset has quit [Read error: Connection reset by peer]
LordXe-gnu has joined #ruby
yeticry has quit [Ping timeout: 256 seconds]
felixjet has joined #ruby
<LordXe-gnu> I'm trying to install rvm using the install for a single user but it keeps trying to add an "rvm" group via sudo, and I don't have root on the machine in question
<LordXe-gnu> any way to get around this?
startupality has quit [Quit: startupality]
yeticry has joined #ruby
ghr has joined #ruby
St_Marx has quit [Quit: Ex-Chat]
CodeLicker has joined #ruby
iamjarvo has quit [Read error: Connection reset by peer]
amargherio has quit [Read error: Connection reset by peer]
iamjarvo has joined #ruby
nicoulaj has quit [Remote host closed the connection]
larsam has quit [Read error: Connection reset by peer]
toastynerd has joined #ruby
bosworth has joined #ruby
yeticry has quit [Ping timeout: 264 seconds]
bMalum__ has joined #ruby
ghr has quit [Ping timeout: 272 seconds]
davedev24_ has quit [Read error: Connection reset by peer]
larsam has joined #ruby
davedev24_ has joined #ruby
nateberkopec has quit [Read error: Connection reset by peer]
kyb3r_ has quit [Read error: Connection reset by peer]
andrewlio has quit [Quit: Leaving.]
toastynerd has quit [Remote host closed the connection]
St_Marx has joined #ruby
kyb3r_ has joined #ruby
yeticry has joined #ruby
olivier_bK has quit [Ping timeout: 256 seconds]
hectorrr has joined #ruby
hectorrr has left #ruby [#ruby]
shredding has quit [Quit: shredding]
sunya7a has joined #ruby
lele has quit [Ping timeout: 256 seconds]
hectorrr has joined #ruby
CodeLicker has quit [Read error: Connection reset by peer]
bosworth has quit [Ping timeout: 255 seconds]
Nahra has quit [Remote host closed the connection]
cocotton has joined #ruby
cocotton has quit [Remote host closed the connection]
djbkd has quit [Remote host closed the connection]
yeticry has quit [Remote host closed the connection]
nfk has quit [Remote host closed the connection]
yeticry has joined #ruby
_reset has quit [Ping timeout: 264 seconds]
thams has quit [Quit: thams]
blackmesa has quit [Remote host closed the connection]
Hobogrammer has joined #ruby
blackmesa has joined #ruby
DeanH has joined #ruby
chrishough has quit [Quit: chrishough]
NinoScript has quit [Ping timeout: 260 seconds]
Takle has quit [Remote host closed the connection]
beef-wellington has quit [Ping timeout: 260 seconds]
sunya7a has quit [Ping timeout: 250 seconds]
momomomomo has joined #ruby
thams has joined #ruby
Nahra has joined #ruby
NinoScript has joined #ruby
Takle_ has joined #ruby
yeticry has quit [Ping timeout: 250 seconds]
olivier_bK has joined #ruby
yeticry has joined #ruby
xaxisx has left #ruby [#ruby]
Nahra has quit [Remote host closed the connection]
SegFaultAX has quit [Excess Flood]
SegFaultAX has joined #ruby
Nahra has joined #ruby
momomomomo has quit [Quit: momomomomo]
Nahra has quit [Remote host closed the connection]
SilkFox_ has joined #ruby
Wolland has quit [Remote host closed the connection]
Akagi201 has joined #ruby
lxsameer has joined #ruby
lxsameer has joined #ruby
Nahra has joined #ruby
brandonshowers has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
yeticry has quit [Ping timeout: 240 seconds]
hydrozen has quit [Quit: Computer has gone to sleep.]
namxam has joined #ruby
dapz has joined #ruby
renderfu_ has joined #ruby
yeticry has joined #ruby
jaequery has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jaequery has joined #ruby
Nahra has quit [Remote host closed the connection]
armyriad has quit [Read error: Connection reset by peer]
armyriad has joined #ruby
Akagi201 has quit [Ping timeout: 245 seconds]
phutchins has quit [Ping timeout: 255 seconds]
SilkFox_ has quit [Ping timeout: 250 seconds]
renderful has quit [Ping timeout: 260 seconds]
Nahra has joined #ruby
namxam has quit [Read error: No route to host]
Photism has joined #ruby
namxam has joined #ruby
brandonshowers has joined #ruby
GriffinHeart has joined #ruby
dangerousdave has quit [Ping timeout: 240 seconds]
dbasch has quit [Ping timeout: 245 seconds]
sailias has quit [Quit: Leaving.]
Nahra has quit [Remote host closed the connection]
Kache has joined #ruby
yeticry has quit [Remote host closed the connection]
nanoyak has quit [Quit: Computer has gone to sleep.]
sepp2k has joined #ruby
dbasch has joined #ruby
asdd has joined #ruby
yeticry has joined #ruby
sirene has quit [Ping timeout: 260 seconds]
freezey has quit [Remote host closed the connection]
Nahra has joined #ruby
sirene has joined #ruby
<Kache> anyone ever see tab completion in irb/rails console add an extra space?
namxam has quit [Ping timeout: 245 seconds]
jaimef has quit [Excess Flood]
lkba has joined #ruby
GriffinHeart has quit [Ping timeout: 264 seconds]
nfk has joined #ruby
hydrozen has joined #ruby
ephemerian has quit [Quit: Leaving.]
beseku has joined #ruby
yeticry has quit [Ping timeout: 240 seconds]
timonv_ has quit [Remote host closed the connection]
Nahra has quit [Ping timeout: 250 seconds]
jaimef has joined #ruby
yeticry has joined #ruby
nfk has quit [Remote host closed the connection]
nowthatsamatt has quit [Quit: nowthatsamatt]
<wallerdev> maybe its adding a tab
nfk has joined #ruby
dbasch has quit [Read error: Connection reset by peer]
dbasch has joined #ruby
pietr0 has quit [Quit: pietr0]
Nahra has joined #ruby
nanoyak has joined #ruby
<graft> is it possible to modify Gem.path from within a script?
<graft> if i unshift a directory onto Gem.path, it doesn't seem to affect how gems load
beseku has quit [Ping timeout: 245 seconds]
<graft> (although setting GEM_PATH environment variable before loading does)
saarinen has quit [Quit: saarinen]
lele has joined #ruby
chrishough has joined #ruby
kevind has quit [Remote host closed the connection]
yeticry has quit [Ping timeout: 272 seconds]
Nilium has joined #ruby
mikesplain has quit [Ping timeout: 240 seconds]
yeticry has joined #ruby
timonv^ has joined #ruby
mattstratton has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
saarinen has joined #ruby
frankle has quit [Quit: Connection closed for inactivity]
JohnFord has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Nahra has quit [Ping timeout: 260 seconds]
<Kache> well any whitespace at all after the tab complete is weird
nobodyzzz has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
mattstratton has joined #ruby
asdd has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
iamjarvo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
postmodern has quit [Quit: Leaving]
timonv^ has quit [Ping timeout: 245 seconds]
startupality has joined #ruby
yeticry_ has joined #ruby
yeticry has quit [Ping timeout: 255 seconds]
EvanR_ has joined #ruby
agjacome has quit [Quit: leaving]
NinoScript has quit [Ping timeout: 264 seconds]
blackmes1 has joined #ruby
NinoScript has joined #ruby
sputnik13 has quit [Quit: My Mac Mini has gone to sleep. ZZZzzz…]
postmodern has joined #ruby
sambao21 has quit [Quit: Computer has gone to sleep.]
jottr has quit [Ping timeout: 255 seconds]
banisterfiend has joined #ruby
riotjones has quit [Ping timeout: 255 seconds]
lethan has joined #ruby
benzrf|offline is now known as benzrf
blackmesa has quit [Ping timeout: 264 seconds]
banister has quit [Read error: Connection reset by peer]
EvanR_ has quit [Ping timeout: 260 seconds]
banister has joined #ruby
cocotton has joined #ruby
dbasch has quit [Read error: Connection reset by peer]
djbkd has joined #ruby
cocotton has quit [Read error: Connection reset by peer]
dbasch has joined #ruby
cocotton has joined #ruby
riotjones has joined #ruby
yeticry_ has quit [Ping timeout: 260 seconds]
thams has quit [Quit: thams]
Mooneye has quit [Quit: Leaving]
yeticry has joined #ruby
Genzo has joined #ruby
Genzo has left #ruby [#ruby]
marr has quit [Ping timeout: 245 seconds]
larsam has quit [Read error: Connection reset by peer]
ghr has joined #ruby
davedev24_ has quit [Read error: Connection reset by peer]
Nahra has joined #ruby
davedev24_ has joined #ruby
NinoScript has quit [Ping timeout: 256 seconds]
NinoScript has joined #ruby
benzrf is now known as benzrf|offline
yeticry has quit [Remote host closed the connection]
yeticry has joined #ruby
toastynerd has joined #ruby
EvanR_ has joined #ruby
Lucky_Red has joined #ruby
MCDev has joined #ruby
britneywright has joined #ruby
moritzs has joined #ruby
linguini has left #ruby [#ruby]
Wolland has joined #ruby
ghr has quit [Ping timeout: 250 seconds]
toastynerd has quit [Remote host closed the connection]
Nahra has quit [Ping timeout: 240 seconds]
davedev24_ has quit [Read error: Connection reset by peer]
davedev24_ has joined #ruby
geggam has quit [Remote host closed the connection]
cocotton has quit [Remote host closed the connection]
Vivekananda_y510 has joined #ruby
timonv_ has joined #ruby
yeticry has quit [Ping timeout: 260 seconds]
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
larsam has joined #ruby
yfeldblum has quit [Ping timeout: 240 seconds]
yfeldblum has joined #ruby
yeticry has joined #ruby
jlovick has quit [Ping timeout: 272 seconds]
linojon has quit [Quit: linojon]
xybre has quit [Quit: dist upgrade, brb]
jobewan has quit [Quit: Leaving]
blurredbits has quit [Quit: ZZZzzz…]
nowthatsamatt has joined #ruby
<zenspider> LordXe-gnu: you might prefer rbenv
snath has quit [Ping timeout: 245 seconds]
<zenspider> it's pretty no-nonsense / no-frills
jay_ has joined #ruby
iamjarvo has joined #ruby
xybre has joined #ruby
jaimef has quit [Excess Flood]
Neomex has quit [Read error: Connection reset by peer]
j_mcnally has quit [Quit: ZNC - http://znc.in]
nowthatsamatt has quit [Client Quit]
olivier_bK has quit [Ping timeout: 256 seconds]
britneywright has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
j_mcnally has joined #ruby
brandonshowers has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
britneywright has joined #ruby
Nahra has joined #ruby
brandonshowers has joined #ruby
yeticry has quit [Ping timeout: 260 seconds]
fantazo has quit [Ping timeout: 260 seconds]
armyriad has quit [Read error: Connection reset by peer]
Nahra has quit [Remote host closed the connection]
cocotton has joined #ruby
djbkd has quit [Remote host closed the connection]
armyriad has joined #ruby
yeticry has joined #ruby
djbkd has joined #ruby
davedev24_ has quit [Read error: Connection reset by peer]
davedev24_ has joined #ruby
Nahra has joined #ruby
crudson has joined #ruby
toastynerd has joined #ruby
<lagweezle> It is full of awesome.
testcore has joined #ruby
Shidash has quit [Quit: Leaving.]
Sirupsen has joined #ruby
benlieb has quit [Quit: benlieb]
Nahra has quit [Remote host closed the connection]
SilkFox_ has joined #ruby
timonv_ has quit [Ping timeout: 255 seconds]
yeticry has quit [Ping timeout: 250 seconds]
benlieb has joined #ruby
jaimef has joined #ruby
yeticry has joined #ruby
tvw has quit []
toastynerd has quit [Ping timeout: 255 seconds]
Nowaker has quit [Remote host closed the connection]
Nahra has joined #ruby
Nowaker has joined #ruby
Channel6 has joined #ruby
kireevco has joined #ruby
namxam has joined #ruby
SilkFox_ has quit [Ping timeout: 250 seconds]
ukd1 has quit [Remote host closed the connection]
Nahra has quit [Remote host closed the connection]
phoo1234567 has quit [Quit: Leaving]
dapz has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Sgeo has joined #ruby
cocotton has quit [Remote host closed the connection]
dbasch has quit [Read error: Connection reset by peer]
pandaant has joined #ruby
yeticry has quit [Ping timeout: 240 seconds]
jimms has quit [Remote host closed the connection]
amacou has quit [Read error: Connection reset by peer]
yeticry has joined #ruby
amacou has joined #ruby
shawnjgoff has quit [Ping timeout: 256 seconds]
namxam has quit [Ping timeout: 256 seconds]
MCDev has quit [Ping timeout: 250 seconds]
xmad has quit [Ping timeout: 272 seconds]
jottr has joined #ruby
beseku has joined #ruby
yeticry has quit [Ping timeout: 264 seconds]
toastynerd has joined #ruby
toastynerd has quit [Remote host closed the connection]
yeticry has joined #ruby
toastynerd has joined #ruby
<ViperChief> o hai?
banisterfiend has quit [Quit: Computer has gone to sleep.]
beseku has quit [Ping timeout: 250 seconds]
kmels has joined #ruby
dapz has joined #ruby
Wolland has quit [Remote host closed the connection]
crudson has quit [Ping timeout: 260 seconds]
Arkaniad has joined #ruby
Arkaniad|Laptop has joined #ruby
chamblin has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Vivekananda_y510 has quit [Ping timeout: 240 seconds]
Arkaniad|Laptop has quit [Client Quit]
Arkaniad has quit [Max SendQ exceeded]
crudson has joined #ruby
toastynerd has quit [Ping timeout: 245 seconds]
yeticry has quit [Ping timeout: 260 seconds]
e4xit_ has joined #ruby
yeticry has joined #ruby
qhartman has quit [Quit: Ex-Chat]
Takle_ has quit [Remote host closed the connection]
davedev24_ has quit [Read error: Connection reset by peer]
e4xit has quit [Ping timeout: 240 seconds]
e4xit_ is now known as e4xit
davedev24_ has joined #ruby
AlexRussia_w has quit [Ping timeout: 264 seconds]
banisterfiend has joined #ruby
gr33n7007h has quit [Ping timeout: 245 seconds]
Vivekananda_y510 has joined #ruby
VictorSK has joined #ruby
VictorSK_ has joined #ruby
baroquebobcat has quit [Quit: baroquebobcat]
blackmes1 has quit [Ping timeout: 264 seconds]
yeticry has quit [Ping timeout: 240 seconds]
brandonshowers has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
VictorSK_ has quit [Client Quit]
k0m has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<robscormack> LordXe-gnu, use rbenv.
testcore has quit [Quit: BitchX-1.3-git -- just do it.]
W0rmDr1nk has quit [Ping timeout: 264 seconds]
yeticry has joined #ruby
icarus_ has quit [Remote host closed the connection]
VictorSK has quit [Client Quit]
jimbow has joined #ruby
<jimbow> anyone use sublime?
Zebroid has joined #ruby
jaimef has quit [Excess Flood]
mary5030 has quit [Remote host closed the connection]
fenicks has joined #ruby
yeticry has quit [Ping timeout: 240 seconds]
jack_rabbit has joined #ruby
larsam has quit [Read error: Connection reset by peer]
yeticry has joined #ruby
P-NuT has joined #ruby
<P-NuT> Hey all, is there a gem for streaming internet radio?
MCDev has joined #ruby
<P-NuT> ...listening to it I mean.
Vivekananda_y510 has quit [Read error: Connection reset by peer]
edgarjs has left #ruby [#ruby]
Vivekananda_y510 has joined #ruby
main has joined #ruby
banisterfiend has quit [Quit: Computer has gone to sleep.]
_maes_ has quit [Ping timeout: 240 seconds]
crudson has quit [Ping timeout: 240 seconds]
nfk has quit [Quit: yawn]
jaimef has joined #ruby
ghr has joined #ruby
phinfonet has quit [Ping timeout: 250 seconds]
crudson has joined #ruby
<main> Hi. I would like ruby to stay in an interactive mode after ending script execution. How can I do it? Tried "irb -r 'script.rb'" but the variables defined in the script do not load to the scope. "irb 'script.rb'" on the other hand exited the shell due to EOF...
brandonshowers has joined #ruby
banisterfiend has joined #ruby
yeticry has quit [Ping timeout: 250 seconds]
phinfonet has joined #ruby
codeurge has quit [Quit: Sleep.]
yeticry has joined #ruby
<apeiros> main: require 'pry'; …script code… binding.pry
ferr has joined #ruby
maestrojed has joined #ruby
W0rmDr1nk has joined #ruby
mailo has quit [Quit: Leaving...]
awc737 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
ghr has quit [Ping timeout: 260 seconds]
<main> apeiros: thanks
arya_ has joined #ruby
mikecmpbll has quit [Quit: i've nodded off.]
Avahey_ has joined #ruby
yeticry has quit [Ping timeout: 250 seconds]
mocfive has quit [Remote host closed the connection]
mocfive has joined #ruby
yeticry has joined #ruby
main has quit [Quit: WeeChat 0.4.3]
baroquebobcat has joined #ruby
jay_ has quit [Remote host closed the connection]
P-NuT has quit [Quit: Leaving]
jay_ has joined #ruby
axl_ has left #ruby [#ruby]
xmad has joined #ruby
yeticry has quit [Ping timeout: 245 seconds]
NCS_One has quit [Quit: leaving]
brandonshowers has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
SilkFox_ has joined #ruby
beef-wellington has joined #ruby
yeticry has joined #ruby
seanosaur has joined #ruby
AlexRussia_w has joined #ruby
maestrojed has quit [Quit: Computer has gone to sleep.]
soheil has quit []
ferr has quit [Read error: Connection reset by peer]
jaequery has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
yeticry has quit [Ping timeout: 245 seconds]
GriffinHeart has joined #ruby
brandonshowers has joined #ruby
yeticry has joined #ruby
sailias has joined #ruby
Aryasam has quit [Read error: Connection reset by peer]
Aryasam has joined #ruby
GriffinHeart has quit [Ping timeout: 260 seconds]
armyriad has quit [Ping timeout: 256 seconds]
armyriad has joined #ruby
sailias has quit [Read error: Connection reset by peer]
yeticry has quit [Ping timeout: 256 seconds]
Akagi201 has joined #ruby
baroquebobcat has quit [Quit: baroquebobcat]
thams has joined #ruby
oso96_2000 is now known as oso|away
yeticry has joined #ruby
lyuzashi has joined #ruby
apeiros has quit [Remote host closed the connection]
AlexRussia has quit [Remote host closed the connection]
mr_snowf1ake has joined #ruby
apeiros has joined #ruby
NinoScript has quit [Ping timeout: 240 seconds]
namxam has joined #ruby
jshultz has quit [Quit: Connection closed for inactivity]
Akagi201 has quit [Ping timeout: 250 seconds]
yeticry has quit [Ping timeout: 245 seconds]
bricker`work has quit [Ping timeout: 255 seconds]
NinoScript has joined #ruby
ramfjord has quit [Quit: leaving]
kireevco has quit [Quit: Leaving.]
yeticry has joined #ruby
ramfjord has joined #ruby
wenshan has joined #ruby
mgomezch has left #ruby [#ruby]