apeiros changed the topic of #ruby-lang to: Ruby 2.1.5; 2.0.0-p598; 1.9.3-p551: http://ruby-lang.org || Paste code on http://gist.github.com
dfinninger has joined #ruby-lang
midhir_ has quit [Ping timeout: 245 seconds]
charliesome has joined #ruby-lang
midhir has joined #ruby-lang
sunaku has quit [Ping timeout: 258 seconds]
elia has quit [Quit: Computer has gone to sleep.]
mistym_ has joined #ruby-lang
mistym has quit [Disconnected by services]
mistym_ is now known as mistym
NoNMaDDeN has joined #ruby-lang
djbkd has quit [Quit: My people need me...]
hahuang61 has quit [Ping timeout: 265 seconds]
Mothore has joined #ruby-lang
NoNMaDDeN has quit [Remote host closed the connection]
pablocantero has joined #ruby-lang
dfinninger has quit [Remote host closed the connection]
pablocantero has quit [Read error: Connection reset by peer]
HACKING-FACEBOOK has quit [Ping timeout: 256 seconds]
rippa has quit [Ping timeout: 240 seconds]
saramic has quit [Remote host closed the connection]
dfinninger has joined #ruby-lang
saramic has joined #ruby-lang
matp_ has joined #ruby-lang
HACKING-FACEBOOK has joined #ruby-lang
matp has quit [Ping timeout: 245 seconds]
arooni-mobile has joined #ruby-lang
matp has joined #ruby-lang
HACKING-FACEBOOK has quit [Ping timeout: 272 seconds]
matp_ has quit [Ping timeout: 255 seconds]
benlovell has joined #ruby-lang
benlovell has quit [Ping timeout: 264 seconds]
emmesswhy has joined #ruby-lang
dabradley has quit [Ping timeout: 272 seconds]
charliesome has quit [Ping timeout: 256 seconds]
charliesome has joined #ruby-lang
j4cknewt has joined #ruby-lang
<arooni-mobile> hey folks; do i need to escape '='
<arooni-mobile> looks like this covers it
<waxjar> depends entirely on what you're trying to do arooni-mobile
<jhass> in other words
<jhass> context, context, context
<jhass> in ruby regexps you need to escape surprisingly few stuff, most people over escape
<arooni-mobile> this is great
<arooni-mobile> http://rubular.com/
dabradley has joined #ruby-lang
<arooni-mobile> hi folks; i have a string that looks like this: ... query=Rio+de+Janeiro+-+State+of+Rio+de+Janeiro%2C+Brazil&latitude=-22.9082998&longitude=-43.1970773 .. i want to take the lat and long out. here is my attempt that seems to match both; /latitude=-([\d.])*\&longitude=-([\d.])*/
<waxjar> does that come from a URL arooni-mobile?
<arooni-mobile> yeah
<womble> arooni-mobile: Run it through Rack::Utils.parse_query
<arooni-mobile> im pasting the part of it thats relavent
<womble> >> params = Rack::Utils.parse_query('query=Rio+de+Janeiro+-+State+of+Rio+de+Janeiro%2C+Brazil&latitude=-22.9082998&longitude=-43.1970773'); [params['latitude'], params['longitude']]
<eval-in__> womble => uninitialized constant Rack (NameError) ... (https://eval.in/226470)
<waxjar> use URI (it's in the stdlib)
<waxjar> uri = URI.parse("foo"); URI.decode_www_form(uri.query), i believe
<zenspider> I agree to use URI... but arooni-mobile still needs to learn regexps
<arooni-mobile> what version of ruby is that found in
<arooni-mobile> well i think my approach works; im sure its not the best
<zenspider> change )* -> *)
<waxjar> arooni-mobile: any version, really
<womble> zenspider: He also needs to learn to use the right tool for the job, though...
<zenspider> womble: totally agree
bmichelsen has joined #ruby-lang
<zenspider> but a programming w/o regexps? esp who has been in here for ... I dunno... 6+ years?
<arooni-mobile> occasional programmer
<zenspider> I'd also change -( -> (-
<womble> Oh yeah, regexps are like your text editor... if you don't know them, you can't be productive.
<womble> And you'll want to make the `-` optional, by appending a ?
<zenspider> oops. right. that too. I had that thought and then it slipped
<zenspider> I think I need food
<waxjar> bring some for me too :p
<womble> Also you only want to match `.` once, rather than an arbitrary number of times.
* womble just got his lunch, so he's operating at peak efficiency
<zenspider> what TZ are you in?
<womble> zenspider: Australia/Sydney
<zenspider> well... it's earlyish dinner time here (PDT)... later
<womble> Something more like (latitude|longitude)=(-?(\d+)+\.(\d+)+) would do the trick, just grab out $1 to know which you've got, and $2 to get the value.
<jhass> meh, globals
<jhass> String#[] ftw
<arooni-mobile> i thought that you could only extract stuff that you had inside () ...
<womble> >> 'query=Rio+de+Janeiro+-+State+of+Rio+de+Janeiro%2C+Brazil&latitude=-22.9082998&longitude=-43.1970773'.grep(/(latitude|longitude)=(-?(\d+)+\.(\d+)+)/).map { |e| [e[1], e[2]] }
Steve_Jobs has quit [Quit: WeeChat 0.4.2]
<eval-in__> womble => undefined method `grep' for #<String:0x40dc0e34> (NoMethodError) ... (https://eval.in/226472)
<arooni-mobile> so thats why i put the - outside the () because i didnt want it
<womble> BAH
* womble gives up trying to do it live
<womble> arooni-mobile: But... you *do* want it... it's part of the lat/long value
<womble> Otherwise you don't know which hemisphere you're in
<arooni-mobile> ah
<arooni-mobile> i didnt understand that
<arooni-mobile> i guess the - denotes n/s or w/e of
<womble> Yep.
<womble> s and w
j4cknewt has quit [Remote host closed the connection]
robbyoconnor has joined #ruby-lang
amsi has quit [Quit: Leaving]
<womble> Ah ha!
<womble> >> 'query=Rio+de+Janeiro+-+State+of+Rio+de+Janeiro%2C+Brazil&latitude=-22.9082998&longitude=-43.1970773'.scan(/(latitude|longitude)=(-?(\d+)+\.(\d+)+)/).reduce({}) { |h, e| h.tap { h[e[0]] = e[1] } }
<eval-in__> womble => {"latitude"=>"-22.9082998", "longitude"=>"-43.1970773"} (https://eval.in/226474)
Sirupsen has joined #ruby-lang
dfinninger has quit [Remote host closed the connection]
marr has quit [Ping timeout: 264 seconds]
mistym has quit [Remote host closed the connection]
<jhass> that's an .each_with_object
chouhoulis has quit [Ping timeout: 255 seconds]
ikrima has joined #ruby-lang
lewix has joined #ruby-lang
lewix has joined #ruby-lang
saramic has quit [Remote host closed the connection]
saramic has joined #ruby-lang
oleo has quit [Read error: Connection reset by peer]
oleo has joined #ruby-lang
Sirupsen has quit [Quit: Textual IRC Client: www.textualapp.com]
bf4 has joined #ruby-lang
<arooni-mobile> i like that h.tap function
<arooni-mobile> looks cleaner than my longitutde, latitutde = match[0], match[1]
<waxjar> seriously, use URI to parse URIs, you'll get a nice Hash back :)
<waxjar> and none of those weird escaping rules will trip you up
<arooni-mobile> hmmm i have ruby 1.9.3
<arooni-mobile> URI.parse("http://blah.com")
<arooni-mobile> unitinitlzied constant
<arooni-mobile> should i be running a more recent version of ruby?
<waxjar> it's in the stdlib, not in core :) require "uri" will make it work
<arooni-mobile> ah thanks
<jhass> >> ary = [1, 2, 3]; a, b = ary; "#{a}-#{b}"
<eval-in__> jhass => "1-2" (https://eval.in/226475)
robbyoconnor has quit [Quit: Konversation terminated!]
bf4 has quit [Ping timeout: 250 seconds]
vhlfd is now known as fd
j4cknewt has joined #ruby-lang
tkuchiki has joined #ruby-lang
mistym has joined #ruby-lang
Mothore has quit [Ping timeout: 240 seconds]
nofxx_ has quit [Ping timeout: 272 seconds]
mattyohe has quit [Quit: Connection closed for inactivity]
Mothore has joined #ruby-lang
tkuchiki has quit [Ping timeout: 258 seconds]
amclain has joined #ruby-lang
fd is now known as vhlfd
_fritchie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
|jemc| has joined #ruby-lang
_fritchie has joined #ruby-lang
threeifbywhiskey has joined #ruby-lang
shinnya has quit [Ping timeout: 244 seconds]
bf4 has joined #ruby-lang
lsegal has joined #ruby-lang
nofxx_ has joined #ruby-lang
nofxx_ has joined #ruby-lang
j4cknewt has quit [Remote host closed the connection]
dfinninger has joined #ruby-lang
danijoo has quit [Read error: Connection reset by peer]
danijoo has joined #ruby-lang
mcclurmc has quit [Remote host closed the connection]
malconis_ has joined #ruby-lang
Rylee has quit [Max SendQ exceeded]
Rylee has joined #ruby-lang
malconis has quit [Ping timeout: 250 seconds]
<nofxx_> haha this is rly fun https://github.com/arthurnn/howdoi-emacs
<nofxx_> arooni-mobile, x, y = match
<nofxx_> will work just fine, no need for match[0]
<nofxx_> and this one is rly nice if you use rspec/rubocop/guard whateer on the terminal https://github.com/mchelem/terminator-editor-plugin
malconis_ has quit [Quit: Textual IRC Client: www.textualapp.com]
stardiviner has joined #ruby-lang
banisterfiend has quit [Read error: Connection reset by peer]
arooni-mobile has quit [Ping timeout: 240 seconds]
jimbach_ has quit [Remote host closed the connection]
benlovell has joined #ruby-lang
dfinninger has quit [Remote host closed the connection]
AmBienCeD has quit [Read error: Connection reset by peer]
chinmay_dd has quit [Remote host closed the connection]
benlovell has quit [Ping timeout: 264 seconds]
jimbach has joined #ruby-lang
tkuchiki has joined #ruby-lang
mattyohe has joined #ruby-lang
arooni-mobile has joined #ruby-lang
mcclurmc has joined #ruby-lang
chills42 has joined #ruby-lang
chouhoulis has joined #ruby-lang
chouhoulis has quit [Remote host closed the connection]
chouhoulis has joined #ruby-lang
M3M0CooL has quit []
NoNMaDDeN has joined #ruby-lang
xcesariox has joined #ruby-lang
arooni-mobile has quit [Ping timeout: 265 seconds]
pablocantero has joined #ruby-lang
pablocantero has quit [Ping timeout: 264 seconds]
mannyt has quit [Quit: Connection closed for inactivity]
j4cknewt has joined #ruby-lang
Demannu has joined #ruby-lang
chills42 has quit [Remote host closed the connection]
dfinninger has joined #ruby-lang
fuhgeddaboudit has joined #ruby-lang
dfinninger has quit [Client Quit]
Demannu has quit [Ping timeout: 240 seconds]
rumitte has joined #ruby-lang
rkrdo has joined #ruby-lang
shubhamgoyal has quit [Remote host closed the connection]
jimbach has quit [Remote host closed the connection]
jimbach has joined #ruby-lang
yusuf has joined #ruby-lang
yusuf has quit [Max SendQ exceeded]
dwknoxy has quit [Quit: Textual IRC Client: www.textualapp.com]
rahul_j has joined #ruby-lang
yusuf has joined #ruby-lang
Mothore_ has joined #ruby-lang
diegoviola has quit [Remote host closed the connection]
jimbach has quit [Ping timeout: 258 seconds]
Mothore has quit [Ping timeout: 258 seconds]
jimbach has joined #ruby-lang
rahul_j has quit [Quit: rahul_j]
rahul_j has joined #ruby-lang
rkrdo has quit []
tkuchiki has quit [Remote host closed the connection]
tkuchiki has joined #ruby-lang
cleopatra has quit [Remote host closed the connection]
rahul_j has quit [Quit: rahul_j]
tkuchiki has quit [Ping timeout: 255 seconds]
shubhamgoyal has joined #ruby-lang
shubhamg_ has joined #ruby-lang
chouhoul_ has joined #ruby-lang
rahul_j has joined #ruby-lang
chouhoulis has quit [Ping timeout: 264 seconds]
shubhamgoyal has quit [Ping timeout: 265 seconds]
michael_mbp has quit [Excess Flood]
michael_mbp has joined #ruby-lang
gix has quit [Ping timeout: 240 seconds]
midhir has quit [Remote host closed the connection]
rahul_j has quit [Quit: rahul_j]
midhir has joined #ruby-lang
jimbach has quit [Remote host closed the connection]
gix has joined #ruby-lang
midhir has quit [Ping timeout: 245 seconds]
klmlfl has quit [Remote host closed the connection]
_fritchie has quit [Quit: Textual IRC Client: www.textualapp.com]
benlovell has joined #ruby-lang
ur5us has quit [Remote host closed the connection]
arBmind1 has quit [Quit: Leaving.]
marcdel_ has joined #ruby-lang
benlovell has quit [Ping timeout: 244 seconds]
gianlucadv has joined #ruby-lang
tkuchiki has joined #ruby-lang
ikrima has quit [Ping timeout: 256 seconds]
sunaku has joined #ruby-lang
sunaku has quit [Client Quit]
sunaku has joined #ruby-lang
kyb3r_ has joined #ruby-lang
nofxx_ has quit [Ping timeout: 255 seconds]
nofxx_ has joined #ruby-lang
lsegal has quit [Read error: Connection reset by peer]
lsegal has joined #ruby-lang
chouhoul_ has quit [Remote host closed the connection]
kyb3r_ has quit [Read error: Connection reset by peer]
ben_thatmust has left #ruby-lang ["Leaving"]
kyb3r_ has joined #ruby-lang
allomov has joined #ruby-lang
jgpawletko has quit [Quit: jgpawletko]
kyb3r_ has quit [Quit: Leaving]
saramic has quit [Remote host closed the connection]
senor_jalapeno has quit [Remote host closed the connection]
rumitte has quit [K-Lined]
ta__ has quit [Ping timeout: 245 seconds]
ta has joined #ruby-lang
robbyoconnor has joined #ruby-lang
robbyoconnor has quit [Changing host]
robbyoconnor has joined #ruby-lang
fedexo has joined #ruby-lang
gjaldon has joined #ruby-lang
kiyote23 has quit [Ping timeout: 272 seconds]
saramic has joined #ruby-lang
hramrach_ has quit [Ping timeout: 250 seconds]
robbyoconnor has quit [Ping timeout: 255 seconds]
robbyoconnor has joined #ruby-lang
fuhgeddaboudit has quit [Ping timeout: 272 seconds]
sunaku has quit [Ping timeout: 264 seconds]
hramrach_ has joined #ruby-lang
shubhamg_ has quit [Remote host closed the connection]
caseydriscoll has quit [Remote host closed the connection]
kiyote23 has joined #ruby-lang
shubhamgoyal has joined #ruby-lang
spastorino has quit [Quit: Connection closed for inactivity]
ikrima has joined #ruby-lang
jimbach has joined #ruby-lang
ItSANgo has quit [Quit: Leaving...]
cleopatra has joined #ruby-lang
jimbach has quit [Ping timeout: 258 seconds]
ur5us has joined #ruby-lang
AKASkip has joined #ruby-lang
ur5us has quit [Ping timeout: 264 seconds]
kiyote23 has quit [Ping timeout: 264 seconds]
chouhoulis has joined #ruby-lang
ikrima has quit [Ping timeout: 240 seconds]
sunaku has joined #ruby-lang
jxie has quit [Ping timeout: 245 seconds]
ItSANgo has joined #ruby-lang
jxie has joined #ruby-lang
ikrima has joined #ruby-lang
AKASkip has quit [Ping timeout: 272 seconds]
kiyote23 has joined #ruby-lang
gianlucadv has quit [Ping timeout: 240 seconds]
symm- has joined #ruby-lang
lewix has quit [Remote host closed the connection]
oleo has quit [Quit: Verlassend]
benlovell has joined #ruby-lang
symm- has quit [Ping timeout: 255 seconds]
benlovell has quit [Ping timeout: 272 seconds]
midhir has joined #ruby-lang
kiyote23 has quit [Ping timeout: 265 seconds]
ikrima has quit [Ping timeout: 245 seconds]
midhir has quit [Ping timeout: 264 seconds]
kiyote23 has joined #ruby-lang
shubhamgoyal has quit [Remote host closed the connection]
allomov has quit [Remote host closed the connection]
apeiros_ has quit [Ping timeout: 255 seconds]
AKASkip has joined #ruby-lang
amclain has quit [Quit: Leaving]
symm- has joined #ruby-lang
symm- has quit [Ping timeout: 265 seconds]
Mothore_ has quit [Quit: Be back later ...]
gjaldon has quit []
chouhoulis has quit [Remote host closed the connection]
chouhoulis has joined #ruby-lang
kiyote23 has quit [Ping timeout: 258 seconds]
rahul_j has joined #ruby-lang
bmichelsen has quit [Quit: ZZZzzz…]
JohnBat26 has joined #ruby-lang
charliesome has quit [Quit: zzz]
rahul_j_ has joined #ruby-lang
rahul_j has quit [Ping timeout: 264 seconds]
rahul_j_ is now known as rahul_j
sunaku has quit [Ping timeout: 244 seconds]
dxta has joined #ruby-lang
allomov has joined #ruby-lang
mattyohe has quit [Quit: Connection closed for inactivity]
jg has joined #ruby-lang
ta has quit [Remote host closed the connection]
jxie has quit [Read error: Connection reset by peer]
clauswitt has joined #ruby-lang
jxie has joined #ruby-lang
ItSANgo has quit [Quit: Leaving...]
nculpitt has joined #ruby-lang
bb010g has quit [Quit: Connection closed for inactivity]
q_leonetti has joined #ruby-lang
<nculpitt> Hey, is anyone around to help out with a noob question?
benlovell has joined #ruby-lang
<zenspider> just ask
Forgetful_Lion has joined #ruby-lang
<nculpitt> uugh how do i word this so that it makes sense
<nculpitt> So im working on a webpage with nokogiri and sinatra that pulls a bunch of data from a website, throws them into a small table and then chucks in onto a webpage
<nculpitt> I'm trying to figure out if there's a way to tell it when I'm outputting it to only push out the first 8 entries instead of printing everything?
benlovell has quit [Ping timeout: 256 seconds]
rumitte has joined #ruby-lang
rumitte is now known as Guest1882
relampago has joined #ruby-lang
relampago has quit [Client Quit]
saramic has quit [Remote host closed the connection]
kwd has joined #ruby-lang
Mothore_ has joined #ruby-lang
benlovell has joined #ruby-lang
ikrima has joined #ruby-lang
Mothore_ has quit [Ping timeout: 255 seconds]
mistym has quit [Remote host closed the connection]
chouhoulis has quit [Remote host closed the connection]
cyndis has quit [Ping timeout: 272 seconds]
datazombie has joined #ruby-lang
rothman has joined #ruby-lang
rothman has left #ruby-lang [#ruby-lang]
cyndis has joined #ruby-lang
xcesariox has quit [Read error: Connection reset by peer]
<zenspider> nculpitt: first 8 entries of what?
solars has joined #ruby-lang
michael_mbp has quit [Excess Flood]
ta has joined #ruby-lang
nculpitt has quit [Ping timeout: 246 seconds]
chussenot has joined #ruby-lang
michael_mbp has joined #ruby-lang
nofxx_ has quit [Ping timeout: 258 seconds]
|jemc| has quit [Quit: WeeChat 1.0.1]
bmichelsen has joined #ruby-lang
j4cknewt has quit [Remote host closed the connection]
bf4 has quit [Ping timeout: 258 seconds]
nitrocell has joined #ruby-lang
robbyoconnor has quit [Remote host closed the connection]
xcesariox has joined #ruby-lang
mamantoha has joined #ruby-lang
ta has quit [Remote host closed the connection]
stardiviner has quit [Ping timeout: 255 seconds]
robbyoconnor has joined #ruby-lang
rahul_j has quit [Quit: rahul_j]
lsegal has quit [Quit: Quit: Quit: Quit: Stack Overflow.]
midhir has joined #ruby-lang
robbyoconnor has quit [Read error: No route to host]
saramic_ has joined #ruby-lang
robbyoconnor has joined #ruby-lang
rahul_j has joined #ruby-lang
midhir has quit [Ping timeout: 264 seconds]
shubhamgoyal has joined #ruby-lang
dr_bob has joined #ruby-lang
yfeldblum has quit [Ping timeout: 258 seconds]
ta has joined #ruby-lang
ta has quit [Read error: Connection reset by peer]
ta has joined #ruby-lang
nitrocell has left #ruby-lang [#ruby-lang]
yusuf has quit [Quit: Leaving.]
saramic_ has quit [Read error: Connection reset by peer]
fedexo has quit [Ping timeout: 244 seconds]
skade has joined #ruby-lang
francisfish has joined #ruby-lang
tbuehlmann has joined #ruby-lang
t7y9r has quit [Ping timeout: 255 seconds]
Mothore_ has joined #ruby-lang
xcesariox has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
marr has joined #ruby-lang
datazombie has quit [Remote host closed the connection]
NoNMaDDeN has quit [Remote host closed the connection]
bf4 has joined #ruby-lang
Mothore_ has quit [Ping timeout: 258 seconds]
relix has joined #ruby-lang
32NAAJMSV has joined #ruby-lang
32NAAJMSV has quit [Remote host closed the connection]
NoNMaDDeN has joined #ruby-lang
bf4 has quit [Ping timeout: 240 seconds]
Tab__ has joined #ruby-lang
jimbach has joined #ruby-lang
jimbach has quit [Ping timeout: 258 seconds]
elia has joined #ruby-lang
Tab__ has quit [Quit: This computer has gone to sleep]
cornerma1 has joined #ruby-lang
cornerman has quit [Ping timeout: 240 seconds]
cornerma1 is now known as cornerman
yfeldblum has joined #ruby-lang
Tab__ has joined #ruby-lang
<yorickpeterse> morning
jmrepetti has joined #ruby-lang
ikrima has quit [Ping timeout: 272 seconds]
<yorickpeterse> ljarvis: apeiros: /ban Guest1882 plox, it's a privmsg spammer
ItSANgo has joined #ruby-lang
arBmind has joined #ruby-lang
Tab__ has quit [Quit: This computer has gone to sleep]
benlovell has quit [Ping timeout: 255 seconds]
lewix has joined #ruby-lang
benlovell has joined #ruby-lang
workmad3 has joined #ruby-lang
lewix has quit [Ping timeout: 244 seconds]
rahul_j has quit [Quit: rahul_j]
ducklobster has quit [Ping timeout: 240 seconds]
midhir has joined #ruby-lang
certaint1 has joined #ruby-lang
midhir has quit [Ping timeout: 245 seconds]
chussenot has quit [Quit: chussenot]
koderok has joined #ruby-lang
dsilva_ has joined #ruby-lang
koderok has quit [Client Quit]
zenspider has quit [Quit: bye]
ldnunes has joined #ruby-lang
dsilva has quit [Ping timeout: 264 seconds]
zenspider has joined #ruby-lang
rahul_j has joined #ruby-lang
dsilva has joined #ruby-lang
Mothore_ has joined #ruby-lang
dsilva_ has quit [Ping timeout: 255 seconds]
pablocantero has joined #ruby-lang
Mothore_ has quit [Ping timeout: 258 seconds]
dsilva_ has joined #ruby-lang
dsilva__ has joined #ruby-lang
Missphoenix has quit [Read error: Connection reset by peer]
dsilva has quit [Ping timeout: 255 seconds]
Missphoenix has joined #ruby-lang
clauswitt has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
arBmind has quit [Quit: Leaving.]
chussenot has joined #ruby-lang
dsilva_ has quit [Ping timeout: 265 seconds]
jamo_ has quit [Remote host closed the connection]
jimbach has joined #ruby-lang
jamo_ has joined #ruby-lang
jimbach has quit [Ping timeout: 258 seconds]
mamantoha has quit [Ping timeout: 272 seconds]
dsilva has joined #ruby-lang
rolfb has joined #ruby-lang
dsilva__ has quit [Ping timeout: 265 seconds]
jmrepett_ has joined #ruby-lang
jmrepetti has quit [Ping timeout: 264 seconds]
qba73 has joined #ruby-lang
mkaesz has joined #ruby-lang
dangerousdave has joined #ruby-lang
arBmind has joined #ruby-lang
pablocantero has quit [Remote host closed the connection]
cleopatra has quit [Ping timeout: 264 seconds]
certainty has quit [Ping timeout: 256 seconds]
Guest1882 has quit [K-Lined]
dsilva_ has joined #ruby-lang
mikecmpbll has joined #ruby-lang
dsilva has quit [Ping timeout: 265 seconds]
mamantoha has joined #ruby-lang
clauswitt has joined #ruby-lang
skade has quit [Quit: Computer has gone to sleep.]
pablocantero has joined #ruby-lang
hramrach_ has quit [Ping timeout: 250 seconds]
chouhoulis has joined #ruby-lang
chouhoulis has quit [Ping timeout: 264 seconds]
chussenot has quit [Quit: chussenot]
caseydriscoll has joined #ruby-lang
benlovell has quit [Read error: Connection reset by peer]
hramrach_ has joined #ruby-lang
bmichelsen has quit [Quit: ZZZzzz…]
x0f_ has quit [Ping timeout: 264 seconds]
x0f has joined #ruby-lang
charliesome has joined #ruby-lang
bmichelsen has joined #ruby-lang
mkaesz has quit [Ping timeout: 240 seconds]
postmodern has quit [Quit: Leaving]
dsilva has joined #ruby-lang
arooni-mobile has joined #ruby-lang
midhir has joined #ruby-lang
dsilva_ has quit [Ping timeout: 244 seconds]
rahul_j has quit [Quit: rahul_j]
midhir has quit [Ping timeout: 264 seconds]
mkaesz has joined #ruby-lang
rsl has joined #ruby-lang
arooni-mobile has quit [Ping timeout: 264 seconds]
sarkyniin has joined #ruby-lang
apeiros_ has joined #ruby-lang
robbyoconnor has quit [Ping timeout: 272 seconds]
rahul_j has joined #ruby-lang
arooni-mobile has joined #ruby-lang
jgpawletko has joined #ruby-lang
jgpawletko has quit [Client Quit]
skade has joined #ruby-lang
rahul_j has quit [Read error: Connection reset by peer]
Mothore_ has joined #ruby-lang
kiyote23 has joined #ruby-lang
dsilva_ has joined #ruby-lang
chussenot has joined #ruby-lang
pablocantero has quit [Remote host closed the connection]
chills42 has joined #ruby-lang
dsilva has quit [Ping timeout: 272 seconds]
Mothore_ has quit [Ping timeout: 258 seconds]
davs has joined #ruby-lang
rahul_j has joined #ruby-lang
rsl has quit [Ping timeout: 245 seconds]
dr_bob has quit [Quit: arbeit]
rahul_j has quit [Ping timeout: 256 seconds]
lewix has joined #ruby-lang
midhir has joined #ruby-lang
pablocantero has joined #ruby-lang
chills42 has quit [Remote host closed the connection]
Forgetful_Lion has quit [Remote host closed the connection]
bmichelsen has quit [Quit: ZZZzzz…]
jimbach has joined #ruby-lang
workmad3 is now known as wm3|away
jimbach has quit [Ping timeout: 258 seconds]
chinmay_dd has joined #ruby-lang
michael_mbp has quit [Excess Flood]
Iskarlar has joined #ruby-lang
michael_mbp has joined #ruby-lang
rsl has joined #ruby-lang
elia has quit [Quit: Computer has gone to sleep.]
chills42 has joined #ruby-lang
certaint1 is now known as certainty
chills42 has quit [Remote host closed the connection]
dxta has quit [Remote host closed the connection]
jmrepett_ has quit [Remote host closed the connection]
jmrepetti has joined #ruby-lang
dxta has joined #ruby-lang
jmrepetti has quit [Ping timeout: 264 seconds]
arooni-mobile has quit [Ping timeout: 244 seconds]
davs has quit [Quit: Lost terminal]
elia has joined #ruby-lang
chouhoulis has joined #ruby-lang
lele|w has joined #ruby-lang
hinbody has joined #ruby-lang
[spoiler] has quit [Quit: Leaving]
pablocantero has quit [Remote host closed the connection]
pablocantero has joined #ruby-lang
tbuehlmann has quit [Remote host closed the connection]
[spoiler] has joined #ruby-lang
jds has joined #ruby-lang
shubhamgoyal has quit [Remote host closed the connection]
bf4 has joined #ruby-lang
<Eising> oh man, why didn't anyone tell me about docker? It's crazily cool
pskosinski has quit [Ping timeout: 258 seconds]
jimbach has joined #ruby-lang
heftig has quit [Ping timeout: 258 seconds]
pskosinski has joined #ruby-lang
bmichelsen has joined #ruby-lang
mjc_ has quit [Ping timeout: 258 seconds]
dsilva has joined #ruby-lang
arBmind has quit [Quit: Leaving.]
heftig has joined #ruby-lang
chills42 has joined #ruby-lang
mjc_ has joined #ruby-lang
dsilva_ has quit [Ping timeout: 240 seconds]
hao has joined #ruby-lang
hao has quit [Client Quit]
shtirlic has quit [Ping timeout: 258 seconds]
wm3|away is now known as workmad3
shtirlic has joined #ruby-lang
dsilva_ has joined #ruby-lang
AKASkip has quit [Ping timeout: 264 seconds]
dsilva has quit [Ping timeout: 240 seconds]
kiyote23 has quit [Read error: Connection reset by peer]
lacrosse__ has quit [Ping timeout: 258 seconds]
kiyote23 has joined #ruby-lang
Iskarlar has quit [Quit: Textual IRC Client: www.textualapp.com]
rikkipitt has joined #ruby-lang
Iskarlar has joined #ruby-lang
lacrosse__ has joined #ruby-lang
midhir has quit [Remote host closed the connection]
midhir has joined #ruby-lang
chussenot has quit [Quit: chussenot]
bf4 has quit [Ping timeout: 258 seconds]
chussenot has joined #ruby-lang
bmichelsen has quit [Quit: ZZZzzz…]
jo__ has quit [Ping timeout: 258 seconds]
midhir has quit [Ping timeout: 265 seconds]
jmrepetti has joined #ruby-lang
rsl has quit [Quit: Textual IRC Client: www.textualapp.com]
<darix> Eising: welcome to 1.5years ago ;)
dsilva has joined #ruby-lang
jo__ has joined #ruby-lang
dsilva_ has quit [Ping timeout: 265 seconds]
midhir has joined #ruby-lang
yfeldblum has quit [Remote host closed the connection]
chussenot has quit [Quit: chussenot]
jmrepett_ has joined #ruby-lang
chussenot has joined #ruby-lang
tkuchiki has quit [Remote host closed the connection]
jmrepetti has quit [Ping timeout: 256 seconds]
tkuchiki has joined #ruby-lang
Mothore_ has joined #ruby-lang
hao has joined #ruby-lang
tkuchiki has quit [Ping timeout: 258 seconds]
hao has quit [Client Quit]
<yorickpeterse> The more I use Rake, the more I appreciate it
<waxjar> what do you use rake for?
Mothore_ has quit [Ping timeout: 258 seconds]
spastorino has joined #ruby-lang
ryba has joined #ruby-lang
francisfish has quit [Remote host closed the connection]
ryba is now known as simi
<yorickpeterse> A lot
<yorickpeterse> Basic stuff like running tests, but also downloading/unpacking packages and what not
<yorickpeterse> as well as installing Python packages inside RubyGems
<yorickpeterse> and C
<yorickpeterse> and Java
<yorickpeterse> :D
dwknoxy has joined #ruby-lang
chills42 has quit [Remote host closed the connection]
<waxjar> ah cool
<waxjar> rake seems so nice, but i find it hard to find use cases for :(
<yorickpeterse> basically whenever you need to create some/file directory, but only if it isn't there yet, use Rake
arBmind has joined #ruby-lang
ta has quit [Remote host closed the connection]
oleo has joined #ruby-lang
pricees has joined #ruby-lang
kiyote23 has quit [Read error: Connection reset by peer]
lele|w has quit [Ping timeout: 258 seconds]
lele|w has joined #ruby-lang
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
kiyote23 has joined #ruby-lang
dangerousdave has joined #ruby-lang
clauswitt has quit [Ping timeout: 250 seconds]
kiyote23 has quit [Read error: Connection reset by peer]
lewix has quit []
<yorickpeterse> waxjar: I should have a fat Rake task in a bit so you can see what it's useful for
chouhoulis has quit [Remote host closed the connection]
chouhoulis has joined #ruby-lang
kiyote23 has joined #ruby-lang
certaint1 has joined #ruby-lang
nelsonsar has joined #ruby-lang
mannyt has joined #ruby-lang
yfeldblum has joined #ruby-lang
badeball has quit [Remote host closed the connection]
<waxjar> sweet
yfeldblum has quit [Ping timeout: 244 seconds]
j2p2 has joined #ruby-lang
sarkyniin has quit [Ping timeout: 255 seconds]
j4cknewt has joined #ruby-lang
shinnya has joined #ruby-lang
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
pablocantero has quit [Remote host closed the connection]
chinmay_dd has quit [Ping timeout: 250 seconds]
pablocantero has joined #ruby-lang
Iskarlar has quit [Ping timeout: 245 seconds]
<maloik> we also use it for some cron jobs, a maintenance task here and there etc
sarkyniin has joined #ruby-lang
rolfb has quit [Ping timeout: 255 seconds]
pablocantero has quit [Ping timeout: 255 seconds]
midhir has quit [Remote host closed the connection]
chinmay_dd has joined #ruby-lang
midhir has joined #ruby-lang
badeball has joined #ruby-lang
ckim has joined #ruby-lang
havenwood has joined #ruby-lang
nelsonsar has quit [Remote host closed the connection]
j2p2 has quit []
midhir has quit [Ping timeout: 245 seconds]
loincloth has joined #ruby-lang
q_leonetti has quit [Quit: q_leonetti]
elia has quit [Read error: Connection reset by peer]
_elia has joined #ruby-lang
rcvalle has joined #ruby-lang
kiyote23 has quit [Read error: Connection reset by peer]
dsilva_ has joined #ruby-lang
kiyote23 has joined #ruby-lang
rippa has joined #ruby-lang
klmlfl has joined #ruby-lang
senor_jalapeno has joined #ruby-lang
nelsonsar has joined #ruby-lang
dsilva has quit [Ping timeout: 255 seconds]
AmBienCeD has joined #ruby-lang
AmBienCeD has joined #ruby-lang
Mothore_ has joined #ruby-lang
_elia has quit [Ping timeout: 265 seconds]
dsilva has joined #ruby-lang
elia has joined #ruby-lang
xcesariox has joined #ruby-lang
dsilva_ has quit [Ping timeout: 256 seconds]
senor_jalapeno has quit [Ping timeout: 245 seconds]
klmlfl_ has joined #ruby-lang
francisfish has joined #ruby-lang
mistym has joined #ruby-lang
klmlfl has quit [Ping timeout: 258 seconds]
rolfb has joined #ruby-lang
elia has quit [Quit: Computer has gone to sleep.]
midhir has joined #ruby-lang
kwd has quit [Quit: kwd]
dsilva has quit [Ping timeout: 265 seconds]
dsilva has joined #ruby-lang
LapideViridi has joined #ruby-lang
yfeldblum has joined #ruby-lang
rcvalle has quit [Ping timeout: 250 seconds]
senor_jalapeno has joined #ruby-lang
ckim has quit [Remote host closed the connection]
LapideViridi has quit [Client Quit]
LapideViridi has joined #ruby-lang
sarkyniin has quit [Remote host closed the connection]
|jemc| has joined #ruby-lang
pricees has quit [Ping timeout: 272 seconds]
yfeldblum has quit [Ping timeout: 240 seconds]
solars has quit [Ping timeout: 244 seconds]
sarkyniin has joined #ruby-lang
Mothore_ has quit [Quit: Lingo: www.lingoirc.com]
pablocantero has joined #ruby-lang
elia has joined #ruby-lang
<yorickpeterse> Fucking researchers
<yorickpeterse> lets modify files released in the wild, but not add any version number to them
<yorickpeterse> and lets change them in a way that is not backwards compatible
<yorickpeterse> yay software!
BubonicPestile-1 has quit [Quit: BubonicPestile-1]
relix has quit [Quit: Textual IRC Client: www.textualapp.com]
symm- has joined #ruby-lang
relix has joined #ruby-lang
skade has quit [Quit: Computer has gone to sleep.]
rcvalle has joined #ruby-lang
jmrepetti has joined #ruby-lang
skade has joined #ruby-lang
jmrepett_ has quit [Ping timeout: 256 seconds]
nelsonsar has quit [Remote host closed the connection]
LapideViridi has quit [Quit: Leaving]
sunaku has joined #ruby-lang
dangerousdave has joined #ruby-lang
dangerousdave has quit [Client Quit]
banister has joined #ruby-lang
rolfb has quit [Quit: Linkinus - http://linkinus.com]
jmrepetti has quit [Read error: Connection reset by peer]
sunaku has quit [Ping timeout: 255 seconds]
mamantoha has quit [Ping timeout: 240 seconds]
jmrepetti has joined #ruby-lang
nelsonsar has joined #ruby-lang
kiyote23 has quit [Remote host closed the connection]
kiyote23 has joined #ruby-lang
midhir has quit [Remote host closed the connection]
midhir has joined #ruby-lang
dangerousdave has joined #ruby-lang
kiyote23 has quit [Remote host closed the connection]
shubhamgoyal has joined #ruby-lang
xcesariox has quit [Quit: Textual IRC Client: www.textualapp.com]
shubhamgoyal has quit [Client Quit]
midhir has quit [Ping timeout: 245 seconds]
dsilva_ has joined #ruby-lang
charliesome has quit [Quit: zzz]
shubhamgoyal has joined #ruby-lang
dsilva__ has joined #ruby-lang
dsilva has quit [Ping timeout: 264 seconds]
sunaku has joined #ruby-lang
dsilva_ has quit [Ping timeout: 255 seconds]
sunaku has quit [Client Quit]
ruby-lang640 has joined #ruby-lang
sunaku has joined #ruby-lang
jmrepett_ has joined #ruby-lang
q_leonetti has joined #ruby-lang
jmrepetti has quit [Ping timeout: 265 seconds]
tbuehlmann has joined #ruby-lang
cmhobbs has joined #ruby-lang
<ruby-lang640> i installed mysql2 gem bt when i tried to use my rails command on those projects which was build with "-d mysql" command its give a bug report notice.i tried evething bt it didn't work :( plz help
yfeldblum has joined #ruby-lang
mistym has quit [Remote host closed the connection]
yfeldblum has quit [Ping timeout: 255 seconds]
nelsonsar has quit [Remote host closed the connection]
jmrepett_ has quit [Remote host closed the connection]
AKASkip has joined #ruby-lang
diegoviola has joined #ruby-lang
jmrepetti has joined #ruby-lang
senor_jalapeno has quit [Ping timeout: 250 seconds]
jmrepetti has quit [Ping timeout: 264 seconds]
mirageglobe has joined #ruby-lang
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ruby-lang640 has quit [Ping timeout: 246 seconds]
nelsonsar has joined #ruby-lang
j4cknewt has quit []
amsi has joined #ruby-lang
marcdel_ has quit []
mistym has joined #ruby-lang
mkaesz has quit [Remote host closed the connection]
cmhobbs has quit [Remote host closed the connection]
j2p2 has joined #ruby-lang
mirageglobe has quit [Remote host closed the connection]
mirageglobe has joined #ruby-lang
gjaldon has joined #ruby-lang
mirageglobe has quit [Ping timeout: 240 seconds]
ta has joined #ruby-lang
skade has quit [Quit: Computer has gone to sleep.]
mikecmpbll has quit [Quit: ciao.]
dsilva has joined #ruby-lang
dsilva__ has quit [Ping timeout: 255 seconds]
apeiros_ has quit [Remote host closed the connection]
__butch__ has joined #ruby-lang
klmlfl_ has quit [Remote host closed the connection]
matp_ has joined #ruby-lang
matp has quit [Ping timeout: 264 seconds]
qba73 has quit []
klmlfl has joined #ruby-lang
yfeldblum has joined #ruby-lang
elia has quit [Quit: Computer has gone to sleep.]
jg has quit [Quit: Leaving]
banister has joined #ruby-lang
banister has quit [Max SendQ exceeded]
yfeldblum has quit [Ping timeout: 258 seconds]
banister has joined #ruby-lang
banister has quit [Max SendQ exceeded]
banister has joined #ruby-lang
klmlfl_ has joined #ruby-lang
chussenot has quit [Quit: chussenot]
klmlfl has quit [Ping timeout: 265 seconds]
nelsonsar has quit [Remote host closed the connection]
amsi has quit [Ping timeout: 240 seconds]
sunaku has quit [Ping timeout: 265 seconds]
amsi has joined #ruby-lang
allomov has quit [Remote host closed the connection]
nelsonsar has joined #ruby-lang
loincloth has quit [Remote host closed the connection]
riotingpacifist2 has joined #ruby-lang
t7y9r has joined #ruby-lang
mirageglobe has joined #ruby-lang
kapott has joined #ruby-lang
<riotingpacifist2> is there a way to compair the output of 2 commands using serverspec?
mirageglobe has quit [Ping timeout: 272 seconds]
midhir has joined #ruby-lang
gianlucadv has joined #ruby-lang
dsilva_ has joined #ruby-lang
rikkipitt has quit [Remote host closed the connection]
arBmind has quit [Quit: Leaving.]
workmad3 has quit [Ping timeout: 255 seconds]
mcclurmc has quit [Ping timeout: 264 seconds]
dsilva has quit [Ping timeout: 256 seconds]
riotingpacifist2 has quit [Quit: Page closed]
lguardiola_ has quit [Quit: ZNC - http://znc.in]
[H]unt3r has joined #ruby-lang
sunaku has joined #ruby-lang
sunaku has quit [Client Quit]
sunaku has joined #ruby-lang
lguardiola has joined #ruby-lang
yfeldblum has joined #ruby-lang
mcclurmc has joined #ruby-lang
dsilva has joined #ruby-lang
dsilva_ has quit [Ping timeout: 255 seconds]
pricees has joined #ruby-lang
yfeldblum has quit [Ping timeout: 244 seconds]
mirageglobe has joined #ruby-lang
hahuang61 has joined #ruby-lang
gjaldon has quit [Remote host closed the connection]
pricees has quit [Ping timeout: 255 seconds]
stamina has joined #ruby-lang
arBmind has joined #ruby-lang
solars has joined #ruby-lang
nelsonsar has quit [Remote host closed the connection]
chussenot has joined #ruby-lang
apt-get_ has joined #ruby-lang
skade has joined #ruby-lang
nelsonsar has joined #ruby-lang
loincloth has joined #ruby-lang
dsilva_ has joined #ruby-lang
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
kiyote23 has joined #ruby-lang
sarkyniin has quit [Ping timeout: 264 seconds]
dsilva has quit [Ping timeout: 244 seconds]
bradland has joined #ruby-lang
Iskarlar has joined #ruby-lang
rikkipitt has joined #ruby-lang
simi has quit [Ping timeout: 250 seconds]
Xzyx987X_ has quit [Ping timeout: 264 seconds]
senor_jalapeno has joined #ruby-lang
ta_ has joined #ruby-lang
ta has quit [Read error: Connection reset by peer]
Xzyx987X has joined #ruby-lang
__butch__ has quit [Quit: Leaving.]
duderonomy has quit [Quit: Textual IRC Client: www.textualapp.com]
chussenot has quit [Quit: chussenot]
chussenot has joined #ruby-lang
stamina has quit [Ping timeout: 272 seconds]
pablocantero has quit [Remote host closed the connection]
pablocantero has joined #ruby-lang
Missphoenix has quit [Quit: Leaving]
hramrach_ has quit [Ping timeout: 250 seconds]
mirageglobe has quit []
Asher has quit [Quit: Leaving.]
hramrach_ has joined #ruby-lang
pablocantero has quit [Ping timeout: 256 seconds]
dsilva has joined #ruby-lang
symm- has quit [Ping timeout: 258 seconds]
dsilva_ has quit [Ping timeout: 256 seconds]
mcclurmc has quit [Ping timeout: 264 seconds]
dsilva_ has joined #ruby-lang
chinmay_dd has quit [Quit: Leaving]
dsilva has quit [Ping timeout: 258 seconds]
dsilva has joined #ruby-lang
dagda1 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
dsilva_ has quit [Ping timeout: 272 seconds]
dsilva_ has joined #ruby-lang
havenwood has quit [Remote host closed the connection]
havenwood has joined #ruby-lang
dsilva has quit [Ping timeout: 250 seconds]
havenwood has quit [Client Quit]
nelsonsar has quit [Remote host closed the connection]
yfeldblum has joined #ruby-lang
marr has quit [Read error: Connection reset by peer]
ur5us has joined #ruby-lang
dxta has quit [Remote host closed the connection]
pricees has joined #ruby-lang
pyttepatsy has joined #ruby-lang
Iskarlar has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
apt-get_ has quit [Ping timeout: 265 seconds]
dsilva has joined #ruby-lang
dsilva_ has quit [Ping timeout: 264 seconds]
klmlfl has joined #ruby-lang
Steve_Jobs has joined #ruby-lang
palmertime has joined #ruby-lang
klmlfl_ has quit [Ping timeout: 240 seconds]
_fritchie has joined #ruby-lang
nelsonsar has joined #ruby-lang
ldnunes has quit [Quit: Leaving]
apeiros_ has joined #ruby-lang
mistym has quit [Remote host closed the connection]
chussenot has quit [Quit: chussenot]
sunaku has quit [Ping timeout: 272 seconds]
jmrepetti has joined #ruby-lang
pricees has quit [Remote host closed the connection]
chouhoulis has quit [Remote host closed the connection]
pricees has joined #ruby-lang
georgschlenkhoff has joined #ruby-lang
dsilva_ has joined #ruby-lang
georgschlenkhoff has left #ruby-lang ["Textual IRC Client: www.textualapp.com"]
dsilva has quit [Ping timeout: 264 seconds]
pricees has quit [Remote host closed the connection]
pricees has joined #ruby-lang
tsou has quit [Ping timeout: 240 seconds]
t7y9r has quit [Ping timeout: 240 seconds]
mistym has joined #ruby-lang
dagda1 has joined #ruby-lang
sarkyniin has joined #ruby-lang
t7y9r has joined #ruby-lang
tsou has joined #ruby-lang
hahuang61 has quit [Read error: Connection reset by peer]
sarkyniin has quit [Remote host closed the connection]
hahuang65 has joined #ruby-lang
sarkyniin has joined #ruby-lang
pricees has quit [Remote host closed the connection]
chills42 has joined #ruby-lang
nelsonsar has quit [Remote host closed the connection]
mkyurche_ has joined #ruby-lang
theotherstupidgu has joined #ruby-lang
skade has quit [Quit: Computer has gone to sleep.]
rcvalle has quit [Ping timeout: 240 seconds]
mirageglobe has joined #ruby-lang
robbyoconnor has joined #ruby-lang
robbyoconnor has quit [Client Quit]
senor_jalapeno has quit [Ping timeout: 250 seconds]
hinbody has quit [Quit: leaving]
benanne has joined #ruby-lang
[spoiler] has quit [Quit: Leaving]
nelsonsar has joined #ruby-lang
mkyurche_ has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
cleopatra has joined #ruby-lang
dagda1 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
allomov has joined #ruby-lang
gianlucadv has quit [Ping timeout: 255 seconds]
nelsonsar has quit [Remote host closed the connection]
nelsonsar has joined #ruby-lang
midhir has quit [Remote host closed the connection]
nelsonsar has quit [Remote host closed the connection]
mkyurchev has joined #ruby-lang
[H]unt3r has quit [Quit: Leaving]
allomov has quit [Remote host closed the connection]
bradland has quit [Quit: bradland]
JohnBat26 has quit [Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/]
jmrepetti has quit [Remote host closed the connection]
mistym has quit [Remote host closed the connection]
klmlfl has quit [Ping timeout: 272 seconds]
dm78_ has quit []
kiyote23 has quit [Ping timeout: 244 seconds]
kiyote23 has joined #ruby-lang
momomomomo has joined #ruby-lang
mistym has joined #ruby-lang
sarkyniin has quit [Quit: Quitte]
kiyote23 has quit [Read error: Connection reset by peer]
jmrepetti has joined #ruby-lang
jimbach has quit [Remote host closed the connection]
kiyote23 has joined #ruby-lang
mattyohe has joined #ruby-lang
dagda1 has joined #ruby-lang
momomomomo has quit [Quit: momomomomo]
senor_jalapeno has joined #ruby-lang
rcvalle has joined #ruby-lang
pablocantero has joined #ruby-lang
BubonicPestilenc has joined #ruby-lang
_fritchie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
sunaku has joined #ruby-lang
pablocantero has quit [Ping timeout: 244 seconds]
marr has joined #ruby-lang
_fritchie has joined #ruby-lang
sunaku has quit [Client Quit]
j2p2 has quit [Ping timeout: 255 seconds]
sunaku has joined #ruby-lang
dagda1 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
saramic_ has joined #ruby-lang
jmrepett_ has joined #ruby-lang
jmrepetti has quit [Read error: Connection reset by peer]
skade has joined #ruby-lang
jmrepett_ has quit [Remote host closed the connection]
chills42 has quit [Remote host closed the connection]
dagda1 has joined #ruby-lang
skade has quit [Ping timeout: 265 seconds]
mirageglobe has quit []
fusillicode1 has quit [Ping timeout: 255 seconds]
palmertime has quit [Quit: Leaving...]
hahuang65 has quit [Ping timeout: 245 seconds]
elia has joined #ruby-lang
rikkipitt has quit []
senor_jalapeno has quit [Ping timeout: 250 seconds]
cornerma1 has joined #ruby-lang
lsegal has joined #ruby-lang
cornerman has quit [Ping timeout: 272 seconds]
cornerma1 is now known as cornerman
NoNMaDDeN has quit [Remote host closed the connection]
midhir has joined #ruby-lang
tockitj has quit [Quit: Leaving]
elia has quit [Quit: Computer has gone to sleep.]
usershel_ has joined #ruby-lang
senor_jalapeno has joined #ruby-lang
elia has joined #ruby-lang
bf4 has joined #ruby-lang
usershel_ has quit [Remote host closed the connection]
elia has quit [Quit: Computer has gone to sleep.]
t7y9r has quit [Ping timeout: 250 seconds]
nelsonsar has joined #ruby-lang
nertzy2 has quit [Quit: This computer has gone to sleep]
benanne has quit [Quit: kbai]
saramic_ has quit [Remote host closed the connection]
nelsonsar has quit [Ping timeout: 272 seconds]
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
saramic has joined #ruby-lang
elia has joined #ruby-lang
elia has quit [Client Quit]
JoshuaPaling has joined #ruby-lang
solars has quit [Ping timeout: 255 seconds]
michael_mbp has quit [Excess Flood]
michael_mbp has joined #ruby-lang
tbuehlmann has quit [Remote host closed the connection]
JoshuaPaling has quit [Quit: Textual IRC Client: www.textualapp.com]
loincloth has quit [Remote host closed the connection]
Tab_ has joined #ruby-lang
AKASkip has quit [Ping timeout: 264 seconds]
pricees has joined #ruby-lang
usershell has joined #ruby-lang
davs has joined #ruby-lang
Tab_ has quit [Read error: Connection reset by peer]
mkyurchev has quit [Remote host closed the connection]
NoNMaDDeN has joined #ruby-lang
Averna has joined #ruby-lang
jimbach has joined #ruby-lang
usershell has quit [Remote host closed the connection]
davs has quit [Quit: Lost terminal]
jimbach has quit [Ping timeout: 256 seconds]
NoNMaDDeN has quit [Ping timeout: 244 seconds]
arBmind1 has joined #ruby-lang
arBmind has quit [Ping timeout: 264 seconds]
usershell has joined #ruby-lang
bf4 has quit [Ping timeout: 255 seconds]
senor_jalapeno has quit [Ping timeout: 264 seconds]
Obfuscate has joined #ruby-lang
nofxx_ has joined #ruby-lang
nofxx_ has joined #ruby-lang
jimbach has joined #ruby-lang
jimbach has quit [Remote host closed the connection]
jimbach has joined #ruby-lang
<zenspider> waxjar: really? I use rake for _everything_ :D
<waxjar> the only thing i've ever used it for is running tests :|
<zenspider> it's (pretty) good for build systems. pretty much any time you have project wide tasks and don't want to bother writing a bunch of command line processing stuff. just create a rakefile, put task :name do ... end and done