apeiros_ changed the topic of #ruby-lang to: Ruby 1.9.3-p327: http://ruby-lang.org (ruby-2.0.0-preview2) || Paste >3 lines of text on http://gist.github.com
llaskin has joined #ruby-lang
ivanoats has quit [Remote host closed the connection]
emocakes has quit [Quit: emocakes]
zhul_mechanos has quit [Quit: zhul_mechanos]
ivanoats has joined #ruby-lang
drbrain has joined #ruby-lang
holgerno has joined #ruby-lang
holgerno has quit [Ping timeout: 252 seconds]
jonahR has quit [Quit: jonahR]
drbrain has quit [Ping timeout: 252 seconds]
stevechiagozie has quit [Ping timeout: 250 seconds]
jsilver has quit [Ping timeout: 245 seconds]
malloc_ has joined #ruby-lang
kurko_ has quit [Ping timeout: 260 seconds]
reppard has joined #ruby-lang
blazes816 has quit [Quit: blazes816]
jsilver has joined #ruby-lang
Asher2 has joined #ruby-lang
Asher has quit [Ping timeout: 252 seconds]
srbaker has quit [Quit: Computer has gone to sleep.]
malloc_ has quit [Quit: Leaving]
burgestrand has quit [Quit: Leaving.]
ivanoats has quit [Remote host closed the connection]
drbrain has joined #ruby-lang
holgerno has joined #ruby-lang
nick_h has quit [Ping timeout: 264 seconds]
holgerno has quit [Ping timeout: 244 seconds]
nick_h has joined #ruby-lang
drbrain has quit [Ping timeout: 260 seconds]
llaskin has quit [Quit: Leaving.]
methods has joined #ruby-lang
chendo_ has quit [Quit: Computer has gone to sleep.]
methods has left #ruby-lang [#ruby-lang]
stevechiagozie has joined #ruby-lang
mjio has quit []
marr has quit [Ping timeout: 265 seconds]
stonerfish has quit [Quit: Leaving.]
slyphon has joined #ruby-lang
RyanScottLewis has joined #ruby-lang
srbaker has joined #ruby-lang
postmodern has joined #ruby-lang
mwjcomputing has joined #ruby-lang
sailias has quit [Read error: Connection reset by peer]
sailias has joined #ruby-lang
neocoin has joined #ruby-lang
mjio has joined #ruby-lang
jonahR has joined #ruby-lang
chendo_ has joined #ruby-lang
cored has quit [Quit: WeeChat 0.3.9.2]
krz has joined #ruby-lang
drbrain has joined #ruby-lang
holgerno has joined #ruby-lang
DEac-_ has quit [Read error: No route to host]
holgerno has quit [Ping timeout: 255 seconds]
DEac- has joined #ruby-lang
havenn has quit [Remote host closed the connection]
stevechiagozie has quit [Ping timeout: 256 seconds]
mwjcomputing has quit [Quit: Leaving]
drbrain has quit [Ping timeout: 244 seconds]
sn0wb1rd has joined #ruby-lang
matip_ has joined #ruby-lang
matip_ has left #ruby-lang [#ruby-lang]
matip has joined #ruby-lang
<matip> Hi
<matip> I can't find why gem install stanford-core-nlp doesn't work. here is the log: http://paste.kde.org/632012/ . any idea?
<RyanScottLewis> I'll take a look
<RyanScottLewis> What C dependencies does stanford-core-nlp use?
charliesome has joined #ruby-lang
<RyanScottLewis> Wait Why would it complain about JAVA_HOME if you are using 1.9.1?
<RyanScottLewis> This gem is compatible with Ruby 1.9.2 and 1.9.3 as well as JRuby 1.7.1. It is tested on both Java 6 and Java 7.
<RyanScottLewis> Try updating to 1.9.2 or try JRuby. They don't say it's compatible with 1.9.1 but they don't say that it isn't either
stevechiagozie has joined #ruby-lang
<matip> I could install it using: # JAVA_HOME=....; gem install stanford-core-nlp
<matip> but it's weird
<matip> if I do echo $JAVA_HOME, it's set
<RyanScottLewis> I don't understand why it depends on Java at all
<matip> because it's a binding, I suppose
<RyanScottLewis> It uses Java, even though you are using MRI? Funky
<matip> I mean, it is
<RyanScottLewis> `sudo echo $JAVA_HOME`
<matip> stanford-core-nlp works on top of the stanford lib for NLP written in Java
<RyanScottLewis> You did `sudo gem install` so it's running as root user
<matip> % sudo echo $JAVA_HOME
<matip> /usr/lib/jvm/java-7-openjdk-amd64/
<RyanScottLewis> awkward... hm.
<matip> I checked that before.. that's why I think it's weird :P
<RyanScottLewis> `cat /var/lib/gems/1.9.1/gems/rjb-1.4.3/ext/gem_make.out`
<matip> % ls /var/lib/gems/1.9.1/gems/rjb-1.4.3/ext/
<matip> depend extconf.rb jp_co_infoseek_hp_arton_rjb_RBridge.h load.o mkmf.log riconv.c riconv.o rjbcore.so rjbexception.o rjb.o
<matip> extconf.h jniwrap.h load.c Makefile RBridge.java riconv.h rjb.c rjbexception.c rjb.h
<matip> no gen_make.out
<RyanScottLewis> `cd /var/lib/gems/1.9.1/gems/rjb-1.4.3/ext/ && make && make install`
<RyanScottLewis> That might show why the rjb build failed
<RyanScottLewis> It might even show the same error O_o hopefully not
<matip> make: Nothing to be done for `all'.
<matip> % make install
<matip> installing default rjbcore libraries
<RyanScottLewis> try just `make install` then
<RyanScottLewis> yup
<RyanScottLewis> went off without a hitch?
<matip> yep
<matip> that's all it printed
<RyanScottLewis> then the compilation task in the makefile must be named something special
<RyanScottLewis> and they didnt use a default task
<matip> let me check
<RyanScottLewis> Problem is, the gem you want isn't failing.. the library that the library that your gem to install depends on is failing =x
<RyanScottLewis> haha
<matip> how is that related with the JAVA_HOME not set when it's actually set?
<RyanScottLewis> Well, if we figure out why `rjb` thinks that JAVA_HOME is empty, then we can fix it and you can install any gem that depends on it
<RyanScottLewis> without having to remember to add JAVA_HOME=... everytime
<RyanScottLewis> Look at this: http://paste.kde.org/632024/
<RyanScottLewis> It installed perfectly fine for me and I have no JAVA_HOME set
<matip> oh
<RyanScottLewis> O_o Now that is weird
<matip> no idea
Denommus has joined #ruby-lang
<RyanScottLewis> Can you find the extconf.rb for the rdj gem?
<RyanScottLewis> Somewhere in /var/lib/gems/1.9.1/gems/rjb-1.4.3/
<matip> done
<matip> pasting..
<RyanScottLewis> line 53: raise "JAVA_HOME is not set."
<RyanScottLewis> I got it as well
<RyanScottLewis> so if the `javahome` var is not set, it will raise that error - line 31 says: javahome = ENV['JAVA_HOME']
<matip> this is mine
<RyanScottLewis> After line 31, add `puts "=-=--==--="; p javahome; puts "-=-==--=-=
<RyanScottLewis> "` and try to gem install again
<RyanScottLewis> it should hopefully print out the `javahome` var and tell us if its empty
<matip> [2] pry(main)> ENV['JAVA_HOME']
<matip> => "/usr/lib/jvm/java-7-openjdk-amd64/"
<matip> lol, it's weird ^
<RyanScottLewis> Right, in pry. But what about at install time
<RyanScottLewis> Your Ruby installation seems to be working fine but something if borking the ENV vars when you gem install.. which is not cool lol
<RyanScottLewis> is*
<matip> installing..
<matip> ahm, I installed it with JAVA_HOME=...; gem install
<RyanScottLewis> Oh crap, you might have to package the gem with you custom code for printing out `javahome` and install that rjb.gem file
<matip> I've to uninstall it first, wait
<RyanScottLewis> This is ridiculous >_<
<RyanScottLewis> RubyGems removes the .gemspec file to another directory
<matip> lool
<matip> (I didn't change anything)
<RyanScottLewis> ....
<RyanScottLewis> Yanno what... let's just pretend we did something to fix it
<RyanScottLewis> haha
<matip> haha
<matip> alright, thank you!!
<matip> :P
<RyanScottLewis> Well, enjoy playing around with that haha no problem
<matip> I'll upgrade ruby just in case
francisfish has quit [Ping timeout: 260 seconds]
<matip> wtf!?
<matip> % ruby -v
<matip> ruby 1.9.3p194 (2012-04-20 revision 35410) [x86_64-linux]
<matip> who said mine was 1.9.1?
<matip> [matias@localhost:/var/lib/gems] 1:21:20
<matip> % ls
<matip> 1.9.1
<matip> ...I have no idea, but I know better ways to spend time so I'll just assume it's correct lol
<RyanScottLewis> Hm
<RyanScottLewis> In the error message, it was using the /var/lib/gems/1.9.1 dir
<RyanScottLewis> How many Rubies ya got on there?
<matip> yeah, because it's the only dir in gems/
<RyanScottLewis> Oh I didnt read that
<matip> I suppose I only have one ruby installed
<matip> <matip> [matias@localhost:/var/lib/gems] 1:21:20
<matip> <matip> % ls
<matip> <matip> 1.9.1
<RyanScottLewis> That is... um
<RyanScottLewis> really strange to say the least
<matip> anyway
<RyanScottLewis> irb then `p RUBY_DESCRIPTION; nil`
<RyanScottLewis> Just outta curiosity
<matip> based on aptitude I don't have ruby 1.9.3 installed
<matip> only 1.9.1
<matip> but ruby -v says it's 1.9.3
<matip> xD
<RyanScottLewis> `which ruby`
<matip> /usr/bin/ruby
<RyanScottLewis> ls /usr/bin/ruby
<RyanScottLewis> its prolly a symlink
<matip> [1] pry(main)> p RUBY_DESCRIPTION; nil
<matip> "ruby 1.9.3p194 (2012-04-20 revision 35410) [x86_64-linux]"
<matip> => nil
<RyanScottLewis> Dude wow
<RyanScottLewis> What is going on
<matip> /usr/bin/ruby -> /etc/alternatives/ruby -> /usr/bin/ruby1.9.1
<matip> haha
<RyanScottLewis> O_O
<matip> don't worry...
<firefux> its a debian/ubuntu thing
<RyanScottLewis> I'm thinking the maintainers of MRI in debian screwed this up
<RyanScottLewis> yeah
<matip> yep, and the testing version :P
<RyanScottLewis> Haha alright well I have to get back to workin
<RyanScottLewis> Talk to ya later
<matip> see you
<firefux> actually, its a ruby thing
<hagabaka> "In the name of this package, `1.9.1' indicates the Ruby library compatibility version. This package currently provides the `1.9.3' branch of Ruby, which is compatible with the `1.9.1' branch. "
<matip> I see -.-
<RyanScottLewis> So all 1.9.x version above 1.9.0 are compatible?
<RyanScottLewis> By that I mean, all bug fixes/deprecations and no feature additions?
<hagabaka> ruby1.9.1 is just the deb package name, the package version is probably 1.9.3.194-5 or something if you look closely
<matip> yeah, it is
drbrain has joined #ruby-lang
holgerno has joined #ruby-lang
havenn has joined #ruby-lang
holgerno has quit [Ping timeout: 252 seconds]
ryanf has quit [Quit: leaving]
drbrain has quit [Ping timeout: 251 seconds]
ryanf has joined #ruby-lang
reppard has quit [Quit: leaving]
fowl has quit [Ping timeout: 255 seconds]
methods has joined #ruby-lang
Nisstyre-laptop has quit [Ping timeout: 252 seconds]
gix has quit [Ping timeout: 265 seconds]
firefux has left #ruby-lang [#ruby-lang]
gix has joined #ruby-lang
chendo_ has quit [Quit: Computer has gone to sleep.]
fowl has joined #ruby-lang
fire has quit [Read error: Operation timed out]
ramonmaruko has quit [Ping timeout: 264 seconds]
sailias has quit [Quit: Leaving.]
sailias has joined #ruby-lang
sailias has quit [Client Quit]
sailias has joined #ruby-lang
chendo_ has joined #ruby-lang
Denommus has quit [Ping timeout: 276 seconds]
drbrain has joined #ruby-lang
holgerno has joined #ruby-lang
fire has joined #ruby-lang
holgerno has quit [Ping timeout: 252 seconds]
ivanoats has joined #ruby-lang
ivanoats has quit [Changing host]
ivanoats has joined #ruby-lang
drbrain has quit [Ping timeout: 244 seconds]
gnufied has joined #ruby-lang
srbaker has quit [Quit: Computer has gone to sleep.]
havenn has quit [Ping timeout: 265 seconds]
srbaker has joined #ruby-lang
srbaker has quit [Client Quit]
gnufied has quit [Quit: Leaving.]
havenn has joined #ruby-lang
stevechiagozie has quit [Ping timeout: 246 seconds]
pablo_ has quit [Read error: Connection reset by peer]
mercwithamouth has joined #ruby-lang
gnufied has joined #ruby-lang
gnufied has quit [Client Quit]
gnufied has joined #ruby-lang
drbrain has joined #ruby-lang
holgerno has joined #ruby-lang
holgerno has quit [Ping timeout: 245 seconds]
nick_h has quit [Ping timeout: 260 seconds]
drbrain has quit [Ping timeout: 265 seconds]
nick_h has joined #ruby-lang
stonerfish has joined #ruby-lang
chendo_ has quit [Quit: Computer has gone to sleep.]
mpan has quit [Ping timeout: 260 seconds]
mercwithamouth has quit [Ping timeout: 244 seconds]
mjio has quit []
mercwithamouth has joined #ruby-lang
rippa has joined #ruby-lang
wallerdev_ has joined #ruby-lang
wallerdev has quit [Read error: Connection reset by peer]
wallerdev_ is now known as wallerdev
fire is now known as megharsh
s4muel_ has quit [Remote host closed the connection]
s4muel has joined #ruby-lang
ttilley has joined #ruby-lang
chendo_ has joined #ruby-lang
tbuehlmann has joined #ruby-lang
holgerno has joined #ruby-lang
drbrain has joined #ruby-lang
rippa has quit [Ping timeout: 240 seconds]
holgerno has quit [Ping timeout: 252 seconds]
Spaceghostc2c has quit [Excess Flood]
ivanoats has quit [Remote host closed the connection]
ivanoats has joined #ruby-lang
|Vargas| has joined #ruby-lang
|Vargas| has joined #ruby-lang
|Vargas| has quit [Changing host]
ramonmaruko has joined #ruby-lang
Spaceghostc2c has joined #ruby-lang
drbrain has quit [Ping timeout: 256 seconds]
nertzy2 has joined #ruby-lang
jaz-hands has joined #ruby-lang
ivanoats has quit [Ping timeout: 255 seconds]
nertzy3 has quit [Ping timeout: 246 seconds]
hexreel has quit [Ping timeout: 244 seconds]
rippa has joined #ruby-lang
havenn has quit [Remote host closed the connection]
Asher2 has quit [Quit: Leaving.]
ebouchut has joined #ruby-lang
ebouchut has quit [Client Quit]
tbuehlmann has quit [Quit: Yaaic - Yet another Android IRC client - http://www.yaaic.org]
gsav has joined #ruby-lang
dhruvasagar has joined #ruby-lang
RyanScottLewis has quit [Remote host closed the connection]
gsav has quit [Ping timeout: 255 seconds]
ssl has joined #ruby-lang
gsav has joined #ruby-lang
davidbalbert is now known as davidbalber|away
jonahR has quit [Quit: jonahR]
rue has quit [Remote host closed the connection]
rue has joined #ruby-lang
rue_XIV has joined #ruby-lang
stonerfish has quit [Quit: Leaving.]
gsav has quit [Ping timeout: 244 seconds]
rue has quit [Ping timeout: 260 seconds]
drbrain has joined #ruby-lang
holgerno has joined #ruby-lang
hakunin has quit [Remote host closed the connection]
holgerno has quit [Ping timeout: 255 seconds]
vlad_starkov has joined #ruby-lang
havenn has joined #ruby-lang
drbrain has quit [Ping timeout: 260 seconds]
rippa has quit [Ping timeout: 240 seconds]
<yorickpeterse> Morning
havenn_ has joined #ruby-lang
havenn has quit [Ping timeout: 244 seconds]
vlad_starkov has quit [Remote host closed the connection]
xalei has joined #ruby-lang
t_ has quit [Remote host closed the connection]
stardiviner has joined #ruby-lang
gnufied has quit [Quit: Leaving.]
sush24 has joined #ruby-lang
glebm has joined #ruby-lang
ssl has quit [Remote host closed the connection]
holgerno has joined #ruby-lang
drbrain has joined #ruby-lang
emocakes has joined #ruby-lang
gnufied has joined #ruby-lang
holgerno has quit [Ping timeout: 250 seconds]
Nisstyre-laptop has joined #ruby-lang
drbrain has quit [Ping timeout: 256 seconds]
ryanf has quit [Ping timeout: 244 seconds]
holgerno has joined #ruby-lang
sush24 has quit [Quit: This computer has gone to sleep]
sn0wb1rd has quit [Read error: Connection reset by peer]
sn0wb1rd has joined #ruby-lang
francisfish has joined #ruby-lang
sush24 has joined #ruby-lang
Nisstyre-laptop has quit [Quit: Leaving]
dc5ala has joined #ruby-lang
chendo_ has quit [Quit: Computer has gone to sleep.]
mercwithamouth has quit [Ping timeout: 246 seconds]
sush24 has quit [Ping timeout: 245 seconds]
ryanf has joined #ruby-lang
cyri_ has joined #ruby-lang
Spaceghostc2c has quit [Excess Flood]
tdy has quit [Read error: Connection reset by peer]
Spaceghostc2c has joined #ruby-lang
ryanf has quit [Ping timeout: 265 seconds]
tyman has joined #ruby-lang
agarcia has joined #ruby-lang
sush24 has joined #ruby-lang
marr has joined #ruby-lang
chendo_ has joined #ruby-lang
<whitequark> ugh
<whitequark> oh, that file is really ancient.
sent-hil has joined #ruby-lang
sent-hil has quit [Remote host closed the connection]
<yorickpeterse> wat
<yorickpeterse> How is that related?
wallerdev has quit [Quit: wallerdev]
drbrain has joined #ruby-lang
nick_h has quit [Ping timeout: 252 seconds]
nick_h has joined #ruby-lang
_whitelogger has joined #ruby-lang
ryanf has joined #ruby-lang
chendo_ has joined #ruby-lang
ryanf has quit [Ping timeout: 260 seconds]
drbrain has joined #ruby-lang
anannie has quit [Ping timeout: 252 seconds]
goshakkk has joined #ruby-lang
<whitequark> charliesome: yeah, strange
<whitequark> ah, no, it's actually not
<whitequark> I was upgrading my DNS :3
apeiros_ has joined #ruby-lang
<whitequark> should work now
havenn_ has quit [Ping timeout: 260 seconds]
drbrain has quit [Ping timeout: 260 seconds]
vlad_starkov has joined #ruby-lang
lsegal has quit [Quit: Quit: Quit: Quit: Stack Overflow.]
thufir_ has joined #ruby-lang
vlad_starkov has quit [Remote host closed the connection]
thufir_ has quit [Remote host closed the connection]
gnufied has quit [Quit: Leaving.]
gnufied has joined #ruby-lang
zmack has joined #ruby-lang
kurko_ has joined #ruby-lang
larrylv has joined #ruby-lang
larrylv has quit [Ping timeout: 256 seconds]
chendo_ has quit [Quit: Computer has gone to sleep.]
ivanoats has joined #ruby-lang
ivanoats has quit [Changing host]
ivanoats has joined #ruby-lang
s1n4 has joined #ruby-lang
jbsan has joined #ruby-lang
sush24 has quit [Quit: This computer has gone to sleep]
ivanoats has quit [Ping timeout: 246 seconds]
sush24 has joined #ruby-lang
anannie has joined #ruby-lang
drbrain has joined #ruby-lang
nick_h has quit [Ping timeout: 260 seconds]
nick_h has joined #ruby-lang
dhruvasagar has quit [Ping timeout: 246 seconds]
Banistergalaxy has quit [Ping timeout: 252 seconds]
Banistergalaxy has joined #ruby-lang
drbrain has quit [Ping timeout: 265 seconds]
nick_h has quit [Ping timeout: 265 seconds]
nick_h has joined #ruby-lang
goshakkk has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
krz has quit [Quit: krz]
leopard_me has joined #ruby-lang
sepp2k has joined #ruby-lang
s1n4 has quit [Ping timeout: 244 seconds]
<dominikh> it didn't work for me some hours ago, works now
anannie has quit [Remote host closed the connection]
s1n4 has joined #ruby-lang
kurko_ has quit [Ping timeout: 255 seconds]
megharsh has quit [Quit: WeeChat 0.3.9.2]
jashank has quit [Changing host]
jashank has joined #ruby-lang
fire has joined #ruby-lang
stevechiagozie has joined #ruby-lang
vlad_starkov has joined #ruby-lang
byterussian has joined #ruby-lang
cyri_ has quit [Quit: cyri_]
vlad_starkov has quit [Ping timeout: 250 seconds]
stevechiagozie has quit [Ping timeout: 246 seconds]
jxie has quit [Quit: leaving]
byterussian has left #ruby-lang [#ruby-lang]
ssl has joined #ruby-lang
vlad_starkov has joined #ruby-lang
ssl has quit [Ping timeout: 260 seconds]
drbrain has joined #ruby-lang
stevechiagozie has joined #ruby-lang
vlad_starkov has quit [Read error: Connection reset by peer]
vlad_starkov has joined #ruby-lang
drbrain has quit [Ping timeout: 264 seconds]
ivanoats has joined #ruby-lang
ivanoats has quit [Changing host]
ivanoats has joined #ruby-lang
ivanoats has quit [Ping timeout: 250 seconds]
stevechiagozie has quit [Ping timeout: 255 seconds]
holgerno has quit [Quit: Linkinus - http://linkinus.com]
Rarrikins has joined #ruby-lang
fire has quit [Quit: WeeChat 0.3.9.2]
caemir has left #ruby-lang ["Je pars..."]
rolfb has joined #ruby-lang
vlad_starkov has quit [Read error: Connection reset by peer]
stevechiagozie has joined #ruby-lang
Rarrikins has quit [Remote host closed the connection]
dc5ala has quit [Quit: Ex-Chat]
stevechiagozie has quit [Ping timeout: 246 seconds]
chendo_ has joined #ruby-lang
Rarrikins has joined #ruby-lang
x0F has quit [Disconnected by services]
x0F_ has joined #ruby-lang
Rarrikins has quit [Remote host closed the connection]
vlad_starkov has joined #ruby-lang
x0F_ is now known as x0F
Rarrikins has joined #ruby-lang
vlad_starkov has quit [Read error: Connection reset by peer]
Banistergalaxy has quit [Ping timeout: 255 seconds]
vlad_starkov has joined #ruby-lang
Banistergalaxy has joined #ruby-lang
slyphon has quit [Read error: Connection reset by peer]
slyphon has joined #ruby-lang
adambeynon has joined #ruby-lang
larrylv has joined #ruby-lang
rolfb has quit [Quit: Linkinus - http://linkinus.com]
s1n4 has quit [Quit: leaving]
cyri_ has joined #ruby-lang
vlad_starkov has quit [Remote host closed the connection]
Rarrikins has quit [Remote host closed the connection]
Rarrikins has joined #ruby-lang
fire has joined #ruby-lang
rcvalle has joined #ruby-lang
drbrain has joined #ruby-lang
drbrain has quit [Ping timeout: 265 seconds]
burgestrand has joined #ruby-lang
mwjcomputing has joined #ruby-lang
llaskin has joined #ruby-lang
srbaker has joined #ruby-lang
spastorino has joined #ruby-lang
slyphon has quit [Ping timeout: 245 seconds]
matip has quit [Read error: Connection reset by peer]
breakingthings has joined #ruby-lang
matip has joined #ruby-lang
fjfish has joined #ruby-lang
benwoody has quit [Ping timeout: 244 seconds]
francisfish has quit [Read error: Connection reset by peer]
benteaa has quit [Ping timeout: 244 seconds]
sheerun has quit [Ping timeout: 244 seconds]
ivanoats has joined #ruby-lang
ivanoats has quit [Changing host]
ivanoats has joined #ruby-lang
swav has joined #ruby-lang
benteaa has joined #ruby-lang
benwoody has joined #ruby-lang
mercwithamouth has joined #ruby-lang
sheerun has joined #ruby-lang
ivanoats has quit [Ping timeout: 265 seconds]
slyphon has joined #ruby-lang
spastorino has quit [Quit: spastorino]
vlad_starkov has joined #ruby-lang
vlad_starkov has quit [Read error: Connection reset by peer]
srbaker has quit [Quit: Computer has gone to sleep.]
vlad_starkov has joined #ruby-lang
stardiviner has quit [Quit: my website: http://stardiviner.dyndns-blog.com/]
charliesome has quit [Quit: Textual IRC Client: www.textualapp.com]
jonahR has joined #ruby-lang
slyphon has quit [Ping timeout: 245 seconds]
adambeynon has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
jxie has joined #ruby-lang
drbrain has joined #ruby-lang
sush24 has quit [Quit: This computer has gone to sleep]
drbrain has quit [Ping timeout: 252 seconds]
kith_ has joined #ruby-lang
stevechiagozie has joined #ruby-lang
kith has quit [Disconnected by services]
kith_ is now known as kith
larrylv has quit [Read error: Connection reset by peer]
llaskin has quit [Changing host]
llaskin has joined #ruby-lang
larrylv has joined #ruby-lang
RubyHead has joined #ruby-lang
tbuehlmann has joined #ruby-lang
RubyHead has quit [Client Quit]
RubyHead has joined #ruby-lang
vlad_sta_ has joined #ruby-lang
kurko_ has joined #ruby-lang
goshakkk has joined #ruby-lang
gsav has joined #ruby-lang
mksm has quit [Ping timeout: 255 seconds]
vlad_starkov has quit [Ping timeout: 260 seconds]
mistym has joined #ruby-lang
mistym has quit [Changing host]
mistym has joined #ruby-lang
s1n4 has joined #ruby-lang
mistym has quit [Remote host closed the connection]
zmack has quit [Remote host closed the connection]
neocoin has quit [Remote host closed the connection]
gsav has quit [Quit: Lost terminal]
gsav has joined #ruby-lang
methods has joined #ruby-lang
methods has left #ruby-lang [#ruby-lang]
thone has joined #ruby-lang
larrylv_ has joined #ruby-lang
mistym has joined #ruby-lang
mistym has quit [Changing host]
mistym has joined #ruby-lang
mksm has joined #ruby-lang
larrylv has quit [Ping timeout: 246 seconds]
mistym has quit [Remote host closed the connection]
thone_ has quit [Ping timeout: 255 seconds]
agarcia has quit [Quit: Konversation terminated!]
s1n4 has quit [Quit: leaving]
JoelMcCracken has joined #ruby-lang
slyphon has joined #ruby-lang
larrylv_ has quit [Remote host closed the connection]
larrylv has joined #ruby-lang
vlad_starkov has joined #ruby-lang
vlad_sta_ has quit [Read error: Connection reset by peer]
vlad_sta_ has joined #ruby-lang
goshakkk has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
rippa has joined #ruby-lang
briantrust has joined #ruby-lang
gnufied has quit [Quit: Leaving.]
swav has quit [Remote host closed the connection]
vlad_starkov has quit [Ping timeout: 252 seconds]
tndrbt has joined #ruby-lang
vlad_sta_ has quit [Ping timeout: 255 seconds]
jaz-hands has joined #ruby-lang
cron_ has joined #ruby-lang
mistym has joined #ruby-lang
mistym has quit [Changing host]
mistym has joined #ruby-lang
ssl has joined #ruby-lang
drbrain has joined #ruby-lang
AndChat| has joined #ruby-lang
Banistergalaxy has quit [Ping timeout: 244 seconds]
drbrain has quit [Read error: Operation timed out]
kain has joined #ruby-lang
jaz-hands has quit [Remote host closed the connection]
larrylv_ has joined #ruby-lang
nick_h has quit [Ping timeout: 255 seconds]
nick_h has joined #ruby-lang
larrylv has quit [Ping timeout: 246 seconds]
xalei has quit [Remote host closed the connection]
stevechiagozie has quit [Quit: leaving]
JohnBat26 has quit [Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/]
Rarrrikins has joined #ruby-lang
larrylv_ has quit [Remote host closed the connection]
larrylv has joined #ruby-lang
Rarrikins has quit [Ping timeout: 260 seconds]
stardiviner has joined #ruby-lang
linc01n has quit [Quit: ZNC - http://znc.in]
gnufied has joined #ruby-lang
larrylv has quit [Ping timeout: 256 seconds]
neocoin has joined #ruby-lang
tubbho is now known as tubbo
Asher has joined #ruby-lang
larrylv has joined #ruby-lang
gnufied has quit [Quit: Leaving.]
larrylv has quit [Remote host closed the connection]
larrylv has joined #ruby-lang
rue_XIV has left #ruby-lang [#ruby-lang]
rue has joined #ruby-lang
<rue> Achievement unlocked, two arguments with zed in a year
larrylv_ has joined #ruby-lang
<yorickpeterse> You can't really argue with the guy, it's all so common in UNIX!
<yorickpeterse> That should be a thing: UNIX uses it, your argument is invalid
larrylv has quit [Ping timeout: 256 seconds]
<apeiros_> I missed something on twitter?
vlad_starkov has joined #ruby-lang
cron_ has quit [Quit: Lost terminal]
larrylv_ has quit [Remote host closed the connection]
larrylv has joined #ruby-lang
<rue> apeiros_: Zed’s concluded that 1 email : N usernames is a good idea despite the password reset being email based…
<darix> rue: link?
vlad_starkov has quit [Ping timeout: 256 seconds]
<rue> Can’t, blocked me :D
davidbalber|away is now known as davidbalbert
fire has quit [Read error: Operation timed out]
vlad_starkov has joined #ruby-lang
antbody has joined #ruby-lang
sailias has quit [Quit: Leaving.]
larrylv_ has joined #ruby-lang
larrylv has quit [Ping timeout: 256 seconds]
larrylv has joined #ruby-lang
drbrain has joined #ruby-lang
sailias has joined #ruby-lang
tndrbt has quit [Quit: tndrbt]
leopard_me has quit [Quit: Computer has gone to sleep.]
larrylv_ has quit [Ping timeout: 246 seconds]
drbrain has quit [Ping timeout: 244 seconds]
AndChat| has quit [Read error: Connection reset by peer]
mpan has joined #ruby-lang
Banistergalaxy has joined #ruby-lang
fire has joined #ruby-lang
ssl has quit [Remote host closed the connection]
havenn has joined #ruby-lang
linc01n has joined #ruby-lang
knu has quit [Remote host closed the connection]
Rarrrikins has quit [Remote host closed the connection]
<zzak> i feel like one of those people who reads star magazine, and not just at the checkout but actually reads it
Rarrikins has joined #ruby-lang
<telemachus> zzak: If it makes you feel any better, I'm still hitting refresh every few minutes to see if dhh has (1) fixed encoding on his site and (2) fixed the acent on à la carte
<chris2> lol
knu has joined #ruby-lang
<telemachus> (Yes, I sent him a message saying "Your acute accent should be a grave.")
<telemachus> I'm that guy.
* telemachus sighs
swav has joined #ruby-lang
<tockitj> recommend me a vim plugin
<tockitj> one you use often
<bougyman> surround and repeat
<tockitj> one that you feel changes way you work
Banistergalaxy has quit [Read error: Connection reset by peer]
<tockitj> tpope, did wonderful job on surround & unimpaired
<injekt> tetris.vim
<tockitj> and pathogen and rails and vim-ruby and probably many more
<antbody> easymotion
<tockitj> what does easymotion do ?
<antbody> Motions on crack
<bougyman> tockitj: syntastic, too
<telemachus> auto-pairs
<bougyman> that's one of the ones that I just took to this year.
<antbody> Zencoding is nice too and does haml as well.
<bougyman> Supertab, of course.
Banistergalaxy has joined #ruby-lang
<zzak> telemachus: that does make me feel better, thank you :D
<bougyman> i just assume everyone's usig all of these.
<antbody> tockitj: basically it maps each word for you with a letter and highlights it. You can move really quickly in files.
<antbody> Check the github page, they have a demo there.
<telemachus> zzak: You're welcome. I live to serve.
<zzak> telemachus: you are a gentleman and a scholar, happy holidays
<tockitj> supertab is nice.. but i never got around syntastic (it remaps c-d, c-u, c-f & c-e to strangely)
<injekt> rue: that's you arguing with zed?
<telemachus> Hah.
antbody has quit [Quit: leaving]
<telemachus> rue: Lesson: rails is omakase and don't say no to Zed.
<telemachus> There ends the lesson.
<tockitj> antbody, i have normal mode commands in muscle memory - so i don't think i need easymotion
<apeiros_> rue = eeppa?
<telemachus> apeiros_: yes
swav has quit [Remote host closed the connection]
<injekt> I did not know this
<apeiros_> sometimes I'm blind, as it seems
briantrust has quit [Remote host closed the connection]
llaskin has left #ruby-lang [#ruby-lang]
Jake232 has joined #ruby-lang
<rue> Should I go with rue{- ?
<telemachus> See, that's the problem: you vary usernames and want to use your email everywhere.
jonahR has quit [Quit: jonahR]
<rue> Yep, character flaw
stonerfish has joined #ruby-lang
<zzak> noone is perfect
sush24 has joined #ruby-lang
chimkan has joined #ruby-lang
JohnBat26 has joined #ruby-lang
mistym has quit [Remote host closed the connection]
chimkan has quit [Ping timeout: 250 seconds]
swav has joined #ruby-lang
zhul_mechanos has joined #ruby-lang
Swimming_Bird has joined #ruby-lang
nick_h has quit [Ping timeout: 255 seconds]
ssl has joined #ruby-lang
ssl_ has joined #ruby-lang
ssl has quit [Read error: Connection reset by peer]
drbrain has joined #ruby-lang
blazes816 has joined #ruby-lang
swav has quit [Remote host closed the connection]
nick_h has joined #ruby-lang
jtoy has joined #ruby-lang
zz_chrismcg is now known as chrismcg
fire has quit [Quit: WeeChat 0.3.9.2]
drbrain has quit [Ping timeout: 260 seconds]
__butch__ has joined #ruby-lang
vlad_starkov has quit [Remote host closed the connection]
jonahR has joined #ruby-lang
larrylv has quit [Remote host closed the connection]
__butch__ has quit [Ping timeout: 250 seconds]
zarubin has joined #ruby-lang
mistym has joined #ruby-lang
mistym has quit [Changing host]
mistym has joined #ruby-lang
zarubin has quit [Read error: Connection reset by peer]
zarubin has joined #ruby-lang
ryanf has joined #ruby-lang
fire has joined #ruby-lang
sandbags has joined #ruby-lang
sandbags has quit [Changing host]
sandbags has joined #ruby-lang
__butch__ has joined #ruby-lang
breakingthings has quit []
chrismcg is now known as zz_chrismcg
robbyoconnor has quit [Max SendQ exceeded]
robbyoconnor has joined #ruby-lang
dhsmith has joined #ruby-lang
swav has joined #ruby-lang
msch has quit [Ping timeout: 252 seconds]
hakunin has joined #ruby-lang
msch has joined #ruby-lang
larrylv has joined #ruby-lang
srbaker has joined #ruby-lang
swav has quit [Remote host closed the connection]
ryanf has quit [Ping timeout: 256 seconds]
<andrewvos> Holiday is ending today :(
larrylv has quit [Ping timeout: 256 seconds]
<injekt> BOO HOO
<andrewvos> :(
benanne has joined #ruby-lang
fire has quit [Quit: WeeChat 0.3.9.2]
drbrain has joined #ruby-lang
banisterfiend has joined #ruby-lang
megharsh has joined #ruby-lang
drbrain has quit [Read error: Operation timed out]
io_syl has quit [Quit: Computer has gone to sleep.]
sn0wb1rd has quit [Quit: sn0wb1rd]
__butch__ has quit [Quit: Leaving.]
briantrust has joined #ruby-lang
sepp2k has quit [Ping timeout: 255 seconds]
jtoy has quit [Quit: jtoy]
sandbags has quit [Read error: Connection reset by peer]
sandbags has joined #ruby-lang
sandbags has quit [Changing host]
sandbags has joined #ruby-lang
amroo has joined #ruby-lang
ivanoats has joined #ruby-lang
sn0wb1rd has joined #ruby-lang
sandbags has quit [Remote host closed the connection]
sepp2k has joined #ruby-lang
mercwithamouth has quit [Ping timeout: 246 seconds]
srbaker has quit [Quit: Computer has gone to sleep.]
__BigO__ has joined #ruby-lang
rdsm has joined #ruby-lang
havenn has quit [Ping timeout: 260 seconds]
mwjcomputing has quit [Quit: Leaving]
rindolf has joined #ruby-lang
breakingthings has joined #ruby-lang
sailias has quit [Quit: Leaving.]
postmodern has quit [Quit: Leaving]
gnufied has joined #ruby-lang
<rue> Aww
briantrust has quit [Remote host closed the connection]
<rue> I splurged, I’m off ’til Wednesday
voker57_ has joined #ruby-lang
voker57 has quit [Ping timeout: 260 seconds]
mksm has quit [Ping timeout: 265 seconds]
ivanoats has quit [Remote host closed the connection]
ssl_ has quit [Remote host closed the connection]
Jake232 has quit [Quit: Computer has gone to sleep.]
amroo has quit [Quit: amroo]
ryanf has joined #ruby-lang
gnufied has quit [Quit: Leaving.]
briantrust has joined #ruby-lang
mksm has joined #ruby-lang
briantrust has quit [Remote host closed the connection]
ryanf has quit [Ping timeout: 255 seconds]
sailias has joined #ruby-lang
JohnBat26 has quit [Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/]
drbrain has joined #ruby-lang
nick_h has quit [Ping timeout: 260 seconds]
nick_h has joined #ruby-lang
wallerdev has joined #ruby-lang
imajes has quit [Excess Flood]
imajes has joined #ruby-lang
drbrain has quit [Ping timeout: 264 seconds]
rippa has quit [Ping timeout: 240 seconds]
ssl has joined #ruby-lang
wyhaines has joined #ruby-lang
tyman has left #ruby-lang [#ruby-lang]
ryanf has joined #ruby-lang
dhsmith has quit [Remote host closed the connection]
wallerdev has quit [Quit: wallerdev]
io_syl has joined #ruby-lang
cyri_ has quit [Quit: cyri_]
srbaker has joined #ruby-lang
rdsm has quit [Quit: This computer has gone to sleep]
havenn has joined #ruby-lang
havenn has quit [Ping timeout: 260 seconds]
cyri_ has joined #ruby-lang
enebo has joined #ruby-lang
headius has joined #ruby-lang
wallerdev has joined #ruby-lang
kurko_ has quit [Ping timeout: 255 seconds]
swav has joined #ruby-lang
briantrust has joined #ruby-lang
srbaker has quit [Quit: Computer has gone to sleep.]
mksm has quit [Ping timeout: 255 seconds]
mksm has joined #ruby-lang
drbrain has joined #ruby-lang
Spaceghostc2c has quit [Excess Flood]
Nisstyre-laptop has joined #ruby-lang
drbrain has quit [Ping timeout: 250 seconds]
Spaceghostc2c has joined #ruby-lang
briantrust has quit [Remote host closed the connection]
Guest51135 has left #ruby-lang [#ruby-lang]
loincloth has joined #ruby-lang
<loincloth> heyo
lsegal has joined #ruby-lang
<loincloth> i have what i thought was a simple, lightweight script to do some things every 15 minutes.. ignoring specific libraries, is there anything general to Ruby that would explain why this script consumes as much CPU as it possibly can? https://gist.github.com/4391833
<loincloth> it might be an issue with a specific library, but i want to look at general Ruby concerns for now
<loincloth> it's running in a constant loop, so i expected some consistent CPU, but eventually creeping to almost 100% CPU and resting there seems odd
<loincloth> there is no memory leak, just what seems like excessive CPU usage
<loincloth> it's not as if my computer is locked up, though, even with two processes like that running.. but the process manager shows almost 100% CPU for both
rcvalle has quit [Quit: Leaving]
<ryanf> loincloth: I don't really know why you would expect it to take less than 100% cpu
<ryanf> it's a very tight loop
<ryanf> you're telling it to just loop as fast as it can until the timer goes off
<rking> loincloth: Probably just do: sleep 1
<rking> loop do … sleep 1 end
<ryanf> better yet, do "sleep [the number of seconds until you want it to happen again"
<ryanf> ]
<loincloth> i'm not specifying anything about its loop speed.. i believe it will just go as fast as it can ;)
<loincloth> ah, that's a good idea
<loincloth> thanks you two
swav has quit [Remote host closed the connection]
<ryanf> right, "as fast as it can" == 100% cpu
<rking> Oh, sorry, yeah. sleep interval
<ryanf> np
enebo has quit [Quit: enebo]
<rking> Also I'd say: INTERVAL = 60 * 30 just to make it clear that it's a constant
headius has quit [Quit: headius]
sailias has quit [Quit: Leaving.]
<rindolf> Hi all.
<rindolf> So I've started writing this site in Jekyll and so far it seems really nice - http://vim.begin-site.org/ .
<rindolf> It seems much faster than http://web-cpan.shlomifish.org/latemp/ (my own offline CMS).
<loincloth> i see
arooni-mobile has joined #ruby-lang
holgerno has joined #ruby-lang
cyri_ has quit [Quit: cyri_]
sailias has joined #ruby-lang
richardjortega has joined #ruby-lang
dankest has joined #ruby-lang
holgerno_ has joined #ruby-lang
davidbalbert is now known as davidbalber|away
holgerno has quit [Ping timeout: 244 seconds]
sailias has quit [Client Quit]
sailias has joined #ruby-lang
davidbalber|away is now known as davidbalbert
havenn has joined #ruby-lang
sailias has quit [Client Quit]
cyri_ has joined #ruby-lang
BigFatFatty has joined #ruby-lang
sailias1 has joined #ruby-lang
chessguy has joined #ruby-lang
heftig has quit [Quit: leaving]
heftig has joined #ruby-lang
swav has joined #ruby-lang
holgerno has joined #ruby-lang
sailias1 has quit [Ping timeout: 244 seconds]
sailias1 has joined #ruby-lang
holgerno_ has quit [Ping timeout: 252 seconds]
havenn has quit [Ping timeout: 246 seconds]
mercwithamouth has joined #ruby-lang
tyman has joined #ruby-lang
tyman has left #ruby-lang [#ruby-lang]
drbrain has joined #ruby-lang
sush24 has quit [Quit: This computer has gone to sleep]
imajes has quit [Excess Flood]
imajes has joined #ruby-lang
drbrain has quit [Ping timeout: 244 seconds]
JoelMcCracken has quit [Ping timeout: 252 seconds]
dhsmith has joined #ruby-lang
jtoy has joined #ruby-lang
rindolf has quit [Quit: Yay! I'm a llama again. http://www.shlomifish.org/]
nazty has quit [Quit: WeeChat 0.3.9.2]
naz has quit [Remote host closed the connection]
eileen_ has joined #ruby-lang
loincloth has quit [Ping timeout: 245 seconds]
anannie has joined #ruby-lang
imajes has quit [Excess Flood]
vlad_starkov has joined #ruby-lang
imajes has joined #ruby-lang
m3nd3s has joined #ruby-lang
thufir_ has joined #ruby-lang
mercwithamouth has quit [Ping timeout: 252 seconds]
ssl has quit [Remote host closed the connection]
benanne has quit [Quit: kbai]
cored has joined #ruby-lang
cored has joined #ruby-lang
cored has quit [Changing host]
nazty has joined #ruby-lang
slyphon has quit [Ping timeout: 245 seconds]
tonni has quit [Remote host closed the connection]
xalei has joined #ruby-lang
thufir_ has quit [Quit: Leaving.]
cored has quit [Client Quit]
mistym has quit [Remote host closed the connection]
jtoy has quit [Quit: jtoy]
* Ober hunts for a way to comment out a block in erb
<whitequark> Ober: - if false
holgerno has quit [Quit: Linkinus - http://linkinus.com]
mjio has joined #ruby-lang
<darix> whitequark: unless true
<darix> Ober: it is not "if 0"^^
<Ober> =begin/=end
<whitequark> Ober: do they actually work in erb?
<whitequark> ah, <%\n=begin\n%> works. but it's ugly through.
<Ober> ahh
<Ober> missed the importance of \n
vlad_starkov has quit [Read error: Connection reset by peer]
RubyHead has quit []
mistym has joined #ruby-lang
mistym has quit [Changing host]
mistym has joined #ruby-lang
yfeldblum has joined #ruby-lang
drbrain has joined #ruby-lang
slyphon has joined #ruby-lang
reppard has joined #ruby-lang
tbuehlmann has quit [Remote host closed the connection]
drbrain has quit [Ping timeout: 252 seconds]
RubyHead has joined #ruby-lang
jtoy has joined #ruby-lang
Spaceghostc2c has quit [Excess Flood]
jtoy_ has joined #ruby-lang
ssl has joined #ruby-lang
agile has quit [Quit: Ex-Chat]
Spaceghostc2c has joined #ruby-lang
jtoy has quit [Ping timeout: 245 seconds]
wyhaines has quit [Read error: Connection reset by peer]
jtoy_ is now known as jtoy
jtoy has quit [Client Quit]
wyhaines has joined #ruby-lang
solars has quit [Read error: Operation timed out]
breakingthings has quit []
scottschecter has joined #ruby-lang
Spaceghostc2c has quit [Excess Flood]
Spaceghostc2c has joined #ruby-lang
__BigO__ has quit [Remote host closed the connection]
mhall has joined #ruby-lang
<mhall> Hello all. A question on Ranges and Range like entities. Let's say I want to have Range such as 1,2,7 in addition to 1..7 or 1...7 . Is there a nice way of representing this or interpreting it without having to do something custom?
<heftig> mhall: that's not a range
<heftig> [1,2,7]
<heftig> a range only has a startpoint an endpoint, and always contains everything in-between (optinally excluding the actual endpoint)
<mhall> Right, I get why it isn't. But I'm trying to understand the further applications of the concept. Is there something in Pickaxe or elsewhere which explains the different methods of slicing that are possible?
<heftig> mhall: slicing of what?
<mhall> I've got a web service, where I'd like people to be able to pass me a Range, Comma list, or single Integer, that I'll be using to perform some operations on their behalf. In most cases they'll want to do it on a range of numbers. But I could see some cases where a handful of values would be desired in CSV style. So I was trying to see what possibilities existed natively, to avoid wheel reinvention.
<injekt> mhall: you're parsing them from string form?
mercwithamouth has joined #ruby-lang
<mhall> The input is JSON, so I can detect if they have supplied an Array, versus Integer, versus a String.
<heftig> mhall: Array#slice, Array#values_at, Array#select
<injekt> mhall: then I still have no idea what you need to do, you should provide an example of input and desired output
slyphon has quit [Ping timeout: 245 seconds]
<mhall> It's a bit obtuse, I admit. Basically, the web service is a protocol mutator, and the user can specify which mutations I should run. So I was looking at the most flexible ways to allow them to do either a single mutation, or a range of mutations, or a few specific ones (CSV), and trying to think how I could neatly allow all of these.
<injekt> mhall: blah blah blah
<injekt> that's all i just saw
<mhall> It's pretty clear how to allow a single one, if they supply a specific Integer, or a Range in a string. Comma separated is a bit trickier.
<injekt> mhall: make it simple, you need a method to accept an input of a certain type and return something, right? what is that?
<lupine> ...?mutations=[....]
<lupine> or the POST equivalent
briantrust has joined #ruby-lang
Rarrrikins has joined #ruby-lang
<mhall> The input could be Integer, Array of Integer, or String (which could be a range or CSV of specific Integers). Then, the mutations would be played back, and some stuff would be returned along with HTTP 200 or an appropriate error code.
<mhall> "Some stuff" -> statistics about what got played and how it went
<injekt> that still doesn't help
<injekt> 'some stuff' is no less helpful than 'statistics about what got played and how it went'
<mhall> The part I wasn't sure about, was if there was a good way of taking a String containing 1,3,5,42, and cleanly converting it to, for example, the Ruby object [1, 3, 5, 42] .
Rarrikins has quit [Ping timeout: 260 seconds]
<injekt> string.split(/\s*,\s*/)
<injekt> .map(&:to_i)
|Vargas| has quit [Ping timeout: 265 seconds]
<mhall> Yeah, that does look good to me too.
<mhall> Sometimes, you just need a bit of a hand to think through the best way. :)
<mhall> Thanks!
slyphon has joined #ruby-lang
Darkspiel has joined #ruby-lang
Darkspiel has quit [Read error: Connection reset by peer]
<injekt> mhall: maybe you're looking for something like this? https://gist.github.com/1858eafe0d93ff35edd0
<mhall> Yeah, that's 90% of it for sure.
<darix> injekt: why no \a\z in the first regexp?
nertzy3 has joined #ruby-lang
havenn has joined #ruby-lang
nertzy2 has quit [Ping timeout: 252 seconds]
drbrain has joined #ruby-lang
briantrust has quit [Remote host closed the connection]
narya has joined #ruby-lang
narya_ has joined #ruby-lang
narya_ has quit [Client Quit]
<narya> Hi thurr fellow humans. I am starting an affair with Ruby (don't tell Python) and I just finished reading "Why's (Poignant) Guide To Ruby". Now I am waiting for some other books to come by mail, but til then - any tips what I should do next? (I am guessing you get questions like these often.. sorry for that)
<lupine> just write code, I'd say
<lupine> do euler in ruby, if you don't have anything pressing to write
<narya> my problem is, I am learning Ruby to be able to modify and contribute to this project
<lupine> focus on being as idiomatically rubyish as possible
<narya> so I don't really have "anything to write"
<lupine> you probably already know how to program, after all
<narya> i do : )
<banisterfiend> narya: use pry to explore the ruby standard library, or explore any gems you're interested in
drbrain has quit [Ping timeout: 255 seconds]
<narya> syntax highlighting just made me come. thanks for the quick responses
zhul_mechanos has quit [Quit: zhul_mechanos]
<darix> banisterfiend: need more infos for the pry-coolline problem?
cyri_ has quit [Quit: cyri_]
<banisterfiend> darix: nah, i already told the cool line author :)
<darix> ah ok
<banisterfiend> darix: it's due to there being nils in the completion list, your'e probably better off filing it here though in case he forgets: https://github.com/mon-ouie/coolline
jackhammer2022 has joined #ruby-lang
<darix> aha Mon_Ouie
<darix> banisterfiend: well i didnt anything evil to it!
mercwithamouth has quit [Ping timeout: 265 seconds]
jtoy has joined #ruby-lang