JeanCarloMachado has quit [Ping timeout: 255 seconds]
jusa has quit [Ping timeout: 240 seconds]
<zenspider>
specifically not sure of the last line... should === be more like Regexp.=~ or more like == ?
JeanCarloMachado has joined #ruby
jhack__ has quit [Quit: Leaving]
railsForDaiz has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jhack has joined #ruby
railsForDaiz has joined #ruby
cagomez has quit []
marr has quit [Ping timeout: 240 seconds]
cyphase has quit [Ping timeout: 240 seconds]
GinoMan has joined #ruby
SeepingN has quit [Quit: The system is going down for reboot NOW!]
Dimik has quit [Ping timeout: 240 seconds]
cajone has quit [Ping timeout: 240 seconds]
jhack has quit [Quit: Leaving]
ozcanesen has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cdg has quit [Remote host closed the connection]
pankaj has joined #ruby
cajone has joined #ruby
juggler has joined #ruby
railsForDaiz has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
railsForDaiz has joined #ruby
duderonomy has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cam27 has joined #ruby
milardovich has quit [Remote host closed the connection]
ozcanesen has joined #ruby
pankaj has quit [Quit: Leaving]
railsForDaiz has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
railsForDaiz has joined #ruby
railsForDaiz has quit [Client Quit]
jenrzzz has quit [Ping timeout: 240 seconds]
railsForDaiz has joined #ruby
JeanCarloMachado has quit [Ping timeout: 255 seconds]
railsForDaiz has quit [Client Quit]
railsForDaiz has joined #ruby
apparition has joined #ruby
JeanCarloMachado has joined #ruby
<zenspider>
oooh... ribeye for $8/lb
railsForDaiz has quit [Client Quit]
railsForDaiz has joined #ruby
railsForDaiz has quit [Client Quit]
railsForDaiz has joined #ruby
pb122 has joined #ruby
railsForDaiz has quit [Client Quit]
railsForDaiz has joined #ruby
railsForDaiz has quit [Client Quit]
pb122 has quit [Max SendQ exceeded]
railsForDaiz has joined #ruby
pb122 has joined #ruby
<ruby[bot]>
zenspider: Could not find user with nick "railsForDiaz"
<zenspider>
!connection railsForDiaz
<zenspider>
!connection railsForDaiz
pb122-two has quit [Read error: Connection reset by peer]
railsForDaiz was kicked from #ruby by ruby[bot] [repeated join/part detected]
pb122 has quit [Max SendQ exceeded]
<t-recx>
mmmm ribeye
bronson has joined #ruby
gusrub has quit [Remote host closed the connection]
pb122 has joined #ruby
bronson has quit [Ping timeout: 240 seconds]
Rutix has quit []
lagweezle is now known as lagweezle_away
juggler has quit [Quit: Leaving]
millerti has joined #ruby
graingert has joined #ruby
jaegerca_ has joined #ruby
<jaegerca_>
Does anyone have an opinion on naming convention with files in ruby - I am considering calling some of my files like this: blog.routes.rb, simply to differentiate when I am searching for them. Any purists want to tell me that's a horrible idea?
mim1k has joined #ruby
jaegerca_ is now known as jaegerca
<elomatreb>
Why not use a directory instead? I.e. routes/blog.rb
<jaegerca>
They are in a directory
<jaegerca>
Here is the issue
<jaegerca>
I have blog.rb serializer, I have blog.rb model, I have blog.rb facades etc
<jaegerca>
I would like for once to open the right file when searching file names!!!
<elomatreb>
I see, I never had that problem so I can't really say, sorry
<jaegerca>
You don't have to have had the same problem as me to have an opinion though :)
<elomatreb>
Well, my opinion would be "I never had that problem so I wouldn't feel comfortable with breaking the convention (and possibly the autoloading?)"
mim1k has quit [Ping timeout: 240 seconds]
bmurt has joined #ruby
<jaegerca>
elomatreb: Autoloading is a good point - although in this case these files have no class names and are being explicitly required and evaled.
<jaegerca>
Ok - well I am going to try it and see
mistym- is now known as mistym
mistym has quit [Changing host]
mistym has joined #ruby
JeanCarloMachado has quit [Ping timeout: 260 seconds]
JeanCarloMachado has joined #ruby
brent__ has joined #ruby
brent__ has quit [Ping timeout: 240 seconds]
GodFather has quit [Quit: Ex-Chat]
GodFather has joined #ruby
cfec0b8d has quit [Remote host closed the connection]
Asher has quit [Quit: Leaving.]
enterprisey has quit [Remote host closed the connection]
Asher has joined #ruby
milardovich has joined #ruby
GodFather has quit [Ping timeout: 240 seconds]
__Yiota has joined #ruby
dar123 has joined #ruby
<dar123>
hey guyz new to ruby, would be ruby equivalent of blabla | egrep ^Gi | grep up | wc -l
gothicsouth has joined #ruby
milardovich has quit [Ping timeout: 240 seconds]
ekinmur has joined #ruby
AndBobsYourUncle has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
gothicsouth has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
gizmore|2 has joined #ruby
duderonomy has joined #ruby
Cohedrin has quit [Read error: Connection reset by peer]
<kke>
i don't know why it doesn't raise or something
<kke>
(insert should require the position argument)
mim1k has joined #ruby
bsartek has joined #ruby
Rodya_ has joined #ruby
aupadhye has joined #ruby
lxsameer has joined #ruby
<konsolebox>
kke: perhaps the internal function immediately exits when no element is passed. checking for the validity of the index is bypassed. or perhaps it is handled by another function that is only called when the index is already needed. or perhaps to be exact, it is only at that time where the real value of the (VALUE) object is interpreted.
astrobunny has quit [Remote host closed the connection]
claw has quit [Remote host closed the connection]
<konsolebox>
the error you get when you pass another argument is 'TypeError: no implicit conversion of String into Integer'
mim1k has quit [Ping timeout: 240 seconds]
<kke>
the source seems to do pos = NUM2LONG(argv[0]);
claw has joined #ruby
Rodya_ has quit [Ping timeout: 272 seconds]
dhollinger has quit [Ping timeout: 255 seconds]
pandaant has joined #ruby
<kke>
"If x is not a Fixnum , Float , or Bignum object, it attempts to implicit type conversion by x.to_int."
<dminuoso>
kke: You skipped over the relevant line.
<dminuoso>
kke: if (argc == 1) return ary;
postmodern has quit [Quit: Leaving]
<kke>
right
<kke>
i wonder why that is there
<kke>
>> [].insert(Exception.new)
<dminuoso>
kke: "Insert nothing at somewhere" means the same as "dont do anything"
flyingX has quit [Read error: Connection reset by peer]
nankyokusei has joined #ruby
Rodya_ has quit [Ping timeout: 246 seconds]
flying has quit [Ping timeout: 240 seconds]
konsolebox has quit [Ping timeout: 260 seconds]
flying_ has quit [Read error: Connection reset by peer]
flying has joined #ruby
treaki has joined #ruby
nankyokusei has quit [Ping timeout: 255 seconds]
tetsu has joined #ruby
workmad3 has joined #ruby
pycer has quit [Quit: Leaving]
cyphase has joined #ruby
GodFather has joined #ruby
treaki has quit [Ping timeout: 264 seconds]
agent_white has quit [Quit: bai]
ferr has joined #ruby
flying has quit [Remote host closed the connection]
flying has joined #ruby
im0nde has joined #ruby
nowhereman has joined #ruby
treaki has joined #ruby
mim1k has joined #ruby
yogg-saron has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mim1k has quit [Ping timeout: 240 seconds]
jenrzzz has quit [Ping timeout: 240 seconds]
mim1k has joined #ruby
gnufied has joined #ruby
ur5us has joined #ruby
patarr has joined #ruby
apparition has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jameser has quit [Ping timeout: 240 seconds]
patarr has quit [Ping timeout: 260 seconds]
xall_ has quit [Ping timeout: 240 seconds]
cfec0b8d has quit [Ping timeout: 245 seconds]
benjen has quit [Ping timeout: 240 seconds]
cfec0b8d has joined #ruby
Rodya_ has joined #ruby
Beams has quit [Quit: .]
im0nde has quit [Ping timeout: 246 seconds]
benjen has joined #ruby
Rodya_ has quit [Ping timeout: 255 seconds]
cschneid_ has joined #ruby
millerti has joined #ruby
benjen has quit [Ping timeout: 240 seconds]
Beams has joined #ruby
cschneid_ has quit [Ping timeout: 246 seconds]
charliesome has joined #ruby
bsartek has quit [Read error: No route to host]
Silox| has quit [Quit: Connection closed for inactivity]
bsartek has joined #ruby
benjen has joined #ruby
dcunit3d has quit [Ping timeout: 260 seconds]
gnufied has quit [Quit: Leaving]
KeyJoo has quit [Ping timeout: 260 seconds]
gnufied has joined #ruby
cibs has quit [Quit: leaving]
cibs has joined #ruby
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
brent__ has joined #ruby
houhoulis has joined #ruby
millerti has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ur5us has quit [Remote host closed the connection]
patarr has joined #ruby
benjen has quit [Ping timeout: 268 seconds]
KeyJoo has joined #ruby
brent__ has quit [Ping timeout: 255 seconds]
bkxd has joined #ruby
charliesome has joined #ruby
benjen has joined #ruby
nadir has joined #ruby
patarr has quit [Ping timeout: 260 seconds]
ldnunes has joined #ruby
mim1k has quit [Ping timeout: 255 seconds]
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
nicesignal has quit [Remote host closed the connection]
nicesignal has joined #ruby
yogg-saron has joined #ruby
cryingfreeman has joined #ruby
ZMo__ has joined #ruby
<cryingfreeman>
Hi! I have a RoR webapp that uses the DAYNAMES constant to render weekday names, in english. I would like to re-define the DAYNAMES constant in my code to ugly hack translate them into another language. I know almost nothing about Ruby, so can anyone help me with how I should do this?
yogg-saron has quit [Client Quit]
yogg-saron has joined #ruby
AlexRussia has joined #ruby
JeanCarloMachado has joined #ruby
yogg-saron has quit [Client Quit]
yogg-saron has joined #ruby
yogg-saron has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
yogg-saron has joined #ruby
yogg-saron has quit [Client Quit]
dcunit3d has joined #ruby
yogg-saron has joined #ruby
<dminuoso>
cryingfreeman: Firstly, Rails questions are best covered in #rubyonrails
<dminuoso>
cryingfreeman: secondly the concept you are looking for is called "internationalization", or short "18n"
<dminuoso>
*i18n
<dminuoso>
cryingfreeman: For i18n there are a multitude of gems and packages available. For rails you could look into rails-i18n.
ZMo__ has quit [Quit: Leaving]
JeanCarloMachado has quit [Ping timeout: 245 seconds]
nankyokusei has joined #ruby
JeanCarloMachado has joined #ruby
GinoMan has quit [Ping timeout: 246 seconds]
KeyJoo has quit [Remote host closed the connection]
Silox| has joined #ruby
spiette_ has joined #ruby
nankyokusei has quit [Ping timeout: 272 seconds]
konsolebox has joined #ruby
horst has quit [Quit: horst]
bmurt has joined #ruby
mim1k has joined #ruby
GinoMan has joined #ruby
synthroid has joined #ruby
yogg-saron has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
GinoMan2440 has joined #ruby
hashrocket has joined #ruby
synthroi_ has joined #ruby
GinoMan has quit [Ping timeout: 260 seconds]
interki has joined #ruby
interki has quit [Client Quit]
synthroid has quit [Ping timeout: 240 seconds]
synthroi_ has quit [Read error: No route to host]
xall_ has joined #ruby
synthroid has joined #ruby
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
bmurt has joined #ruby
millerti has joined #ruby
ledestin has quit [Read error: Connection reset by peer]
millerti has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
synthroi_ has joined #ruby
pankaj_ has joined #ruby
ledestin has joined #ruby
synthroid has quit [Ping timeout: 240 seconds]
jenrzzz has joined #ruby
anisha has quit [Quit: This computer has gone to sleep]
minimalism has quit [Quit: minimalism]
jenrzzz has quit [Ping timeout: 260 seconds]
minimalism has joined #ruby
spiette_ has quit [Ping timeout: 240 seconds]
houhoulis has quit [Remote host closed the connection]
Vingador has joined #ruby
pankaj_ has quit [Ping timeout: 240 seconds]
HoierM has joined #ruby
Archrover has joined #ruby
oleo has joined #ruby
<cryingfreeman>
dminuoso, sorry for a late reply, but thanks for your help :) I'll post the question in the right channel!
<dminuoso>
Don't worry, we expect patience from the folks that come in here, it's only fair to be patient outselves.
pratch has quit [Remote host closed the connection]
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
pratch has joined #ruby
synthroid has joined #ruby
mim1k has quit [Ping timeout: 240 seconds]
mim1k has joined #ruby
millerti has joined #ruby
pankaj_ has joined #ruby
synthroi_ has quit [Ping timeout: 260 seconds]
pratch has quit [Max SendQ exceeded]
nertzy has joined #ruby
pratch has joined #ruby
dviola has joined #ruby
yogg-saron has joined #ruby
mim1k has quit [Ping timeout: 260 seconds]
<kke>
args = args.first if args.first.is_a?(Array) <-- i find myself doing a lot of something like this with methods that take splats
<kke>
maybe i'm doing it wrong.
yogg-saron has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
yogg-saron has joined #ruby
ramortegui has joined #ruby
yogg-saron has quit [Client Quit]
cam27 has joined #ruby
<ljarvis>
kke: sounds like bad documentation :)
bgray has joined #ruby
<ljarvis>
foo([1,2,3], 4) # here you'll ignore 4
<ljarvis>
if you want args to be [1,2,3,4] there, then you want to just args.flatten(1)
andrew9184 has joined #ruby
<ljarvis>
but really you should just accept either foo([1,2,3,4]) or foo(1,2,3,4)
fmcgeough has joined #ruby
<canton7>
yeah, the caller can splat / convert to array as necessary to match your method
bmurt has joined #ruby
<andrew9184>
i need to do recursion with a json array, what’s the valid constructor to use in the argument? ie get_items(nextpage, jsonArray= ?)
<ljarvis>
andrew9184: could you elaborate? in Ruby, what is your json array? is it json, or a ruby array?
rodd has joined #ruby
<andrew9184>
it’s a faraday response. which i assume i need to parse into a json array
<andrew9184>
it’s from a json api
<ljarvis>
right, JSON.parse(json) is what you want, then
<ljarvis>
faraday probably has some sort of auto-parsing, but I'm not sure
<rodd>
I'm trying to set the value of a variable to a return from a shell command in rake, i.e.: composer = execute('which composer'), what's the right way to do this?
<andrew9184>
hmm, but i think faraday has a middleware that attaches to response.body such that you can do response.body.to_json
<rodd>
to the return value*
<ljarvis>
rodd: x = `cmd`
<rodd>
ljarvis: nice, let me try
<rodd>
thanks
cryingfreeman has quit [Ping timeout: 240 seconds]
cdg has joined #ruby
jane_booty_doe has joined #ruby
dionysus69 has quit [Ping timeout: 240 seconds]
rippa has joined #ruby
quobo has quit [Quit: Connection closed for inactivity]
AlexRussia has quit [Ping timeout: 240 seconds]
cfec0b8d has quit [Ping timeout: 255 seconds]
govg has joined #ruby
alazred has joined #ruby
alazred has joined #ruby
alazred has quit [Changing host]
Rodya_ has joined #ruby
rodd has left #ruby [#ruby]
vircung has joined #ruby
nertzy has quit [Ping timeout: 240 seconds]
Rodya_ has quit [Ping timeout: 245 seconds]
last_staff has quit [Quit: last_staff]
DLSteve has joined #ruby
charliesome has joined #ruby
jenrzzz has joined #ruby
chouhoulis has joined #ruby
jrafanie has joined #ruby
ZMo__ has joined #ruby
chouhoulis has quit [Remote host closed the connection]
jenrzzz has quit [Ping timeout: 264 seconds]
Hunter1_ has quit [Remote host closed the connection]
ledestin has quit [Read error: Connection reset by peer]
Hunter1_ has joined #ruby
ledestin has joined #ruby
mim1k has joined #ruby
synthroi_ has joined #ruby
fmccann has joined #ruby
konsolebox has quit [Ping timeout: 268 seconds]
synthroid has quit [Ping timeout: 258 seconds]
vali has quit [Ping timeout: 240 seconds]
patarr has joined #ruby
segy has quit [Ping timeout: 255 seconds]
pankaj_ has quit [Ping timeout: 268 seconds]
cfec0b8d has joined #ruby
pankaj_ has joined #ruby
renchan has quit [Quit: Leaving...]
segy has joined #ruby
rdw200169__ has quit [Read error: Connection reset by peer]
rdw200169__ has joined #ruby
synthroi_ has quit [Remote host closed the connection]
dar123 has joined #ruby
ledestin has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
nankyokusei has joined #ruby
synthroid has joined #ruby
A124 has quit [Ping timeout: 240 seconds]
synthroi_ has joined #ruby
synthroi_ has quit [Remote host closed the connection]
nankyokusei has quit [Ping timeout: 245 seconds]
synthroi_ has joined #ruby
synthroi_ has quit [Remote host closed the connection]
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
bauruine has joined #ruby
cfec0b8d has quit [Ping timeout: 260 seconds]
bsartek has quit [Quit: This computer has gone to sleep]
Rodya_ has joined #ruby
bsartek has joined #ruby
cfec0b8d has joined #ruby
last_staff has joined #ruby
chouhoulis has joined #ruby
patr0clus has joined #ruby
oded has quit [Remote host closed the connection]
oded has joined #ruby
ltem has joined #ruby
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
shinnya has joined #ruby
ioquatix has quit [Quit: ioquatix]
theunraveler has joined #ruby
patr0clus has quit [Quit: tempusfugit]
duderonomy has joined #ruby
rakm has joined #ruby
SteenJobs has joined #ruby
pankaj_ has quit [Ping timeout: 272 seconds]
thoolihan has left #ruby ["Leaving"]
pandaant has quit [Remote host closed the connection]
ryzokuken has quit [Quit: Connection closed for inactivity]
chouhoulis has quit [Remote host closed the connection]
blackwind_123 has quit [Ping timeout: 240 seconds]
chouhoulis has joined #ruby
blackwind_123 has joined #ruby
jamesaxl has joined #ruby
bkxd has quit [Ping timeout: 264 seconds]
SteenJobs has quit [Quit: SteenJobs]
GinoMan1423 has joined #ruby
conta has quit [Ping timeout: 240 seconds]
tetsu has quit [Ping timeout: 268 seconds]
ioquatix has joined #ruby
GinoMan2440 has quit [Ping timeout: 240 seconds]
GinoMan2440 has joined #ruby
GodFather has joined #ruby
cam27 has joined #ruby
aufi has quit [Quit: Leaving]
bauruine has quit [Read error: Connection reset by peer]
bauruine has joined #ruby
GinoMan1423 has quit [Ping timeout: 260 seconds]
mim1k has quit [Ping timeout: 260 seconds]
agit0 has quit [Read error: Connection reset by peer]
GodFather has quit [Read error: Connection reset by peer]
GodFather has joined #ruby
Lucky_ABA has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
cam27 has quit [Ping timeout: 260 seconds]
nhhc has joined #ruby
hobodave has joined #ruby
ruppdog has joined #ruby
valkyrka has joined #ruby
cschneid_ has joined #ruby
Beams_ has joined #ruby
<valkyrka>
hi guys, I’m struggling with a regex and I can’t seem to get it right, I have the strings - ‘test-valkyrka-web-croncom’ and ‘test-valkyrka-web-cronuk’ what regex should I use to match cron*?
Beams has quit [Ping timeout: 260 seconds]
Burgestrand has quit [Quit: Closing time!]
laekur has quit [Quit: Peace]
<valkyrka>
aaaaand I found it, lol
<valkyrka>
thanks anyway guys :)
valkyrka has quit [Client Quit]
xall_ has quit [Read error: Connection reset by peer]
unsymbol_ has quit [Quit: cheerio]
ZMo__ has quit [Quit: Leaving]
Beams has joined #ruby
unsymbol has joined #ruby
andikr has quit [Remote host closed the connection]
ascarter has quit [Remote host closed the connection]
ascarter has joined #ruby
Beams has quit [Ping timeout: 255 seconds]
__Yiota has joined #ruby
raspado has joined #ruby
brent__ has joined #ruby
nhhc has quit [Quit: Leaving]
mim1k has joined #ruby
cam27 has joined #ruby
xall_ has joined #ruby
jenrzzz has joined #ruby
dx7 has joined #ruby
pratch has quit [Remote host closed the connection]
pratch has joined #ruby
rakm has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
jenrzzz has quit [Ping timeout: 258 seconds]
jrafanie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jrafanie has joined #ruby
pratch has quit [Max SendQ exceeded]
jrafanie has quit [Client Quit]
milardovich has joined #ruby
pratch has joined #ruby
Amoeba_ has joined #ruby
polishdub has joined #ruby
flying has quit []
duderonomy has quit [Ping timeout: 255 seconds]
[Butch] has joined #ruby
TomyWork has quit [Remote host closed the connection]
Rodya_ has quit [Remote host closed the connection]
amclain has joined #ruby
jane_booty_doe has quit [Quit: Leaving]
milardovich has quit [Read error: Connection reset by peer]
quobo has joined #ruby
dar123 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ioquatix has quit [Quit: ioquatix]
tetsu has joined #ruby
mikecmpbll has quit [Ping timeout: 260 seconds]
nowhereman has quit [Ping timeout: 264 seconds]
mim1k has quit [Ping timeout: 240 seconds]
Vingador_ has joined #ruby
dar123 has joined #ruby
rakm has joined #ruby
tildes has joined #ruby
xall_ has quit [Ping timeout: 260 seconds]
Vingador has quit [Ping timeout: 264 seconds]
hobodave has quit [Quit: Computer has gone to sleep.]
Vingador has joined #ruby
mim1k has joined #ruby
oleo has quit [Quit: irc client terminated!]
Vingador_ has quit [Ping timeout: 264 seconds]
TomyLobo has joined #ruby
rkazak has joined #ruby
milardovich has joined #ruby
hobodave has joined #ruby
Vingador_ has joined #ruby
Vingador has quit [Ping timeout: 264 seconds]
milardovich has quit [Ping timeout: 260 seconds]
KeyJoo has joined #ruby
hobodave_ has joined #ruby
hobodave has quit [Ping timeout: 264 seconds]
A124 has joined #ruby
jrafanie has joined #ruby
aupadhye has quit [Ping timeout: 272 seconds]
Hunter1_ has quit [Remote host closed the connection]
gusrub has joined #ruby
Rodya_ has joined #ruby
Hunter1_ has joined #ruby
Vingador_ has quit [Remote host closed the connection]
GinoMan has joined #ruby
Silthias2 has left #ruby [#ruby]
mim1k has quit [Ping timeout: 264 seconds]
dar123 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Burgestrand has joined #ruby
txjoe_ has joined #ruby
pupsicle has joined #ruby
GinoMan2440 has quit [Ping timeout: 260 seconds]
Rodya_ has quit [Ping timeout: 268 seconds]
nitric has joined #ruby
shinnya has quit [Ping timeout: 260 seconds]
txjoe_ has quit [Client Quit]
tomphp has joined #ruby
dar123 has joined #ruby
Silox| has quit [Quit: Connection closed for inactivity]
HoierM has quit [Ping timeout: 240 seconds]
davidmichaelkarr has joined #ruby
starmix has quit [Quit: WeeChat 1.7.1]
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dcunit3d has quit [Ping timeout: 260 seconds]
Beams_ has quit [Quit: .]
duderonomy has joined #ruby
gothicsouth has joined #ruby
dar123 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
xall_ has joined #ruby
dacod has joined #ruby
AndBobsYourUncle has joined #ruby
<patarr>
Hello - why does an error thrown when I do enumerator.next only have a one line stack trace? I have no idea where to start debugging this issue
dar123 has joined #ruby
AndBobsYourUncle has quit [Ping timeout: 240 seconds]
<ljarvis>
there's lot of stuff that can be used on Array that's inside Enumerable
milardovich has quit [Remote host closed the connection]
<ljarvis>
best to glance over that
<baweaver>
definitely worth a few looks over
<xco>
baweaver: yeap…
<baweaver>
it's probably one of my most read documentation sections
ascarter has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<ljarvis>
because it can be used on Hash also
<baweaver>
and any other collection that implements it
<ljarvis>
and other stuff (e.g. your own custom classes can include Enumerable and merely implement #each)
milardovich has joined #ruby
<baweaver>
^
milardov_ has joined #ruby
khronos has quit [Ping timeout: 258 seconds]
milardovich has quit [Ping timeout: 240 seconds]
ltem has quit [Quit: Leaving]
khronos has joined #ruby
ascarter has joined #ruby
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
Rodya_ has joined #ruby
lagweezle_away is now known as lagweezle
Rodya_ has quit [Ping timeout: 255 seconds]
anisha has joined #ruby
mostlybadfly has quit [Quit: Connection closed for inactivity]
Dimik has joined #ruby
jaruga has quit [Quit: jaruga]
rdackam has joined #ruby
rdackam is now known as evenix
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
oleo has joined #ruby
jenrzzz has quit [Ping timeout: 240 seconds]
andrew9184 has quit [Quit: andrew9184]
andrew9184 has joined #ruby
tomphp has joined #ruby
<evenix>
Would it be a good thing to use a class variable to store an Object that will be accessible to every subclass; but where the value might need to be updated when the parent context changes?
ascarter has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
PatrikasZvaigzde has quit [Ping timeout: 240 seconds]
PatrikasZvaigzde has joined #ruby
ruppdog has quit [Remote host closed the connection]
khronos has quit [Ping timeout: 240 seconds]
xall_ has quit [Ping timeout: 240 seconds]
brent__ has quit [Remote host closed the connection]
khronos has joined #ruby
brent__ has joined #ruby
anomaly has joined #ruby
haylon has joined #ruby
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
gothicsouth has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
cdg has quit [Remote host closed the connection]
mostlybadfly has joined #ruby
khronos has quit [Ping timeout: 272 seconds]
Burgestrand has quit [Quit: Closing time!]
VladGh_ has quit [Remote host closed the connection]
VladGh has joined #ruby
workmad3 has quit [Ping timeout: 240 seconds]
Renich has joined #ruby
bmurt has joined #ruby
workmad3 has joined #ruby
khronos has joined #ruby
<anomaly>
using books like The well grounded Rubyist and Ruby from Beginner to Professional cite 1.8/9. will that translate with current Ruby or best to find another book?
<matthewd>
I'd say 1.9 should be near enough, with a few missing features; 1.8 you're more likely to see things that are actively different
<anomaly>
thank you.
Bock has quit [Read error: Connection reset by peer]
haylon has quit [Ping timeout: 272 seconds]
VladGh has quit [Remote host closed the connection]
VladGh has joined #ruby
ascarter has joined #ruby
haylon has joined #ruby
marxarelli|afk is now known as marxarelli
ledestin has joined #ruby
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ascarter has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
gothicsouth has joined #ruby
jgnagy has quit []
hobodave_ has quit [Ping timeout: 255 seconds]
hobodave has joined #ruby
bmurt has joined #ruby
jusa has quit [Ping timeout: 240 seconds]
jrafanie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jrafanie has joined #ruby
tvw has quit [Remote host closed the connection]
Lucky_ABA has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
bkxd has joined #ruby
lxsameer has joined #ruby
haylon has quit [Ping timeout: 255 seconds]
vircung has quit [Ping timeout: 260 seconds]
anisha has quit [Quit: Leaving]
ascarter has joined #ruby
gheegh has quit [Ping timeout: 240 seconds]
__Yiota has quit [Ping timeout: 255 seconds]
bkxd has quit [Ping timeout: 268 seconds]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
haylon has joined #ruby
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mikecmpbll has joined #ruby
milardov_ has quit []
patr0clus has joined #ruby
hobodave has quit [Quit: Computer has gone to sleep.]
milardovich has joined #ruby
Lucky_ABA has joined #ruby
__Yiota has joined #ruby
gizmore|2 is now known as gizmore
hobodave has joined #ruby
haylon has quit [Ping timeout: 272 seconds]
dionysus69 has joined #ruby
jackjackdripper has joined #ruby
dar123 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
tetsu_ has joined #ruby
<baweaver>
anomaly: see the channel topic
mim1k has joined #ruby
<baweaver>
we hid a booklist up there
sspreitz has quit [Ping timeout: 260 seconds]
tetsu has quit [Ping timeout: 240 seconds]
haylon has joined #ruby
webopsx has joined #ruby
<anomaly>
baweaver, I had seen it yes. problem was the books I could have at hand were using 1.8/9 which prompted my question.
<baweaver>
fair fair, figured I'd mention it
webopsx has quit [Client Quit]
BTRE has quit [Ping timeout: 240 seconds]
Rodya_ has joined #ruby
mim1k has quit [Ping timeout: 240 seconds]
sspreitz has joined #ruby
Rodya_ has quit [Ping timeout: 260 seconds]
jrafanie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Hunter1_ has quit [Remote host closed the connection]
Xiti has quit [Quit: Xiti]
ahrs has quit [Remote host closed the connection]
Rodya_ has joined #ruby
Hunter1_ has joined #ruby
ahrs has joined #ruby
cryingfreeman has joined #ruby
cryingfreeman is now known as Guest11768
BTRE has joined #ruby
Xiti has joined #ruby
JeanCarloMachado has quit [Ping timeout: 268 seconds]
JeanCarloMachado has joined #ruby
alazred has quit [Ping timeout: 240 seconds]
haylon has quit [Ping timeout: 255 seconds]
<anomaly>
baweaver, kind of you to do so. thank you.
vuoto has quit [Remote host closed the connection]
gothicsouth has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
haylon has joined #ruby
tomphp has quit [Read error: Connection reset by peer]
gothicsouth has joined #ruby
dar123 has joined #ruby
rkazak has quit [Quit: Sleep.....ing....]
enterprisey has joined #ruby
bgray has quit [Quit: Page closed]
jenrzzz has quit [Ping timeout: 240 seconds]
workmad3 has quit [Ping timeout: 240 seconds]
cdg has joined #ruby
ascarter has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
pupsicle has quit [Quit: pupsicle]
pupsicle has joined #ruby
d5sx43 has joined #ruby
d5sx43 has quit [Client Quit]
workmad3 has joined #ruby
xdexter has joined #ruby
<xdexter>
Hello, i'm trying use a script to download a log file with aws api but i have a error when i run, https://pastebin.com/4VWEXgQk, someone can help me please?