<havenwood>
stephenmac7: If there's no state, module. One instance of state, singleton. Multiple instances of state, class.
<stephenmac7>
I need absolutely no state, but if I have a module, it won't match in a case statement, right?
<stephenmac7>
If I have `module Test; end`, then `Test === Test` is not true
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<stephenmac7>
havenwood: Looks like Singleton is made for something else
<havenwood>
stephenmac7: Say more about what you're trying to do/
<havenwood>
stephenmac7: Ah, I kinda see what you're saying.
<stephenmac7>
I'm trying to simulate a sum type. I have a class that outputs a list of actions for some other piece of code to do and sometimes more information has to be provided than just what action needs to be performed
<havenwood>
stephenmac7: I don't quite follow.
<havenwood>
stephenmac7: Show the code you have so far? That might give context.
<havenwood>
>> module Test; class << self; alias === == end end; Test === Test
<ruby[bot]>
havenwood: I'm terribly sorry, I could not evaluate your code because of an error: NoMethodError:undefined method `[]' for nil:NilClass
envex has quit [Remote host closed the connection]
<havenwood>
#=> true
envex has joined #ruby
<havenwood>
stephenmac7: You can define threequals yourself, but I suspect there's a better way.
<havenwood>
I just don't quite grasp why you're doing what you're doing to know what to recommend.
graphene has quit [Remote host closed the connection]
<havenwood>
stephenmac7: It's nicer to do structs like: Action = Struct.new :to
<havenwood>
stephenmac7: Often nicer yet, with Ruby 2.5: Action. = Struct.new :to, keyword_init: true
<Zarthus>
what about just using symbols for this?
<havenwood>
stephenmac7: Then you can Action.new(to: 'Reduce')
<Zarthus>
Isn't essentially what you want just a constant?
<stephenmac7>
Zarthus: That's exactly what I was doing originally. But then I needed to have one that has a value associated with it.
lxsameer has joined #ruby
<stephenmac7>
But yes, all I want is a named constant that is its own type
<havenwood>
stephenmac7: All types are Object.
<havenwood>
There is one type.
<stephenmac7>
havenwood: The Action is just meant to be a super-class so that Action === Reduce, Action === Increase, Action === Switch.new('something)
<havenwood>
stephenmac7: Ahhh
<stephenmac7>
Sorry, class.
roamingdog has joined #ruby
<stephenmac7>
(and then also Reduce === Reduce, Increase === Increase, Switch === Switch.new("Something") )
<havenwood>
I like how influences from other languages lead to different ways of trying to do things.
<havenwood>
We live in the frontier of code.
tolerablyjake has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<Zarthus>
I would still prefer a method with text in ruby
<stephenmac7>
Yeah, it is interesting. Ruby kind of lets you do everything.
cthulchu has quit [Ping timeout: 260 seconds]
<stephenmac7>
Zarthus: What do you mean?
<Zarthus>
.identical? over ===, but that's just me bikeshedding
<stephenmac7>
The text shows which method is doing the comparison
<al2o3-cr>
=== is case equality
<stephenmac7>
=== was always confusing to me since it looks like it should be symmetric, but isn't. It's not always the case that X === Y <=> Y === X
roamingdog has quit [Ping timeout: 264 seconds]
<Zarthus>
oh, === is an actual operator
<Zarthus>
I... was unaware.
<havenwood>
stephenmac7: threequals in ruby is just meant as a match operator - it's used by case, etc
<havenwood>
stephenmac7: It's not meant to be used directly
bradleyprice has joined #ruby
<havenwood>
it's kinda inverted from expectation
<stephenmac7>
havenwood: Yeah, I'm using it for case. Looks like someone wrote a gem doing what I'm looking for, but I feel like adding a gem is overkill: https://github.com/txus/adts
<myndzi>
i'm not familiar with threading, and i'm trying to process a big bunch of data by streaming gzipped files from s3 to a tempfile on disk and then reuploading them. i'm concerned that if i try to speed it up with parallel processes i might wind up corrupting stuff
<myndzi>
it seems likely to be well-behaved, but i don't know how to be sure... any advice?
podlech has quit [Quit: WeeChat 2.1]
nvh^ has quit [Ping timeout: 260 seconds]
BloopMonster has joined #ruby
lunarkitty7 has joined #ruby
graphene has quit [Remote host closed the connection]
graphene has joined #ruby
Yxhuvud has quit [Read error: Connection reset by peer]
Yxhuvud has joined #ruby
lxsameer has joined #ruby
za1b1tsu has joined #ruby
amar_ has joined #ruby
thinkpad has quit [Quit: lawl]
amar_ has quit [Ping timeout: 276 seconds]
<gizmore>
myndzi: only hint i can give is that Thread.current[hash] can be used to store thread specific data
<gizmore>
like Thread.current[:gizmore_foo] = Haha.new
<gizmore>
for thread variables
<gizmore>
:)
lxsameer has quit [Ping timeout: 255 seconds]
<apeiros_>
myndzi: sounds like an IO bound problem, not CPU bound. how do you intend to parallelize it?
lxsameer has joined #ruby
apeiros_ is now known as apeiros
thinkpad has joined #ruby
amar_ has joined #ruby
lxsameer has quit [Ping timeout: 276 seconds]
armyriad has quit [Ping timeout: 256 seconds]
foxxx0 has quit [Quit: foxxx0]
ricer2 has joined #ruby
foxxx0 has joined #ruby
suukim has joined #ruby
armyriad has joined #ruby
mupt has joined #ruby
intheclouddan has joined #ruby
mupt has quit [Ping timeout: 256 seconds]
jamesaxl has joined #ruby
\void has quit [Quit: So long, and thanks for all the fish.]
ogres has quit [Quit: Connection closed for inactivity]
BloopMonster has quit [Ping timeout: 240 seconds]
schleppel has joined #ruby
amar_ has quit [Remote host closed the connection]
amar_ has joined #ruby
<gizmore>
I wonder what nickname Matz would choose
lxsameer has joined #ruby
amar_ has quit [Ping timeout: 256 seconds]
David_H_Smith has quit [Ping timeout: 256 seconds]
graphene has quit [Remote host closed the connection]
graphene has joined #ruby
TinkerT has quit [Read error: Connection reset by peer]
_nightw0lf has joined #ruby
lxsameer has quit [Ping timeout: 256 seconds]
jonjits[m] has joined #ruby
sidntrivedi012[m has joined #ruby
bascht has joined #ruby
iceskins[m] has joined #ruby
Demos[m] has joined #ruby
velu_aon[m] has joined #ruby
bastilian has joined #ruby
aviraldg has joined #ruby
ignujee[m] has joined #ruby
luna_x[m] has joined #ruby
Giphy[m] has joined #ruby
redlegion[m] has joined #ruby
Hanma[m] has joined #ruby
haylon_ has joined #ruby
turt2live has joined #ruby
KevinMGranger has joined #ruby
zalipuha[m] has joined #ruby
TinkerT has joined #ruby
nightw0lf has quit [Ping timeout: 264 seconds]
biberu has joined #ruby
conta has joined #ruby
ramfjord has joined #ruby
DTZUZO has quit [Ping timeout: 248 seconds]
tty has quit [Quit: tty]
ramfjord has quit [Ping timeout: 276 seconds]
p4p0l0 has joined #ruby
megamos has joined #ruby
p4p0l0 has quit [Remote host closed the connection]
p4p0l0 has joined #ruby
jottr has joined #ruby
megamos has quit [Ping timeout: 240 seconds]
lxsameer has joined #ruby
jottr has quit [Ping timeout: 240 seconds]
amar_ has joined #ruby
ellcs1 has joined #ruby
lxsameer has quit [Ping timeout: 264 seconds]
claudiuinberlin has joined #ruby
lxsameer has joined #ruby
p4p0l0 has quit [Remote host closed the connection]
cout has joined #ruby
<cout>
is there a name for the idiom "if __FILE__ == $0" ?
<cout>
I know what it does, but in conversation, it's a mouthful
Guest55439 has quit [Read error: Connection reset by peer]
<Zarthus>
the executable/binary?
<ellcs1>
binary sounds wrong to me.
<Zarthus>
sure but it doesn't stop us from putting it in the bin/ folder
<ellcs1>
hahah
<ellcs1>
can't argue that
Nicmavr has joined #ruby
jnollette has quit [Remote host closed the connection]
Nicmavr is now known as Guest98297
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
jnollette has joined #ruby
<cout>
perhaps it's time to invent a bacronym for bin
<Zarthus>
what's a bacronym?
<Zarthus>
is that an acronym bweaver came up with?
fullstack_ has quit [Ping timeout: 240 seconds]
<cout>
you might spell it "backronym"
Dbugger has joined #ruby
<cout>
it's where you take an existing word and turn it into an acronym, rather than inventing an acronym from scratch
apparition has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
mupt has joined #ruby
karapetyan has joined #ruby
mupt has quit [Ping timeout: 256 seconds]
nowhere_man has quit [Read error: Connection reset by peer]
nowhere_man has joined #ruby
lxsameer has quit [Ping timeout: 260 seconds]
karapetyan has quit [Remote host closed the connection]
lxsameer has joined #ruby
BloopMonster has joined #ruby
SCHAPiE has quit [Ping timeout: 256 seconds]
p4p0l0 has joined #ruby
BaroMeter has joined #ruby
nowhere_man has quit [Remote host closed the connection]
alem0lars has quit [Ping timeout: 248 seconds]
nowhere_man has joined #ruby
lxsameer has quit [Ping timeout: 265 seconds]
lxsameer has joined #ruby
apparition has joined #ruby
ogres has joined #ruby
kapil___ has quit [Quit: Connection closed for inactivity]
BaroMeter has quit [Remote host closed the connection]
BaroMeter has joined #ruby
SCHAPiE has joined #ruby
lxsameer has quit [Ping timeout: 260 seconds]
venmx has quit [Ping timeout: 256 seconds]
roamingdog has joined #ruby
FernandoBasso has quit [Quit: Leaving]
roamingdog has quit [Ping timeout: 264 seconds]
p4p0l0 has quit [Remote host closed the connection]
vonfry has quit [Remote host closed the connection]
Zaab1t has joined #ruby
cadillac_ has quit [Ping timeout: 245 seconds]
BloopMonster has quit [Ping timeout: 240 seconds]
conta has joined #ruby
cadillac_ has joined #ruby
DTZUZO has joined #ruby
karapetyan has joined #ruby
pvsukale has joined #ruby
<pvsukale>
hii anybody here
<pvsukale>
??
<elomatreb>
About 667 other people, yes
karapetyan has quit [Ping timeout: 256 seconds]
<elomatreb>
hi
lxsameer has joined #ruby
nima_m has joined #ruby
<pvsukale>
I have been working through Bob Nystorm's booking crafting interpreters. http://craftinginterpreters.com/ In the first part of book he develops a tree walk interpreter for small language using Java.
<pvsukale>
I wanted to write that interpreter in ruby. Just to learn more about ruby
hanmac has quit [Ping timeout: 260 seconds]
<pvsukale>
Which parts of Ruby I should practice/ learn about before going through this book?
nima_m_ has joined #ruby
BaroMeter has quit [Quit: Leaving]
pvsukale has quit [Quit: Page closed]
nima_m has quit [Ping timeout: 248 seconds]
nima_m_ is now known as nima_m
sidntrivedi012 has quit [Ping timeout: 265 seconds]
lxsameer has quit [Ping timeout: 268 seconds]
<Zarthus>
if you're new to ruby, don't port a java program to ruby
<Zarthus>
Ruby has different conventions, shortcuts, libraries etc. that don't translate to java, or from java to ruby.
<Zarthus>
Get a ruby book. Learn Ruby, not Ruby as a Java developer
nowhere_man has quit [Remote host closed the connection]
chouhoulis has quit [Remote host closed the connection]
bradleyprice has quit [Ping timeout: 256 seconds]
taylorzr has quit [Ping timeout: 245 seconds]
jhack has joined #ruby
apparition has quit [Quit: Bye]
mike11 has quit [Quit: Leaving.]
lxsameer has quit [Ping timeout: 240 seconds]
wnd has quit [Quit: Disconnecting from stoned server.]
lxsameer has joined #ruby
wnd has joined #ruby
kapil___ has joined #ruby
TvL2386_ has quit [Ping timeout: 240 seconds]
jhack has quit [Ping timeout: 240 seconds]
graphene has quit [Remote host closed the connection]
benjb has joined #ruby
roamingdog has joined #ruby
graphene has joined #ruby
TvL2386 has joined #ruby
benjb has quit [Remote host closed the connection]
Guest98297 has quit [Read error: Connection reset by peer]
wnd has quit [Quit: Disconnecting from stoned server.]
drale2k_ has joined #ruby
wnd has joined #ruby
<clemens3_>
Actually as a Java programmer interested in Ruby you can start with JRuby and use all the Java librariers you are familiar with, and over time learn more of the ruby side..
wnd has quit [Client Quit]
Nicmavr has joined #ruby
Nicmavr is now known as Guest48214
Guest48214 has quit [Changing host]
Guest48214 has joined #ruby
Guest48214 is now known as Kestrel-029
lxsameer has quit [Ping timeout: 260 seconds]
wnd has joined #ruby
drale2k_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
sameerynho has quit [Ping timeout: 240 seconds]
drale2k_ has joined #ruby
drale2k_ has quit [Ping timeout: 256 seconds]
BloopMonster has joined #ruby
amar has joined #ruby
Asher has quit [Ping timeout: 240 seconds]
Es0teric has joined #ruby
dipnlik has quit [Quit: Connection closed for inactivity]
lxsameer has joined #ruby
_nightw0lf has quit [Ping timeout: 256 seconds]
Es0teric has quit [Quit: Computer has gone to sleep.]
sidntrivedi012 has quit [Remote host closed the connection]
yadnesh_ is now known as yadnesh
lxsameer has quit [Ping timeout: 240 seconds]
ogres has quit [Quit: Connection closed for inactivity]
guille-moe has joined #ruby
suukim has quit [Quit: Konversation terminated!]
guille-moe has quit [Client Quit]
karapetyan has quit [Remote host closed the connection]
psychicist__ has quit [Ping timeout: 256 seconds]
graphene has quit [Remote host closed the connection]
graphene has joined #ruby
biberu has joined #ruby
RougeR has quit [Ping timeout: 245 seconds]
suukim has joined #ruby
tolerablyjake has joined #ruby
BloopMonster has quit [Ping timeout: 268 seconds]
psychicist__ has joined #ruby
Cthulu201 has quit [Ping timeout: 260 seconds]
lxsameer has joined #ruby
Anthony_Bourdain has joined #ruby
karapetyan has joined #ruby
starseed0000 has joined #ruby
tolerablyjake has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
clemens3_ has quit [Remote host closed the connection]
houhoulis has joined #ruby
lxsameer has quit [Ping timeout: 256 seconds]
lxsameer has joined #ruby
graphene has quit [Remote host closed the connection]
graphene has joined #ruby
lxsameer has quit [Ping timeout: 260 seconds]
lxsameer has joined #ruby
conta has joined #ruby
FernandoBasso has joined #ruby
wontruefree has joined #ruby
lxsameer has quit [Ping timeout: 248 seconds]
guilherme_ has joined #ruby
samosaphile has joined #ruby
zapata has quit [Read error: Connection reset by peer]
guilherme_ has quit [Quit: Leaving]
zapata has joined #ruby
shinnya has joined #ruby
guilherme_ has joined #ruby
guilherme_ has quit [Remote host closed the connection]
guilherme_ has joined #ruby
orbyt_ has joined #ruby
houhoulis has quit [Ping timeout: 256 seconds]
tolerablyjake has joined #ruby
guilherme_ has quit [Remote host closed the connection]
guilherme_ has joined #ruby
guilherme_ has quit [Max SendQ exceeded]
<samosaphile>
hey anyone around?
DTZUZO has quit [Ping timeout: 240 seconds]
Cthulu201 has joined #ruby
tolerablyjake has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
bradleyp_ has quit [Remote host closed the connection]
nowhereman_ has quit [Read error: Connection reset by peer]
samosaphile has quit [Ping timeout: 260 seconds]
nowhere_man has joined #ruby
graphene has quit [Read error: Connection reset by peer]
graphene has joined #ruby
clemens3 has joined #ruby
lxsameer has joined #ruby
bradleyprice has joined #ruby
ramfjord has joined #ruby
<FernandoBasso>
Listen to the silence.
<FernandoBasso>
The silence of the lambs.
ellcs has quit [Ping timeout: 255 seconds]
ramfjord has quit [Ping timeout: 248 seconds]
bradleyprice has quit [Ping timeout: 248 seconds]
\void has joined #ruby
graphene has quit [Remote host closed the connection]
lxsameer has quit [Ping timeout: 245 seconds]
graphene has joined #ruby
Kestrel-029 has quit [Ping timeout: 256 seconds]
Nicmavr has joined #ruby
Nicmavr is now known as Guest73838
BTRE has quit [Ping timeout: 240 seconds]
amar has quit [Ping timeout: 268 seconds]
BTRE has joined #ruby
graphene has quit [Read error: Connection reset by peer]
graphene has joined #ruby
tty has joined #ruby
BTRE has quit [Ping timeout: 256 seconds]
cyberg has quit [Remote host closed the connection]
BTRE has joined #ruby
BloopMonster has joined #ruby
lxsameer has joined #ruby
starseed0000 has quit [Remote host closed the connection]
starseed0000 has joined #ruby
karapetyan has quit [Remote host closed the connection]
lxsameer has quit [Ping timeout: 240 seconds]
maiz has joined #ruby
Dimik has joined #ruby
graphene has quit [Remote host closed the connection]
graphene has joined #ruby
suukim has quit [Quit: Konversation terminated!]
<myndzi>
apeiros_: the cpu is pegged on gunzip and processing the lines
<myndzi>
i intend to just run one file per thread/process/whatever
<myndzi>
it's already structured in a way that should make it easy to, say, bundle up the context needed to know what to do and with what file; the only writing/updating of data needed is writing to the temp file after processing
<myndzi>
but the libraries in use (zlib, aws-sdk) are black boxes to me so i don't know how to hedge my bets against problems
punnie has quit [Quit: Connection closed for inactivity]
<myndzi>
each file takes about 2.5 minutes so i'm okay with a little overhead in exchange for "being sure"; like, if i use "in_processes" and turn on isolation, which forks a new worker for each iteration, is there any chance of a problem?
karapetyan has joined #ruby
mike11 has joined #ruby
lxsameer has joined #ruby
maiz has quit [Ping timeout: 265 seconds]
shinnya has quit [Ping timeout: 260 seconds]
Guest73838 has quit [Read error: Connection reset by peer]
Nicmavr has joined #ruby
Nicmavr is now known as Guest23029
maiz has joined #ruby
alem0lars has quit [Ping timeout: 256 seconds]
mike11 has quit [Quit: Leaving.]
amar has joined #ruby
conta has quit [Quit: conta]
lxsameer has quit [Ping timeout: 256 seconds]
zachk has joined #ruby
zachk has quit [Changing host]
zachk has joined #ruby
claudiuinberlin has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
BloopMonster has quit [Ping timeout: 268 seconds]
guilherme_ has joined #ruby
agent_white has joined #ruby
agent_white has left #ruby [#ruby]
claudiuinberlin has joined #ruby
agent_white has joined #ruby
p4p0l0 has joined #ruby
biberu has quit []
ogres has joined #ruby
fmcgeough has joined #ruby
ramfjord has joined #ruby
punnie has joined #ruby
lxsameer has joined #ruby
ramfjord has quit [Ping timeout: 265 seconds]
quobo has joined #ruby
wontruefree has quit [Quit: bye]
karapetyan has quit [Remote host closed the connection]
p4p0l0 has quit []
lxsameer has quit [Ping timeout: 268 seconds]
psychicist__ has quit [Ping timeout: 256 seconds]
guilherme_ has quit [Quit: Leaving]
desperek has joined #ruby
mike11 has joined #ruby
houhoulis has joined #ruby
jhack has joined #ruby
lxsameer has joined #ruby
Vapez has joined #ruby
lxsameer has quit [Ping timeout: 268 seconds]
jhack has quit [Quit: jhack]
jhack has joined #ruby
jhack has quit [Read error: Connection reset by peer]
Zaab1t has quit [Quit: Zaab1t]
kapil___ has quit [Quit: Connection closed for inactivity]
jhack has joined #ruby
jhack has quit [Read error: Connection reset by peer]
<lupine>
ahhhhhh. brakeman got borged
<lupine>
suddenly it all makes sense
jhack has joined #ruby
jhack has quit [Read error: Connection reset by peer]
<lupine>
it's what you get for having an MIT ecosystem, I guess
<konsolebox>
lupine: i see..
FernandoBasso has quit [Quit: Leaving]
jhack has joined #ruby
jhack has quit [Client Quit]
ski7777 has joined #ruby
nightw0lf has joined #ruby
graphene has quit [Remote host closed the connection]
graphene has joined #ruby
BloopMonster has joined #ruby
lxsameer has quit [Ping timeout: 240 seconds]
_nightw0lf has joined #ruby
nightw0lf has quit [Ping timeout: 256 seconds]
Asher has joined #ruby
graphene has quit [Remote host closed the connection]
jenrzzz has quit [Ping timeout: 264 seconds]
roamingdog has quit [Remote host closed the connection]
ski7777 has quit [Ping timeout: 268 seconds]
graphene has joined #ruby
mike11 has quit [Quit: Leaving.]
roamingdog has joined #ruby
ski7777 has joined #ruby
houhoulis has quit []
amar_ has joined #ruby
mrBen2k2k2k has quit [Ping timeout: 256 seconds]
ramfjord has joined #ruby
amar has quit [Ping timeout: 256 seconds]
cjfn has joined #ruby
<cjfn>
if I have a directory of plugin classes, plugins/*.rb
ramfjord has quit [Ping timeout: 256 seconds]
<cjfn>
is there a way to programatically get all the classes in those files?
<cjfn>
they'll have the same name space, X::Y::Z::Plugin1, X::Y::Z::Plugin2, etc
<cjfn>
should I just grab all the constants from X::Y::Z?
<cjfn>
but that grabs other constants that aren't plugins
lxsameer has joined #ruby
vtorves has joined #ruby
ramfjord has joined #ruby
<konsolebox>
cjfn: afaik, there's no way to selectively load classes in a file
<cjfn>
hm okay
<konsolebox>
cjfn: however if classes were defined in files that match their filename, a concept called autoloading can be applied, just like guides.rubyonrails.org/autoloading_and_reloading_constants.htm
<cjfn>
neat
<cjfn>
I'll take a look, thanks konsolebox!
vtorves has quit [Quit: Page closed]
<konsolebox>
cjfn: there may be other libraries besides rails that can allow you to do this
ramfjord has quit [Ping timeout: 256 seconds]
karapetyan has joined #ruby
karapetyan has quit [Ping timeout: 240 seconds]
amar_ has quit [Remote host closed the connection]
amar has joined #ruby
lxsameer has quit [Ping timeout: 265 seconds]
amar has quit [Ping timeout: 248 seconds]
graphene has quit [Remote host closed the connection]
graphene has joined #ruby
phynite has joined #ruby
d^sh has quit [Ping timeout: 276 seconds]
clemens3 has quit [Ping timeout: 240 seconds]
d^sh has joined #ruby
starseed0000 has quit [Ping timeout: 240 seconds]
RougeR has joined #ruby
RougeR has joined #ruby
RougeR has quit [Changing host]
akaiiro has joined #ruby
wontruefree has joined #ruby
r29v has joined #ruby
wontruef_ has joined #ruby
BloopMonster has quit [Ping timeout: 240 seconds]
wontruefree has quit [Ping timeout: 245 seconds]
dr3w_ has joined #ruby
akaiiro has quit [Ping timeout: 256 seconds]
Vapez has quit [Remote host closed the connection]
megamos has joined #ruby
Azure has quit [Ping timeout: 240 seconds]
wontruef_ has quit [Quit: bye]
lxsameer has joined #ruby
amar has joined #ruby
Azure has joined #ruby
amar has quit [Ping timeout: 256 seconds]
sameerynho has joined #ruby
akaiiro has joined #ruby
cjfn has left #ruby [#ruby]
megamos has quit [Ping timeout: 255 seconds]
graphene has quit [Remote host closed the connection]
graphene has joined #ruby
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
akaiiro has quit [Ping timeout: 245 seconds]
lxsameer has quit [Ping timeout: 255 seconds]
lxsameer has joined #ruby
quobo has quit [Quit: Connection closed for inactivity]
karapetyan has joined #ruby
maiz has quit [Ping timeout: 245 seconds]
lxsameer has quit [Ping timeout: 240 seconds]
lxsameer has joined #ruby
r29v has quit [Quit: r29v]
maiz has joined #ruby
bjpenn has joined #ruby
<bjpenn>
is there a way to get rvm to install current ruby specified in .ruby-version?
<bjpenn>
right now im just manually seeing whats specified in the file and then running the standard rvm install <version> here