gemmaro has quit [Remote host closed the connection]
cocalero has quit [Quit: Going offline, see ya! (www.adiirc.com)]
Guest5 has joined #ruby
EternalSunshine has joined #ruby
<Guest5>
#rubygems
Guest5 has quit [Quit: Client closed]
CrazyEddy has quit [Ping timeout: 264 seconds]
ur5us has quit [Ping timeout: 246 seconds]
CrazyEddy has joined #ruby
howdoi has quit [Quit: Connection closed for inactivity]
mikecmpbll has joined #ruby
mikecmpbll has quit [Ping timeout: 244 seconds]
jmcgnh has quit [Ping timeout: 264 seconds]
nirvdrum has quit [Quit: nirvdrum]
EternalSunshine has quit [Quit: WeeChat 3.6]
jmcgnh has joined #ruby
kale has quit [Quit: WeeChat 1.9.1]
cocalero has joined #ruby
cocalero has quit [Quit: Going offline, see ya! (www.adiirc.com)]
sagax has joined #ruby
hightower2 has joined #ruby
hightower3 has quit [Ping timeout: 244 seconds]
protektwar has joined #ruby
protektwar has quit [Changing host]
protektwar has joined #ruby
FetidToot has quit [Quit: Ping timeout (120 seconds)]
FetidToot has joined #ruby
Guest70 has joined #ruby
Guest70 has quit [Client Quit]
<sam113101>
so what's the closest thing to a C-style for loop in ruby
<wnd>
Why? Depends on what you have in mind. Maybe for a in 0...10; some_stuff; end, maybe a = 0; while a < 10; begin; some_stuff; ensure a += 2; end; end
gemmaro has joined #ruby
ur5us has joined #ruby
teclator has joined #ruby
teclator has quit [Client Quit]
Rounin has joined #ruby
Rounin has quit [Changing host]
Rounin has joined #ruby
<leftylink>
hmm, I think I may have missed a fe wopportunities over the years to use ensure
<leftylink>
where it would have helped make the code less repetitive
<leftylink>
hopefully I dealt with it in some reasonable way
teclator has joined #ruby
gemmaro has quit [Remote host closed the connection]
<littlebuddy>
I think in the future, one of Greenland's most prominent streets will be called Matz Street
<littlebuddy>
#MINASWAN :thumbsup:
nirvdrum has joined #ruby
infinity_fye has joined #ruby
infinityfye has quit [Killed (NickServ (GHOST command used by infinity_fye!~infinityf@91.230.225.118))]
infinity_fye is now known as infinityfye
<littlebuddy>
It doesn't belong to Denmark in the first place: "Greenland became a possession of Denmark in 1380 when the Norwegian kingdom came under the Danish Crown."
<kristianpaul>
Is there a way to execute a script provided by a gem that usually would run find with bundle exec xxx but i want to run it using absolute path
<kristianpaul>
?
<weaksauce>
alias that script?
<adam12>
kristianpaul: Might need to set an ENV var... like BUNDLE_PATH or something.
<weaksauce>
does the script require anything fro the bundle?
<kristianpaul>
the script requires other gems installed using bundle yeah
<kristianpaul>
oh, setting BUNDLE_PATH seems to be it..