<yorickpeterse>
headius: No, the only ones I see involve the AWS SDK in a production app :/
bruno- has joined #ruby-lang
charliesome has quit [Quit: zzz]
bruno- has quit [Ping timeout: 265 seconds]
Perdomo has joined #ruby-lang
tkuchiki has joined #ruby-lang
Perdomo has quit [Ping timeout: 240 seconds]
Ropeney has quit [Remote host closed the connection]
allomov has quit [Remote host closed the connection]
arBmind has quit [*.net *.split]
nux443 has quit [*.net *.split]
ec2-user_ has quit [*.net *.split]
ir2ivps3 has quit [*.net *.split]
jhass has quit [*.net *.split]
Xzyx987X has quit [*.net *.split]
bennyklo1z has quit [*.net *.split]
oddmunds has quit [*.net *.split]
lucas has quit [*.net *.split]
jtoy_ has quit [*.net *.split]
arBmind has joined #ruby-lang
nux443 has joined #ruby-lang
ec2-user_ has joined #ruby-lang
ir2ivps3 has joined #ruby-lang
lucas has joined #ruby-lang
jtoy_ has joined #ruby-lang
jhass has joined #ruby-lang
bennyklo1z has joined #ruby-lang
oddmunds has joined #ruby-lang
Xzyx987X has joined #ruby-lang
charliesome has joined #ruby-lang
workmad3 has joined #ruby-lang
futilegames has joined #ruby-lang
workmad3 has quit [Quit: Lost terminal]
allomov has joined #ruby-lang
workmad3 has joined #ruby-lang
Muz_ is now known as Muz
ryba_ has quit [Ping timeout: 272 seconds]
auzty has quit [Remote host closed the connection]
sgambino has joined #ruby-lang
alebiavati has joined #ruby-lang
cornerma1 has joined #ruby-lang
skade has quit [Quit: Computer has gone to sleep.]
chinmay_dd has quit [Ping timeout: 272 seconds]
dhjondoh has quit [Remote host closed the connection]
cornerman has quit [Ping timeout: 240 seconds]
cornerma1 is now known as cornerman
bruno- has joined #ruby-lang
DonGroh69 has quit [Ping timeout: 245 seconds]
skade has joined #ruby-lang
bruno- has quit [Ping timeout: 246 seconds]
ryba_ has joined #ruby-lang
nofxx_ has joined #ruby-lang
charliesome has quit [Quit: zzz]
nofxx has quit [Ping timeout: 244 seconds]
ur5us has joined #ruby-lang
dorei has joined #ruby-lang
joey_ has quit []
ryba_ has quit [Remote host closed the connection]
skade has quit [Quit: Computer has gone to sleep.]
charliesome has joined #ruby-lang
rbowlby has joined #ruby-lang
nofxx_ has quit [Remote host closed the connection]
symm- has quit [Ping timeout: 256 seconds]
skade has joined #ruby-lang
rbowlby has quit [Ping timeout: 240 seconds]
hendranata_ has quit [Ping timeout: 256 seconds]
fusillicode1 has joined #ruby-lang
fusillicode has quit [Ping timeout: 250 seconds]
skade has quit [Read error: Connection reset by peer]
Ropeney has joined #ruby-lang
charliesome has quit [Quit: zzz]
skade has joined #ruby-lang
Ropeney has quit [Client Quit]
ruby-lang229 has joined #ruby-lang
skade has quit [Read error: Connection reset by peer]
skade has joined #ruby-lang
<ruby-lang229>
hi
<apeiros>
hi
<ruby-lang229>
Please sugggest me a gud book for ruby on rails
<ruby-lang229>
im already familiar with ruby
skade has quit [Client Quit]
<tobiasvl>
ruby-lang229: try #rubyonrails
loveablelobster has joined #ruby-lang
<ruby-lang229>
author?
<tobiasvl>
it's an IRC channel, not a book
<ruby-lang229>
oh...Okay...Thank you <tobiasvl>
martinbmadsen has quit [Ping timeout: 272 seconds]
ruby-lang229 has quit [Ping timeout: 246 seconds]
rikkipitt has joined #ruby-lang
sarkyniin has joined #ruby-lang
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
futilegames has quit [Quit: futilegames]
banister has joined #ruby-lang
alebiavati has quit []
sgambino has quit [Ping timeout: 246 seconds]
sarkyniin has quit [Ping timeout: 245 seconds]
sarkyniin has joined #ruby-lang
ArchRogem has joined #ruby-lang
dhjondoh has joined #ruby-lang
Mon_Ouie has joined #ruby-lang
jacaballero has joined #ruby-lang
ur5us has quit [Remote host closed the connection]
valeri_ufo has joined #ruby-lang
rikkipit_ has joined #ruby-lang
jacaballero has quit [Client Quit]
fusillicode1 has quit [Ping timeout: 244 seconds]
nwhirschfeld has joined #ruby-lang
rikkipit_ has quit [Remote host closed the connection]
rikkipitt has quit [Ping timeout: 256 seconds]
fusillicode1 has joined #ruby-lang
skade has joined #ruby-lang
futilegames has joined #ruby-lang
skade has quit [Quit: Computer has gone to sleep.]
bruno- has joined #ruby-lang
bruno- is now known as Guest68446
lightpath has joined #ruby-lang
<lightpath>
Hi, is there a way to declare a variable without assignment in Ruby?
<lightpath>
I want to do something like x ... def read_config x = config.readline() end
skade has joined #ruby-lang
<ledestin>
lightpath w/o assignment it would be use
<ledestin>
and since it's not declared, you'd get an error
skade has quit [Client Quit]
<ledestin>
you don't have to declare object fields though
ldnunes has joined #ruby-lang
chinmay_dd has joined #ruby-lang
<yorickpeterse>
lightpath: No
<yorickpeterse>
The closest you can do is `x = nil`
rikkipitt has joined #ruby-lang
<yorickpeterse>
Also, you can't assign local variables in a method if they are defined outside a method
<yorickpeterse>
since they are, well, local variables
<yorickpeterse>
In such a case it's best to just do `x = read_config`
<yorickpeterse>
and have `read_config` return `config.readline`
cryptarium has quit [Ping timeout: 264 seconds]
<lightpath>
OK, so what would be the idiomatic Ruby way if I want to keep the variables x,y,z, ... in local scope for use throughout the program but assign them inside a function for readability?
cryptarium has joined #ruby-lang
skade has joined #ruby-lang
skade has quit [Client Quit]
<yorickpeterse>
You just re-assign them in the local scope using the return value of said methods
<yorickpeterse>
There's nothing wrong with that
<lightpath>
But then if read_config opens and closes a file won't that be really inefficient since it will repeat the work many times?
<ledestin>
lightpath what about class fields? they are in the instance scope. you seem to be thinking in a language like C
<yorickpeterse>
You can use arguments to pass in whatever data needs to be re-used
riffraff has quit [Quit: Leaving]
matkoniecz has joined #ruby-lang
ledestin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<lightpath>
yorickpeterse: Is there a way to pass in a config file without making that config file a local variable? I am trying to keep all of my logic within functions which is what motivated the original question
Mon_Ouie has quit [Ping timeout: 276 seconds]
<matkoniecz>
How can I found maximum allowed file name legth? One solution would be to hardcode it, but it would be ugly.
<matkoniecz>
My script calls external tool with a filename as parameter. External tool will crash if file name legth is longer than allowed.
<tobiasvl>
so you want to find the maximum allowed filename length from the external tool?
<tobiasvl>
or what do you mean
<matkoniecz>
tobiasvl: No, I want to find a good way to get maximum allowed filename length in a given folder.
<matkoniecz>
Is there one?
<tobiasvl>
oh, so you want to ask the file system what its maximum length is?
<ruby-lang094>
oh...in that case can u suggest me some other book
<yorickpeterse>
can't think of any from the top of my head
Voker57 has joined #ruby-lang
kfpratt has joined #ruby-lang
<ruby-lang094>
Thank you very much <yorickpeterse>
kfpratt has quit [Remote host closed the connection]
sepp2k has joined #ruby-lang
imperator2 has joined #ruby-lang
kfpratt has joined #ruby-lang
Voker57 has quit [Remote host closed the connection]
tomaz_b has quit [Ping timeout: 272 seconds]
Voker57 has joined #ruby-lang
joaomdmoura has joined #ruby-lang
allomov has joined #ruby-lang
gambl0re has joined #ruby-lang
chouhoulis has joined #ruby-lang
chouhoulis has quit [Remote host closed the connection]
chouhoulis has joined #ruby-lang
k3asd`_ has joined #ruby-lang
k3asd` has quit [Ping timeout: 276 seconds]
Voker57 has quit [Remote host closed the connection]
jas02 has quit [Quit: jas02]
whippythellama has joined #ruby-lang
Voker57 has joined #ruby-lang
joaomdmoura has quit [Remote host closed the connection]
Voker57|2 has joined #ruby-lang
allomov has quit [Remote host closed the connection]
Voker57 has quit [Ping timeout: 246 seconds]
agarie has joined #ruby-lang
allomov has joined #ruby-lang
caseypatrickdris has joined #ruby-lang
k3asd`_ has quit [Quit: leaving]
k3asd` has joined #ruby-lang
allomov has quit [Ping timeout: 252 seconds]
ogpastaling has joined #ruby-lang
k3asd` has quit [Client Quit]
woodruffw has quit [Quit: And then he took off.]
allomov has joined #ruby-lang
riotjone_ has quit [Remote host closed the connection]
robbyoconnor has joined #ruby-lang
futilegames has quit [Quit: futilegames]
tkuchiki has quit [Remote host closed the connection]
tkuchiki has joined #ruby-lang
tkuchiki has quit [Remote host closed the connection]
skade has quit [Quit: Computer has gone to sleep.]
rbowlby has joined #ruby-lang
kalopsian has quit [Quit: leaving]
rbowlby has quit [Ping timeout: 264 seconds]
johnjansen has joined #ruby-lang
robbyoconnor has quit [Read error: Connection reset by peer]
banister has joined #ruby-lang
banister has quit [Max SendQ exceeded]
banister has joined #ruby-lang
rippa has joined #ruby-lang
joaomdmoura has joined #ruby-lang
RobertBirnie has joined #ruby-lang
johnjansen has quit [Quit: johnjansen]
momomomomo has joined #ruby-lang
Zen-Zen has joined #ruby-lang
that1guy has joined #ruby-lang
solars has quit [Ping timeout: 256 seconds]
RobertBirnie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
joaomdmoura has quit [Read error: Connection reset by peer]
joaomdmoura has joined #ruby-lang
slawrence00 has joined #ruby-lang
k3asd` has joined #ruby-lang
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
symm- has joined #ruby-lang
|jemc| has joined #ruby-lang
rcvalle has joined #ruby-lang
unreal_ is now known as unreal
joaomdmoura has quit [Ping timeout: 256 seconds]
nertzy has joined #ruby-lang
stan has quit [Ping timeout: 256 seconds]
Voker57|2 has quit [Read error: Connection reset by peer]
riotjones has joined #ruby-lang
jhn has joined #ruby-lang
joaomdmoura has joined #ruby-lang
riotjones has quit [Ping timeout: 240 seconds]
nertzy has quit [Quit: This computer has gone to sleep]
slacker1 has joined #ruby-lang
<slacker1>
!ask
<slacker1>
.ask
<slacker1>
.bots
<slacker1>
!ask
robbyoconnor has joined #ruby-lang
<yorickpeterse>
syntax error
<slacker1>
wut
<yorickpeterse>
does not compute
<yorickpeterse>
please provide valid input
slacker1 is now known as slackr
slackr is now known as slackR
<slackR>
yorickpeterse: code please
<yorickpeterse>
raise 'does not compute'
johnnymo_ has joined #ruby-lang
<johnnymo_>
hi, quick question: my Heroku app keeps opening database connections, I can't figure out why. It's Cedar 10 stack, ruby 2.1.4, rails 3.2.11 and puma 2.11.2 with 3 workers and 1 thread. Any ideas on how I can trace this?
<slackR>
yorickpeterse: you only have one line in your ruby file ?
alestuber has joined #ruby-lang
<yorickpeterse>
yes
<slackR>
it should be showing runtime error
<slackR>
actually
<slackR>
yorickpeterse: try running that in irb.
<slackR>
tell me what you get
<yorickpeterse>
Default error is RuntimeError, so that would be correct
rikkipitt has quit [Remote host closed the connection]
<slackR>
did you check in irb?
__butch__ has joined #ruby-lang
<yorickpeterse>
I'm too lazy, but I can guarantee you you'll get a RuntimeError
Iskarlar has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
senor_jalapeno has joined #ruby-lang
rikkipitt has joined #ruby-lang
<slackR>
yorickpeterse: if you are too lazy to do it yourself and you want to test whether we know it or dont. Dont ask Questions.
<slackR>
-_-
<slackR>
:s/dont/not/
<yorickpeterse>
Excuse me?
<yorickpeterse>
Where exactly did I ask any questions?
rikkipitt has quit [Client Quit]
dabradley has quit [Quit: WeeChat 0.4.2]
<slackR>
yorickpeterse: read above.
<slackR>
then what were you trying to prove.
dabradley has joined #ruby-lang
<yorickpeterse>
slackR: where exactly did I ask a question?
<slackR>
you said raise 'does not compute' gives syntax error
dabradley has quit [Client Quit]
<yorickpeterse>
Also I figured you'd realize my "does not compute" reply was a joke, but time and time again am I reminded IRC does not really understand humor
<yorickpeterse>
slackR: Yes, that's not a question
meekalpha has joined #ruby-lang
michaeldeol has joined #ruby-lang
<yorickpeterse>
And I don't have to test that in IRB, it's defined behaviour of how Ruby's "raise" behaves if you don't give it an explicit exception class
dabradley has joined #ruby-lang
<slackR>
yorickpeterse: lel, I misunderstood. Sorry
dabradley has quit [Client Quit]
<slackR>
..
<slackR>
I though you were askin a problem that you were facing
ash__ has joined #ruby-lang
dabradley has joined #ruby-lang
<slackR>
and you didnt care to check it in irb. So that really pissed me off
dabradley has quit [Client Quit]
dabradley has joined #ruby-lang
harly has quit [Read error: Connection reset by peer]
<slackR>
yorickpeterse: bye. :^)
slackR has left #ruby-lang ["WeeChat 1.1.1"]
k3asd`_ has joined #ruby-lang
tenderlove has joined #ruby-lang
k3asd` has quit [Ping timeout: 246 seconds]
joaomdmoura has quit [Read error: Connection reset by peer]
joaomdmoura has joined #ruby-lang
jacaballero has joined #ruby-lang
djbkd has quit [Remote host closed the connection]
rbowlby has joined #ruby-lang
bb010g has quit [Quit: Connection closed for inactivity]
johnnymo_ has quit [Quit: Page closed]
shazaum has joined #ruby-lang
banister has joined #ruby-lang
ascarter has joined #ruby-lang
_djbkd has joined #ruby-lang
mikecmpbll has quit [Ping timeout: 255 seconds]
shazaum has quit [Changing host]
shazaum has joined #ruby-lang
joaomdmoura has quit [Read error: Connection reset by peer]
sarkyniin has quit [Ping timeout: 256 seconds]
delongG has joined #ruby-lang
joaomdmoura has joined #ruby-lang
allomov has quit [Remote host closed the connection]
ascarter has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
allomov has joined #ruby-lang
Mon_Ouie has joined #ruby-lang
mikecmpbll has joined #ruby-lang
k3asd`_ has quit [Ping timeout: 244 seconds]
joaomdmoura has quit [Read error: Connection reset by peer]
joaomdmoura has joined #ruby-lang
allomov has quit [Remote host closed the connection]
that1guy has quit [Quit: This computer has gone to sleep]
robbyoconnor has quit [Ping timeout: 265 seconds]
jacaballero has quit [Remote host closed the connection]
caseypatrickdris has quit [Remote host closed the connection]
someguy has joined #ruby-lang
jacaballero has joined #ruby-lang
RobertBirnie has joined #ruby-lang
shinnya has quit [Ping timeout: 264 seconds]
ta has joined #ruby-lang
chinmay_dd has quit [Ping timeout: 240 seconds]
woodruffw has joined #ruby-lang
woodruffw has quit [Remote host closed the connection]
someguy has quit [Quit: This computer has gone to sleep]
baweaver has joined #ruby-lang
djellemah has quit [Ping timeout: 272 seconds]
baweaver has quit [Remote host closed the connection]
baweaver has joined #ruby-lang
jhass has quit [Quit: Bye]
Almotasim has joined #ruby-lang
djellemah has joined #ruby-lang
Lloyd is now known as lloyd
stef204 has joined #ruby-lang
jhass has joined #ruby-lang
stef204 has quit [Client Quit]
jhass has quit [Ping timeout: 252 seconds]
joaomdmoura has quit [Read error: Connection reset by peer]
joaomdmoura has joined #ruby-lang
Almotasim has quit [Ping timeout: 245 seconds]
jhass has joined #ruby-lang
jacaballero is now known as jacm
ta has quit [Remote host closed the connection]
ta has joined #ruby-lang
ta has quit [Remote host closed the connection]
ta has joined #ruby-lang
dellavg_ has joined #ruby-lang
Almotasim has joined #ruby-lang
ruby-lang094 has quit [Ping timeout: 246 seconds]
bb010g has joined #ruby-lang
sarkyniin has joined #ruby-lang
ta has quit [Remote host closed the connection]
AugustoCesar has joined #ruby-lang
jacm has quit [Read error: Connection reset by peer]
jacaballero has joined #ruby-lang
ta has joined #ruby-lang
aaeron has joined #ruby-lang
jacaballero has quit [Remote host closed the connection]
hahuang65 has quit [Ping timeout: 256 seconds]
jacaballero has joined #ruby-lang
jhn has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
michaeldeol has quit [Ping timeout: 252 seconds]
nertzy has joined #ruby-lang
SylarRuby has joined #ruby-lang
ascarter has joined #ruby-lang
allomov has joined #ruby-lang
SylarRuby has quit [Remote host closed the connection]
michael_mbp has quit [Excess Flood]
michael_mbp has joined #ruby-lang
SylarRuby has joined #ruby-lang
chouhoul_ has joined #ruby-lang
<aaeron>
hi
<aaeron>
How do I run rspec
delongG has quit [Remote host closed the connection]
chouhoulis has quit [Ping timeout: 272 seconds]
martinbmadsen has joined #ruby-lang
ArchRogem has quit [Remote host closed the connection]
SylarRuby has quit []
delongG has joined #ruby-lang
djellemah has quit [Ping timeout: 276 seconds]
moretti has joined #ruby-lang
workmad3 has quit [Ping timeout: 255 seconds]
ogpastaling has quit [Remote host closed the connection]
Voker57 has joined #ruby-lang
AugustoCesar has quit [Quit: Leaving.]
hahuang65 has joined #ruby-lang
nertzy has quit [Quit: This computer has gone to sleep]
yfeldblum has joined #ruby-lang
bungoman has joined #ruby-lang
delongG has quit [Remote host closed the connection]
moretti has quit [Remote host closed the connection]
ascarter has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
SHyx0rmZ has quit [Remote host closed the connection]
SHyx0rmZ has joined #ruby-lang
DonGroh69 has left #ruby-lang ["ruby-lang"]
sunaku has joined #ruby-lang
duderonomy has quit [Ping timeout: 272 seconds]
ascarter has joined #ruby-lang
malconis has quit [Ping timeout: 272 seconds]
allomov has quit [Remote host closed the connection]
lotyrin has joined #ruby-lang
_djbkd has quit [Remote host closed the connection]
baweaver has joined #ruby-lang
bungoman has quit [Remote host closed the connection]
baweaver has quit [Remote host closed the connection]
workmad3 has quit [Ping timeout: 244 seconds]
cornerma1 has joined #ruby-lang
baweaver has joined #ruby-lang
Namaste_ has joined #ruby-lang
k3asd` has quit [Quit: leaving]
that1guy has joined #ruby-lang
cornerman has quit [Ping timeout: 255 seconds]
cornerma1 is now known as cornerman
ascarter_ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
k3asd` has joined #ruby-lang
Fooster has joined #ruby-lang
surrounder has quit [Ping timeout: 250 seconds]
yfeldblu_ has joined #ruby-lang
surrounder has joined #ruby-lang
yfeldblum has quit [Ping timeout: 256 seconds]
victortyau has quit [Quit: Leaving]
senor_jalapeno has joined #ruby-lang
Fooster has quit [Ping timeout: 256 seconds]
malconis has joined #ruby-lang
djbkd has joined #ruby-lang
lotyrin has left #ruby-lang [#ruby-lang]
__butch__ has quit [Quit: Leaving.]
Namaste_ has quit [Quit: You're a LOSER, and your dad probably beat you when you were a kid... which was probably two weeks ago]
Namaste_ has joined #ruby-lang
delongG_ has quit [Remote host closed the connection]
delongG has joined #ruby-lang
apt-get__ has joined #ruby-lang
malconis has quit [Ping timeout: 272 seconds]
apt-get_ has quit [Ping timeout: 256 seconds]
joaomdmoura has quit [Remote host closed the connection]
joaomdmoura has joined #ruby-lang
stardiviner has quit [Quit: Weird in coding now, or make love, only two things push me away from IRC.]
that1guy has quit [Ping timeout: 255 seconds]
delongG has quit [Remote host closed the connection]
stardiviner has joined #ruby-lang
shinnya has joined #ruby-lang
ascarter_ has joined #ruby-lang
joaomdmoura has quit [Remote host closed the connection]
joaomdmoura has joined #ruby-lang
delongG_ has joined #ruby-lang
moretti has quit [Quit: Leaving...]
that1guy has joined #ruby-lang
stardiviner has quit [Quit: Weird in coding now, or make love, only two things push me away from IRC.]
delongG_ has quit [Remote host closed the connection]
whippythellama has quit [Quit: whippythellama]
stardiviner has joined #ruby-lang
delongG has joined #ruby-lang
bertocode has quit [Quit: Nettalk6 - www.ntalk.de]
johnjansen has quit [Quit: johnjansen]
stardiviner has quit [Client Quit]
stardiviner has joined #ruby-lang
benanne has quit [Quit: kbai]
Voker57 has quit [Ping timeout: 264 seconds]
that1guy has quit [Ping timeout: 250 seconds]
joaomdmoura has quit [Ping timeout: 256 seconds]
joaomdmoura has joined #ruby-lang
k3asd` has quit [Ping timeout: 240 seconds]
izzimus has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
bungoman has joined #ruby-lang
johnjansen has joined #ruby-lang
bungoman has quit [Ping timeout: 265 seconds]
wallerdev has joined #ruby-lang
dvlwrk has joined #ruby-lang
chadwtaylor has quit [Remote host closed the connection]
jacaballero has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
skade has quit [Quit: Computer has gone to sleep.]
joaomdmoura has quit [Read error: Connection reset by peer]
joaomdmoura has joined #ruby-lang
delongG has quit [Read error: Connection reset by peer]
delongG_ has joined #ruby-lang
rails230 has joined #ruby-lang
rails230 has quit [Client Quit]
wallerdev has quit [Ping timeout: 240 seconds]
wallerdev_ has joined #ruby-lang
ruby-lang540 has joined #ruby-lang
ruby-lang540 has quit [Client Quit]
gambl0re has quit [Ping timeout: 264 seconds]
ogpastal_ has joined #ruby-lang
apt-get__ has quit [Quit: Quit]
johnjansen has quit [Ping timeout: 256 seconds]
ogpastaling has quit [Ping timeout: 244 seconds]
ogpastal_ has quit [Ping timeout: 256 seconds]
marr has quit [Ping timeout: 250 seconds]
that1guy has joined #ruby-lang
<zenspider>
baweaver: arel (I'm making some assumptions about the backlog) supports LIKE via visit_Arel_Nodes_Matches
<zenspider>
so... backtracking, via .matches
<baweaver>
I'll have to play with it
<baweaver>
I've been on an AR kick lately.
senor_jalapeno has quit [Ping timeout: 264 seconds]
<zenspider>
FINDING what you want is always the trick, but arel is fairly complete for sql generation... just not the esoteric relational calculus blahblah it used to want to be
dellavg_ has quit [Ping timeout: 264 seconds]
<baweaver>
I might make an extensions gem for it later.
<baweaver>
Still tempted to implement a count method
<baweaver>
such that
<baweaver>
User.group(:age).count
<baweaver>
becomes User.count(:age)
delongG_ has quit [Read error: Connection reset by peer]
delongG__ has joined #ruby-lang
workmad3 has joined #ruby-lang
baweaver has quit [Read error: Connection reset by peer]
toertore has quit [Quit: This computer has gone to sleep]
workmad3 has quit [Ping timeout: 256 seconds]
Guest68446 has quit [Ping timeout: 272 seconds]
charliesome has joined #ruby-lang
AlexAltea has quit [Ping timeout: 240 seconds]
chadwtaylor has joined #ruby-lang
yfeldblu_ has quit [Ping timeout: 256 seconds]
wallerdev_ has quit [Quit: wallerdev_]
rcvalle has quit [Quit: rcvalle]
bungoman has joined #ruby-lang
sunaku has quit [Ping timeout: 256 seconds]
aaeron has quit [Quit: aaeron]
bruno- has joined #ruby-lang
bungoman has quit [Ping timeout: 255 seconds]
chadwtaylor has quit [Remote host closed the connection]