flashpoint9 has quit [Remote host closed the connection]
tubuliferous has quit [Ping timeout: 244 seconds]
BtcBen has joined #ruby
nettoweb has quit [Client Quit]
flashpoint9 has joined #ruby
kareeoleez has joined #ruby
bruno- has quit [Read error: Connection reset by peer]
elifoster|alt has quit [Ping timeout: 276 seconds]
polysics has quit [Ping timeout: 264 seconds]
Rodya_ has joined #ruby
ur5us has joined #ruby
kareeoleez has quit [Ping timeout: 264 seconds]
phredus has quit [Remote host closed the connection]
phredus has joined #ruby
idefine has quit [Remote host closed the connection]
bruno- has joined #ruby
bob434 has joined #ruby
madgen has quit [Ping timeout: 260 seconds]
idefine has joined #ruby
claw has quit [Read error: Connection reset by peer]
blackmes1 has quit [Ping timeout: 260 seconds]
bruno- has quit [Read error: Connection reset by peer]
<brent__>
anybody have a good explanation of $stdin/$stdout?
<siaw>
how can i slice a string like this “kiki.png?1460854132” to get this “kiki.png”?
bruno- has joined #ruby
<brent__>
maybe not the best solution, but if there will always be the '?' you coudl do str.split('?').first
<siaw>
yeap there’s always ?
<brent__>
then that command will work, there may be a more elegant solution, but nothing coming to me
rbennacer has quit [Remote host closed the connection]
<siaw>
thanks :)
kareeoleez has joined #ruby
<Nawn>
def test(input_string)
<Nawn>
input_string.split("?")[0]
<Nawn>
end
<Nawn>
puts test("kiki.png?1460854132")
<Nawn>
=> "kiki.png"
claw has joined #ruby
Regulati_ has quit [Remote host closed the connection]
<brent__>
same thought, [0] == #first
<siaw>
yeap
<Nawn>
exactly. all it does is makes an array [x, y] where x is whatever is before, and y is after. so... that's what I would do :P
ur5us has quit [Remote host closed the connection]
<Nawn>
brent__: Sorry m8, I personally don't have a complete understanding of IO streams, but what I do know, came from here: https://robots.thoughtbot.com/io-in-ruby
<naveen>
Need some help with ruby json parsing in HAML :/
<Nawn>
:'c not going to be me, sorry m8.
bob434 has quit [Quit: Leaving]
<naveen>
lol
<naveen>
cool
naveen has quit [Client Quit]
<Nawn>
Post your question anyway, if I can help, I will. if not, someone else will eventually read it.
_blizzy_ has quit [Quit: Leaving]
bruno- has quit [Read error: Connection reset by peer]
bruno- has joined #ruby
blaxter has quit [Read error: Connection reset by peer]
<matt_d>
Naveen: you want to parse json living in a HAML document?
maletor has quit [Quit: Computer has gone to sleep.]
justbleed has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
tubuliferous has joined #ruby
<matt_d>
Doh, too distracted he already left.
hxegon has quit [Ping timeout: 276 seconds]
william3 has joined #ruby
kareeoleez has joined #ruby
ur5us has joined #ruby
karapetyan has joined #ruby
flashpoint9 has quit [Remote host closed the connection]
maletor has joined #ruby
william3 has quit [Ping timeout: 276 seconds]
kareeoleez has quit [Ping timeout: 244 seconds]
LoneHermit has joined #ruby
Caerus has quit [Ping timeout: 250 seconds]
baweaver has joined #ruby
karapetyan has quit [Ping timeout: 244 seconds]
Rodya_ has quit [Remote host closed the connection]
felltir has quit [Read error: Connection reset by peer]
Denart_ has joined #ruby
senayar has joined #ruby
senayar has joined #ruby
baweaver has quit [Ping timeout: 244 seconds]
arescorpio has joined #ruby
duncannz has quit [Remote host closed the connection]
DenSchub has joined #ruby
barajasfab has quit [Ping timeout: 264 seconds]
Madplatypus has joined #ruby
newjersey has joined #ruby
adgtl has joined #ruby
kareeoleez has joined #ruby
idefine has quit [Remote host closed the connection]
aces1up has joined #ruby
polysics has joined #ruby
<aces1up>
I have a strange question, I am parsing some javascript from a website.. I am putting a java associative array string into a string using a regex.. anyway I can convert that into a ruby hash?
twodayslate has quit [Ping timeout: 244 seconds]
AckZ has quit [Ping timeout: 244 seconds]
<aces1up>
similar to parsing json?
PedramT has joined #ruby
im0b has quit [Ping timeout: 244 seconds]
joaomdmoura__ has quit [Ping timeout: 244 seconds]
adgtl has quit [Client Quit]
jam__ has joined #ruby
phredus has quit [Remote host closed the connection]
<mozzarella>
aces1up: it *is* json
kareeoleez has quit [Ping timeout: 260 seconds]
<Ox0dea>
`{foo: 42}` is valid JavaScript, but it's not JSON.
ur5us has quit [Remote host closed the connection]
PedramT has quit [Ping timeout: 244 seconds]
<Ox0dea>
aces1up: That first answer should let you know that you're probably going about this the wrong way.
Rodya_ has joined #ruby
brackson has joined #ruby
<aces1up>
uhh duh
<aces1up>
im scraping this from a website, I have no control over input.
smathy is now known as smathy_afk
polysics has quit [Ping timeout: 260 seconds]
maletor has quit [Quit: Computer has gone to sleep.]
<brackson>
is there a mersenne twister implementation for ruby that accepts a string as a seed?
adgtl has quit [Client Quit]
<Ox0dea>
brackson: Ruby already uses a Mersenne twister. How about `srand('string'.hash)`?
barajasfab has joined #ruby
jam__ has quit [Ping timeout: 276 seconds]
<brackson>
0x0dea: ah, thanks!
kareeoleez has joined #ruby
<Ox0dea>
brackson: Er, that #hash result will change between runs, though. You'll have to roll your own if you need determinism.
charliesome has joined #ruby
phredus has joined #ruby
<mozzarella>
I remember being able to parse non-string keys using a ruby json library, even though it's not valid json, but I don't remember which library
twodayslate has joined #ruby
<mozzarella>
I guess you could modify your input to make it valid json
kareeoleez has quit [Ping timeout: 244 seconds]
<zacts>
hi rubyists
<matt_d>
Hi zacts
JakFrist has joined #ruby
rbennacer has joined #ruby
ur5us has joined #ruby
<zacts>
ora
twodayslate has quit [Ping timeout: 244 seconds]
<zacts>
sorry ssh lag
rbennace_ has joined #ruby
blackwell has quit [Max SendQ exceeded]
kareeoleez has joined #ruby
bruno- has quit [Read error: Connection reset by peer]
blackwell has joined #ruby
<brackson>
is there a fisher yates implementation for Ruby that accepts seeds?
bruno- has joined #ruby
<brackson>
something that can be rewritten to javascript/jquery
pawnbox has joined #ruby
rbennacer has quit [Ping timeout: 276 seconds]
<Ox0dea>
brackson: Ruby's Array#shuffle uses Fisher-Yates, and the randomness can be influenced with Kernel#srand.
dfdnatural has quit [Quit: WeeChat 1.4]
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
kareeoleez has quit [Ping timeout: 244 seconds]
<Ox0dea>
It seems like you want to duplicate some functionality, but that's a smell.
johnmilton has quit [Remote host closed the connection]
twodayslate has joined #ruby
Caerus has joined #ruby
RegulationD has joined #ruby
pawnbox has quit [Ping timeout: 260 seconds]
<brackson>
Ox0dea: I didn't know Array#shuffle used Fisher-Yates, haha.
<brackson>
I'm trying to rewrite that to Javascript.
Rodya__ has joined #ruby
Rodya__ has quit [Remote host closed the connection]
Rodya_ has quit [Ping timeout: 276 seconds]
blackmes1 has joined #ruby
twodayslate has quit [Ping timeout: 244 seconds]
tristanp has joined #ruby
RegulationD has quit [Ping timeout: 264 seconds]
<Ox0dea>
How come?
maletor has joined #ruby
agent_white has joined #ruby
smalltalker has quit [Quit: Leaving...]
<agent_white>
Nope. Just whip it out ya know?
AckZ has joined #ruby
im0b has joined #ruby
joaomdmoura__ has joined #ruby
<brackson>
Ox0dea: I'm trying to make a provably-fair playing card game in Sinatra. I want to write a Javascript-version of Ruby's method of calculating the shuffled deck so users can verify their hands.
tristanp has quit [Read error: Connection reset by peer]
tristanp has joined #ruby
pawnbox has quit [Ping timeout: 264 seconds]
PedramT has joined #ruby
PedramT has quit [Remote host closed the connection]
jam__ has quit [Ping timeout: 276 seconds]
Sembei has joined #ruby
jackjackdripper has joined #ruby
Yeomra has joined #ruby
pawnbox has joined #ruby
alexherb1 has quit [Quit: WeeChat 1.4]
SCHAAP137 has joined #ruby
tristanp has quit [Ping timeout: 264 seconds]
PedramT_ has joined #ruby
pawnbox_ has quit [Ping timeout: 260 seconds]
the_drow has joined #ruby
pawnbox_ has joined #ruby
mikecmpbll has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
tristanp has joined #ruby
alexherbo2 has joined #ruby
pawnbox has quit [Ping timeout: 260 seconds]
mikecmpbll has joined #ruby
<A124>
I do not care about particular gem.
pawnbox has joined #ruby
<A124>
Just want to read a streaming http get response by line.
AlexRussia has joined #ruby
PedramT_ has quit [Remote host closed the connection]
<A124>
shevy Got any idea how? The only way I got idea is read_body with block and somehow detect new line.
PedramT has joined #ruby
nullwarp has joined #ruby
pawnbox_ has quit [Ping timeout: 264 seconds]
kallisti5 has joined #ruby
Zackio has joined #ruby
Kharma has joined #ruby
brainslug has joined #ruby
nirix has joined #ruby
Authenticator has joined #ruby
jolts has joined #ruby
<A124>
Me got two ideas. a) raw TCP and gets, b) make api put records by line to the pipe
Zackio has quit [Quit: C-x C-c]
Cohedrin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
UKn0Meh is now known as UKn0Me
tristanp has quit [Ping timeout: 264 seconds]
pawnbox has quit [Ping timeout: 260 seconds]
brunto has quit [Ping timeout: 264 seconds]
polysics has quit []
marr123 is now known as marr
ghr has joined #ruby
kareeoleez has joined #ruby
pawnbox has joined #ruby
PedramT has quit [Ping timeout: 264 seconds]
eregon_ has quit [Remote host closed the connection]
tristanp has joined #ruby
PedramT has joined #ruby
ur5us_ has quit [Remote host closed the connection]
barajasfab has joined #ruby
hypnosb has joined #ruby
flopsec has joined #ruby
KillerFox has joined #ruby
flopsec has quit [Changing host]
flopsec has joined #ruby
PedramT has quit [Remote host closed the connection]
flopsec has quit [Max SendQ exceeded]
hypnosb has quit [Max SendQ exceeded]
TheBrayn has joined #ruby
forgot has joined #ruby
hypnosb has joined #ruby
mdih has joined #ruby
PedramT has joined #ruby
last_staff has joined #ruby
flopsec has joined #ruby
PedramT has quit [Remote host closed the connection]
PedramT has joined #ruby
mame3 has joined #ruby
darix has joined #ruby
shtirlic has joined #ruby
TheCubeLord has joined #ruby
Cohedrin has joined #ruby
Devalo has joined #ruby
rbennacer has joined #ruby
Lomex has joined #ruby
infra-red has quit [Ping timeout: 260 seconds]
Emmanuel_Chanel has quit [Quit: Leaving]
rbennacer has quit [Ping timeout: 250 seconds]
PedramT has quit [Ping timeout: 268 seconds]
tristanp_ has joined #ruby
tristanp has quit [Ping timeout: 268 seconds]
brunto has joined #ruby
tristanp has joined #ruby
pandaant has joined #ruby
nobitano_ has quit [Remote host closed the connection]
tristanp_ has quit [Ping timeout: 250 seconds]
ur5us has joined #ruby
yorickpeterse has joined #ruby
rbennacer has joined #ruby
minimalism has quit [Quit: minimalism]
ur5us has quit [Ping timeout: 250 seconds]
idefine has joined #ruby
chrismytton has joined #ruby
nobitanobi has joined #ruby
nobitanobi has quit [Remote host closed the connection]
william3 has joined #ruby
d0nn1e has quit [Ping timeout: 264 seconds]
rbennacer has quit [Ping timeout: 268 seconds]
TheCubeLord has quit [Quit: Leaving]
Guest51505 has joined #ruby
d0nn1e has joined #ruby
TheCubeLord has joined #ruby
mikecmpbll has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
ur5us has joined #ruby
idefine has quit [Ping timeout: 268 seconds]
LoneHermit has joined #ruby
william3 has quit [Remote host closed the connection]
tsunamie has joined #ruby
<TheCubeLord>
now that i had to re install my OS i dont have ruby 2.3 anymore D:
rbennacer has joined #ruby
biberu has joined #ruby
spider-mario has joined #ruby
Emmanuel_Chanel has joined #ruby
mtaw has quit [Quit: Leaving]
mtaw11 has quit [Quit: Leaving]
<TheCubeLord>
how do i install it cause i dont have it writen down
tomaw_ is now known as tomaw
ur5us has quit [Ping timeout: 250 seconds]
Cohedrin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
krz has joined #ruby
tristanp_ has joined #ruby
bmf has quit [Ping timeout: 244 seconds]
<TheCubeLord>
pls help
baweaver has quit [Remote host closed the connection]
bmf has joined #ruby
tristanp has quit [Ping timeout: 260 seconds]
LoneHermit has quit [Ping timeout: 250 seconds]
madgen has quit [Ping timeout: 276 seconds]
Lomex has quit [Remote host closed the connection]
tristanp has joined #ruby
tristanp_ has quit [Ping timeout: 260 seconds]
rbennacer has quit [Ping timeout: 260 seconds]
eregon has joined #ruby
BtcBen has joined #ruby
dmr8 has joined #ruby
william3 has joined #ruby
Chagel has joined #ruby
eregon has quit [Remote host closed the connection]
Elysia has joined #ruby
BtcBen has quit [Ping timeout: 250 seconds]
william3 has quit [Ping timeout: 246 seconds]
eregon has joined #ruby
FernandoBasso has joined #ruby
<shevy>
TheCubeLord wget ftp://ftp.ruby-lang.org/pub/ruby/2.3/ruby-2.3.0.tar.xz; compile it into a prefix like your home directory if you want to; alternatively use one of the handholding solutions that do these things for you like rvm or chruby and follow the instructions
RegulationD has joined #ruby
nanoyak has joined #ruby
tristanp has quit [Ping timeout: 268 seconds]
brunto has quit [Ping timeout: 268 seconds]
<TheCubeLord>
k
n008f4g_ has joined #ruby
jtperreault has joined #ruby
Lomex has joined #ruby
tristanp has joined #ruby
Devalo has quit [Remote host closed the connection]
dionysus69 has joined #ruby
yfeldblum has quit [Ping timeout: 264 seconds]
RegulationD has quit [Ping timeout: 244 seconds]
bronson has joined #ruby
krz has quit [Read error: Connection reset by peer]
<TheCubeLord>
umm how do i install rvm
<TheCubeLord>
noob here
william3 has joined #ruby
brunto has joined #ruby
bronson has quit [Ping timeout: 246 seconds]
nanoyak has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Xeago_ has quit [Remote host closed the connection]
<shevy>
sorta... ./scripts/functions/utility: line 381: groupadd: command not found
<shevy>
pretty messy
<TheCubeLord>
welp found it
<TheCubeLord>
thanks anyways
infra-red has quit [Ping timeout: 244 seconds]
araujo has joined #ruby
tristanp_ has joined #ruby
TheCubeLord has quit [Quit: Leaving]
mdih has quit [Remote host closed the connection]
bmf has quit [Ping timeout: 244 seconds]
tristanp has quit [Ping timeout: 260 seconds]
tristanp has joined #ruby
nanoz has joined #ruby
diegoaguilar has quit [Ping timeout: 244 seconds]
Chagel has quit [Ping timeout: 244 seconds]
FooMunki has joined #ruby
william3 has quit [Remote host closed the connection]
tristanp_ has quit [Ping timeout: 260 seconds]
mdih has joined #ruby
madgen has joined #ruby
Jackneill has quit [Quit: Leaving]
barajasfab has quit [Ping timeout: 268 seconds]
poerror has joined #ruby
rbennacer has quit [Ping timeout: 276 seconds]
Lomex has quit [Remote host closed the connection]
nobitanobi has joined #ruby
william3 has joined #ruby
mikecmpbll has joined #ruby
firstdayonthejob has quit [Quit: WeeChat 1.4]
bmf has joined #ruby
rbennacer has joined #ruby
william3 has quit [Remote host closed the connection]
siaw has quit [Read error: Connection reset by peer]
nobitanobi has quit [Remote host closed the connection]
firstdayonthejob has joined #ruby
siaw has joined #ruby
tristanp_ has joined #ruby
jam___ has joined #ruby
tristanp has quit [Ping timeout: 268 seconds]
tristanp has joined #ruby
Rixius has quit [Ping timeout: 260 seconds]
SirCmpwn has quit [Ping timeout: 260 seconds]
rvchangue has quit [Ping timeout: 260 seconds]
bodie_ has quit [Ping timeout: 260 seconds]
Rixius has joined #ruby
karapetyan has joined #ruby
rbennacer has quit [Ping timeout: 244 seconds]
rvchangue has joined #ruby
blaxter has joined #ruby
jam___ has quit [Ping timeout: 250 seconds]
tristanp_ has quit [Ping timeout: 250 seconds]
trista___ has joined #ruby
SirCmpwn has joined #ruby
trista___ has quit [Read error: Connection reset by peer]
bodie_ has joined #ruby
tristanp has quit [Read error: Connection reset by peer]
baweaver has joined #ruby
tristanp has joined #ruby
brunto has quit [Ping timeout: 268 seconds]
aeterne has joined #ruby
yfeldblum has joined #ruby
richardburton has joined #ruby
tubuliferous has quit [Ping timeout: 264 seconds]
bmf has quit [Ping timeout: 250 seconds]
baweaver has quit [Ping timeout: 250 seconds]
<richardburton>
hey everyone. i've forked a gem, modified it slightly, and want to include it in my project, but I’m getting: LoadError: cannot load such file
trista___ has quit [Read error: Connection reset by peer]
<NullVoxPopuli_>
aye
<NullVoxPopuli_>
is there a rails irc?
<adaedra>
That maybe more suited to #RubyOnRails
<NullVoxPopuli_>
oh ok
tristanp has joined #ruby
ctype_real has joined #ruby
crameth has joined #ruby
lxsameer has joined #ruby
tristanp has quit [Ping timeout: 268 seconds]
Guest49057 has quit [Quit: ばいばい]
<ctype_real>
Hi,
<ctype_real>
after "gem install mailcatcher" the installed file has the path "/usr/bin/mailcatcher.ruby2.1" , but for scripts I need it without extension, i.e. just /usr/bin/mailcatcher
<ctype_real>
how to get proper file name ?
Chagel has quit [Ping timeout: 244 seconds]
<adaedra>
What system do you use?
tristanp has joined #ruby
<ctype_real>
opensuse
nobitanobi has quit [Remote host closed the connection]
sphex_ has quit [Ping timeout: 250 seconds]
<adaedra>
I've never seen this behavior before
Azure has quit [Ping timeout: 260 seconds]
LoneHerm_ has joined #ruby
sphex has joined #ruby
darkf has quit [Quit: Leaving]
unshadow has quit [Quit: leaving]
ekinmur has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<adaedra>
Well, it's indeed weird that there is this prefix, this is not standard behavior, looks like something suse would have added
<adaedra>
s/prefix/suffix/
richardburton has joined #ruby
tristanp_ has quit [Ping timeout: 250 seconds]
tristanp_ has joined #ruby
lxsameer has quit [Ping timeout: 244 seconds]
baweaver has joined #ruby
karapetyan has joined #ruby
Aviio has joined #ruby
richardburton has quit [Ping timeout: 276 seconds]
william3 has joined #ruby
<darix>
ctype_real: in doubt pass --no-format-executable
<darix>
ctype_real: but we support running multiple ruby versions in parallel so that's why we went with suffixed scripts
baweaver has quit [Ping timeout: 250 seconds]
mooru has joined #ruby
<darix>
adaedra: and it is just setting a gemrc option. nothing patched in.
Aviio has quit [Remote host closed the connection]
noService has quit [Ping timeout: 244 seconds]
<adaedra>
well, it added a gem option :o)
<adaedra>
But I didn't know this one
william3 has quit [Ping timeout: 246 seconds]
dionysus69 has quit [Ping timeout: 276 seconds]
Kallis has joined #ruby
stannard has quit [Remote host closed the connection]
pawnbox has joined #ruby
madgen has quit [Ping timeout: 260 seconds]
hxegon has joined #ruby
JoshL has quit [Ping timeout: 260 seconds]
ujjain has quit [Ping timeout: 260 seconds]
JoshL has joined #ruby
TheCubeLord has quit [Quit: Leaving]
tristanp has joined #ruby
<ctype_real>
darix: thanks. I also found it, seems my gem's config forces --format-executable
<darix>
ctype_real: yes. as i said ... this is on purpose
bmf has joined #ruby
<darix>
ctype_real: e.g. if you add devel:languages:ruby as repository you could havd 2.2 and 2.3 as packages. and then gem install without suffixes would be confusing.
ujjain has joined #ruby
ujjain has quit [Changing host]
ujjain has joined #ruby
madgen has joined #ruby
tristanp_ has quit [Ping timeout: 250 seconds]
<darix>
ctype_real: in rpms update-alternatives takes care of it
tristanp_ has joined #ruby
lxsameer has joined #ruby
<ctype_real>
yes, as I suppose opensuse use ruby for all their tools so they just forced it by default
stunder001 has quit [Ping timeout: 250 seconds]
tristanp has quit [Ping timeout: 250 seconds]
ctype_real has left #ruby ["PING 1460906374"]
mooru has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
biberu\ has joined #ruby
last_staff1 has joined #ruby
stunder001 has joined #ruby
rbennace_ has quit [Remote host closed the connection]
n1colas_ has joined #ruby
LoneHe___ has joined #ruby
bigkevmcd has joined #ruby
mikecmpb_ has joined #ruby
dyce_ has quit [Ping timeout: 250 seconds]
ghr has quit [Ping timeout: 250 seconds]
TomyLobo has quit [Disconnected by services]
Some-body_ has joined #ruby
waalnlwmrvemjovo has joined #ruby
waalnlwmrvemjovo is now known as xqriiinujfjwmzag
xqriiinujfjwmzag is now known as TomyLobo
ereslibre has quit [Ping timeout: 250 seconds]
ereslibre_laptop has joined #ruby
bigkevmcd has quit [Client Quit]
LoneHerm_ has quit [Ping timeout: 250 seconds]
brunto has quit [Ping timeout: 250 seconds]
DarthGandalf has quit [Ping timeout: 250 seconds]
Some-body_ is now known as DarthGandalf
Skelz0r_ has joined #ruby
m4rCsi_ has quit [Ping timeout: 250 seconds]
muvbit_ has joined #ruby
SilverKey has joined #ruby
mikecmpbll has quit [Ping timeout: 250 seconds]
whiteline has quit [Ping timeout: 250 seconds]
xue has joined #ruby
ekinmur_ has joined #ruby
crameth has quit [Read error: Connection reset by peer]
whiteline has joined #ruby
m4rCsi has joined #ruby
Xeago has quit [Read error: Connection reset by peer]
ekinmur has quit [Ping timeout: 250 seconds]
Xeago has joined #ruby
lkba has quit [Ping timeout: 250 seconds]
FastJack_ has joined #ruby
d0nn1e_ has joined #ruby
Kim^J_ has joined #ruby
Zackio has quit [*.net *.split]
biberu has quit [*.net *.split]
synaps3 has quit [*.net *.split]
sdothum has quit [*.net *.split]
n1colas has quit [*.net *.split]
AlexRussia has quit [*.net *.split]
paddymahoney has quit [*.net *.split]
Skelz0r has quit [*.net *.split]
muvbit has quit [*.net *.split]
vircung has quit [*.net *.split]
MuffinPimp has joined #ruby
FernandoBasso has quit [*.net *.split]
d0nn1e has quit [*.net *.split]
last_staff has quit [*.net *.split]
tomaw has quit [*.net *.split]
_derpy has quit [*.net *.split]
FastJack has quit [*.net *.split]
ctrlrsf has quit [*.net *.split]
Kim^J has quit [*.net *.split]
ddv has quit [*.net *.split]
last_staff1 is now known as last_staff
FastJack_ is now known as FastJack
Zacketh has joined #ruby
MRB[away] is now known as Matthew_
joast has joined #ruby
`derpy has joined #ruby
tomaw has joined #ruby
FifthWall has quit [Ping timeout: 260 seconds]
vqrs has quit [Ping timeout: 260 seconds]
sdothum has joined #ruby
tristanp has joined #ruby
tristanp_ has quit [Ping timeout: 260 seconds]
banister has joined #ruby
FifthWall has joined #ruby
vqrs has joined #ruby
vircung has joined #ruby
ekinmur_ has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
tvon has joined #ruby
synaps3 has joined #ruby
AlexRussia has joined #ruby
dyce_ has joined #ruby
FernandoBasso has joined #ruby
Mon_Ouie has quit [Ping timeout: 276 seconds]
freerobby has joined #ruby
Rodya_ has joined #ruby
yude has quit [Read error: Connection timed out]
lkba has joined #ruby
decoponio has joined #ruby
mooru has joined #ruby
SilverKey has quit [Quit: Halted.]
noService has joined #ruby
stunder001 has quit [Ping timeout: 250 seconds]
mostlybadfly has quit [Quit: Connection closed for inactivity]
lxsameer has quit [Ping timeout: 246 seconds]
tristanp_ has joined #ruby
tristanp has quit [Ping timeout: 250 seconds]
Silex^^ is now known as Silex
karapetyan has quit [Ping timeout: 250 seconds]
karapetyan has joined #ruby
Dimik has joined #ruby
tristanp has joined #ruby
Lomex has joined #ruby
tristanp_ has quit [Ping timeout: 250 seconds]
nando294021 has joined #ruby
n1colas_ has quit [Quit: WeeChat 1.4]
dionysus69 has joined #ruby
Xeago has quit [Remote host closed the connection]
beawesomeinstead has quit [Ping timeout: 276 seconds]
beawesomeinstead has joined #ruby
nobitanobi has joined #ruby
bruno- has quit [Ping timeout: 244 seconds]
MagePsycho_ has joined #ruby
ljames has joined #ruby
lxsameer has joined #ruby
vdamewood has joined #ruby
karapetyan has quit [Remote host closed the connection]
karapetyan has joined #ruby
tvon has quit [Quit: System is sleeping...]
stunder001 has quit [Ping timeout: 250 seconds]
davedev24 has joined #ruby
tristanp_ has joined #ruby
bruno- has joined #ruby
karapetyan has quit [Ping timeout: 244 seconds]
AlexRussia has quit [Ping timeout: 260 seconds]
tristanp has quit [Ping timeout: 250 seconds]
stunder001 has joined #ruby
aswen has quit [Quit: WeeChat 1.4]
tristanp has joined #ruby
mwlang has quit [Quit: mwlang]
Ebok has joined #ruby
tristanp_ has quit [Read error: Connection reset by peer]
gregf has joined #ruby
shinnya has joined #ruby
ghr has joined #ruby
dumdedum has joined #ruby
ctrlrsf has joined #ruby
ctrlrsf has joined #ruby
ctrlrsf has quit [Changing host]
eatsfoobars has joined #ruby
yude_ has joined #ruby
ta_ has joined #ruby
ddv has joined #ruby
tubuliferous_ has joined #ruby
DynamicMetaFlow has quit [Quit: ERC (IRC client for Emacs 24.5.1)]
tuelz2 has joined #ruby
ihme-TTilus has joined #ruby
james1 has joined #ruby
IrishGringo_ has joined #ruby
m4rCsi_ has joined #ruby
elifoster|alt has joined #ruby
RegulationD has joined #ruby
fckyoufreenode has joined #ruby
tabakhase__ has joined #ruby
LoneHermit has joined #ruby
ta_ has quit [Ping timeout: 244 seconds]
Skelz0r has joined #ruby
pawnbox has quit [Remote host closed the connection]
djbkd has joined #ruby
recon_dsk has joined #ruby
Kim^J has joined #ruby
RegulationD has quit [Ping timeout: 244 seconds]
chridal_ has joined #ruby
yude has quit [*.net *.split]
tubuliferous has quit [*.net *.split]
Dimik has quit [*.net *.split]
Kim^J_ has quit [*.net *.split]
m4rCsi has quit [*.net *.split]
Skelz0r_ has quit [*.net *.split]
LoneHe___ has quit [*.net *.split]
krz has quit [*.net *.split]
IrishGringo has quit [*.net *.split]
dmr8 has quit [*.net *.split]
diegoaguilar has quit [*.net *.split]
tuelz1 has quit [*.net *.split]
chridal has quit [*.net *.split]
TTilus has quit [*.net *.split]
blaxter has quit [*.net *.split]
rvchangue has quit [*.net *.split]
firstdayonthejob has quit [*.net *.split]
poerror has quit [*.net *.split]
jtperreault has quit [*.net *.split]
tabakhase has quit [*.net *.split]
tildes has joined #ruby
rvchangue has joined #ruby
krz has joined #ruby
the_drow has quit [Quit: This computer has gone to sleep]
<recon_dsk>
hi, got a question regarding bundle , being looking a the spree commerce package, I had it working but now it gets stuck when building the basic spree template after running "spree install --auto-accept" at the 'run bundle install from "."' step and just hangs forever. wondering if anyone could tell me what I should be checking, the lack of output is rather a roadblock.
tristanp_ has joined #ruby
dmr8 has joined #ruby
pawnbox has joined #ruby
Xeago has joined #ruby
tristanp has quit [Ping timeout: 260 seconds]
trista___ has joined #ruby
IrishGringo_ has quit [Ping timeout: 250 seconds]
<recon_dsk>
ok, seems running 'bundle install' on the cmd line give me some output to work with
Xeago has quit [Remote host closed the connection]
diegoaguilar has joined #ruby
tristanp_ has quit [Read error: Connection reset by peer]
trista___ has quit [Read error: Connection reset by peer]
tristanp has joined #ruby
stunder001 has quit [Ping timeout: 244 seconds]
stannard has joined #ruby
dionysus69 has quit [Ping timeout: 260 seconds]
firstdayonthejob has joined #ruby
karapetyan has joined #ruby
PedramT has joined #ruby
brunto has quit [Ping timeout: 276 seconds]
araujo has quit [Quit: Leaving]
Rodya_ has quit [Remote host closed the connection]
barajasfab has quit [Quit: Leaving]
Rodya_ has joined #ruby
PedramT has quit [Ping timeout: 244 seconds]
joconcepts has quit [Ping timeout: 260 seconds]
joconcepts has joined #ruby
tristanp_ has joined #ruby
wreet has joined #ruby
jam___ has joined #ruby
tristanp has quit [Ping timeout: 250 seconds]
mikecmpbll has joined #ruby
Prominent has joined #ruby
yude has joined #ruby
Rodya_ has quit [Remote host closed the connection]
Rodya_ has joined #ruby
Rutix`away has joined #ruby
Rutix`away has joined #ruby
MagePsycho__ has joined #ruby
houhoulis has joined #ruby
someish_ has joined #ruby
IrishGringo has joined #ruby
tristanp has joined #ruby
ereslibre has joined #ruby
ereslibre has joined #ruby
Some-body_ has joined #ruby
pandaant has quit [Remote host closed the connection]
x0f has quit [Ping timeout: 276 seconds]
spacemud has quit [Ping timeout: 276 seconds]
tristanp_ has quit [Ping timeout: 250 seconds]
spacemud has joined #ruby
nando294121 has joined #ruby
gregf1 has joined #ruby
graphettion has quit [Ping timeout: 244 seconds]
wreet has quit [Quit: Leaving]
karapetyan has quit [Remote host closed the connection]
x0f has joined #ruby
djbkd_ has joined #ruby
diegoaguilar has quit [Ping timeout: 260 seconds]
FastJack_ has joined #ruby
Xeago has joined #ruby
william3 has joined #ruby
tabakhase has joined #ruby
d0nn1e has joined #ruby
tomaw_ has joined #ruby
klka has joined #ruby
synaps3 has quit [Quit: Connection closed for inactivity]
Rixius|Alt has joined #ruby
<klka>
Hi, ruby c api fails when loading ruby file with `# coding: binary` in it, why is that and how to fix it?
Xeago has quit [Remote host closed the connection]
jam___ has quit [*.net *.split]
djbkd has quit [*.net *.split]
tabakhase__ has quit [*.net *.split]
james1 has quit [*.net *.split]
yude_ has quit [*.net *.split]
gregf has quit [*.net *.split]
MagePsycho_ has quit [*.net *.split]
recon_dsk has quit [*.net *.split]
nando294021 has quit [*.net *.split]
noService has quit [*.net *.split]
lkba has quit [*.net *.split]
tomaw has quit [*.net *.split]
d0nn1e_ has quit [*.net *.split]
FastJack has quit [*.net *.split]
whiteline has quit [*.net *.split]
muvbit_ has quit [*.net *.split]
ereslibre_laptop has quit [*.net *.split]
DarthGandalf has quit [*.net *.split]
mikecmpb_ has quit [*.net *.split]
bmf has quit [*.net *.split]
someish has quit [*.net *.split]
Rasi has quit [*.net *.split]
darix has quit [*.net *.split]
majjoha has quit [*.net *.split]
Rutix has quit [*.net *.split]
Rixius has quit [*.net *.split]
mame3 has quit [*.net *.split]
flopsec has quit [*.net *.split]
forgot has quit [*.net *.split]
TheBrayn has quit [*.net *.split]
hypnosb has quit [*.net *.split]
KillerFox has quit [*.net *.split]
Some-body_ is now known as DarthGandalf
FastJack_ is now known as FastJack
someish_ is now known as someish
sepp2k1 has joined #ruby
sepp2k has quit [Ping timeout: 276 seconds]
mdw has joined #ruby
skweek has joined #ruby
tristanp_ has joined #ruby
stannard has quit [Remote host closed the connection]
tristanp has quit [Ping timeout: 250 seconds]
bmf has joined #ruby
whiteline has joined #ruby
ziiz has joined #ruby
majjoha has joined #ruby
mdw_ has joined #ruby
james1 has joined #ruby
Rasi has joined #ruby
lxsameer has quit [Ping timeout: 276 seconds]
gregf1 has quit [Quit: WeeChat 1.4]
LaT0rtue has joined #ruby
tristanp has joined #ruby
hxegon is now known as hxegon_AFK
hxegon_AFK has quit [Quit: BRB]
mdw has quit [Ping timeout: 276 seconds]
lkba has joined #ruby
tristanp_ has quit [Read error: Connection reset by peer]
muvbit has joined #ruby
noService has joined #ruby
ta_ has joined #ruby
recon_dsk has joined #ruby
nobitanobi has quit [Remote host closed the connection]
abac00s has joined #ruby
abac00s has left #ruby [#ruby]
<ziiz>
hi everyone. can someone please explain to me what this means: if(res.body.include? '<library>')
jam__ has joined #ruby
Lomex has quit [Remote host closed the connection]
dionysus69 has joined #ruby
<hanmac>
ziiz: res looks like an Response object from a HTTP, body might return a string which does return the body of the response. String#include? is a function which does return true or false if the given string is in the parent string
tristanp_ has joined #ruby
ta__ has joined #ruby
BrunoSaboia has joined #ruby
ta_ has quit [Ping timeout: 250 seconds]
Gasher has quit [Ping timeout: 244 seconds]
tristanp has quit [Ping timeout: 250 seconds]
<ziiz>
so basically it checks the HTTP response body for a '<library>' string and return true or false. okay. thanks!
AlexRussia has joined #ruby
tvon has joined #ruby
tristanp has joined #ruby
tubuliferous_ has quit [Ping timeout: 260 seconds]
mwlang has joined #ruby
BSaboia has quit [Ping timeout: 264 seconds]
toretore has quit [Ping timeout: 250 seconds]
mwlang has quit [Client Quit]
tristanp_ has quit [Ping timeout: 260 seconds]
WebDawg is now known as neoweb
tristanp_ has joined #ruby
tristanp has quit [Read error: Connection reset by peer]
Puffball has quit [Remote host closed the connection]
IrishGringo has quit [Ping timeout: 250 seconds]
ziiz has quit [Ping timeout: 250 seconds]
shinnya has quit [Ping timeout: 276 seconds]
ziiz has joined #ruby
BSab has joined #ruby
BSab has quit [Max SendQ exceeded]
fckyoufreenode has quit []
Dimik has joined #ruby
tristanp_ has quit [Read error: Connection reset by peer]
BSab has joined #ruby
terlar has joined #ruby
tristanp has joined #ruby
BSab has quit [Max SendQ exceeded]
stannard has joined #ruby
BSab has joined #ruby
djbkd_ has quit [Remote host closed the connection]
BrunoSaboia has quit [Ping timeout: 268 seconds]
krz has quit [Ping timeout: 276 seconds]
djbkd has joined #ruby
elifoster|alt has quit [Ping timeout: 244 seconds]
<ruby[bot]>
ruby-lang593: we in #ruby do not like pastebin.com, it loads slowly for most, has ads which are distracting and has terrible formatting. Please use https://gist.github.com
<ruby-lang593>
whoops sorry
tristanp has joined #ruby
tristanp_ has quit [Ping timeout: 260 seconds]
<jhass>
?rails
<ruby[bot]>
Please join #RubyOnRails for Rails questions. You need to be identified with NickServ, see /msg NickServ HELP
stannard has joined #ruby
trista___ has quit [Read error: Connection reset by peer]
tristanp has quit [Read error: Connection reset by peer]
d0nn1e_ has joined #ruby
ocbtec_ has joined #ruby
AustinMatherne has joined #ruby
madgen has quit [*.net *.split]
psmolen has quit [*.net *.split]
yfeldblum has quit [*.net *.split]
moei has quit [*.net *.split]
platzhirsch has quit [*.net *.split]
Rixius has quit [*.net *.split]
rbennacer has quit [*.net *.split]
mdw has quit [*.net *.split]
Yeomra has quit [*.net *.split]
Xeago has quit [*.net *.split]
majjoha has quit [*.net *.split]
cj has quit [*.net *.split]
houhouli_ has quit [*.net *.split]
kareeoleez has quit [*.net *.split]
MeMoc has quit [*.net *.split]
muvbit has quit [*.net *.split]
Shidash has quit [*.net *.split]
ssiris has quit [*.net *.split]
ocbtec has quit [*.net *.split]
Kim^J has quit [*.net *.split]
bruno- has quit [*.net *.split]
n1colas has quit [*.net *.split]
lemur has quit [*.net *.split]
ramfjord has quit [*.net *.split]
constantinexvi has quit [*.net *.split]
whiteline has quit [*.net *.split]
klka has quit [*.net *.split]
d0nn1e has quit [*.net *.split]
x0f has quit [*.net *.split]
ereslibre has quit [*.net *.split]
Rutix has quit [*.net *.split]
rvchangue has quit [*.net *.split]
beawesomeinstead has quit [*.net *.split]
vircung has quit [*.net *.split]
vqrs has quit [*.net *.split]
FifthWall has quit [*.net *.split]
sdothum has quit [*.net *.split]
MuffinPimp has quit [*.net *.split]
JoshL has quit [*.net *.split]
bjmllr has quit [*.net *.split]
helpa has quit [*.net *.split]
nibbo has quit [*.net *.split]
Zarthus has quit [*.net *.split]
bodie_ has quit [*.net *.split]
eregon has quit [*.net *.split]
Emmanuel_Chanel has quit [*.net *.split]
yorickpeterse has quit [*.net *.split]
sirecote has quit [*.net *.split]
Zarthus_ is now known as Zarthus
bodie__ is now known as bodie_
FifthWall_ is now known as FifthWall
MuffinPimp_ is now known as MuffinPimp
rvchangu- is now known as rvchangue
Yeomra_ has joined #ruby
bruno- has joined #ruby
MeMoc_ is now known as MeMoc
majjoha has joined #ruby
helpa-bot has quit [Remote host closed the connection]
helpa has joined #ruby
klka has joined #ruby
bjmllr has joined #ruby
gbailey has quit [Ping timeout: 260 seconds]
moei has joined #ruby
knowtheory has quit [Ping timeout: 269 seconds]
ckrailo has quit [Ping timeout: 269 seconds]
hayden_ has quit [Ping timeout: 260 seconds]
beawesomeinstead has joined #ruby
ssiris has joined #ruby
catbusters has joined #ruby
infra-r__ has quit [Ping timeout: 260 seconds]
Emmanuel_Chanel has joined #ruby
mdw_ has quit [Quit: Sleeping Zzzzz]
william3 has joined #ruby
madgen_ has quit [Ping timeout: 244 seconds]
tristanp has joined #ruby
ckrailo has joined #ruby
knowtheory has joined #ruby
freerobby has quit [Quit: Leaving.]
Shidash has joined #ruby
biberu has quit [Read error: Connection reset by peer]
gbailey has joined #ruby
gregf has quit [Quit: WeeChat 1.4]
SilverKey has joined #ruby
timmyBsd has quit [Quit: WeeChat 1.4]
tristanp has quit [Read error: Connection reset by peer]
william3 has quit [Ping timeout: 276 seconds]
tristanp has joined #ruby
platzhirsch has joined #ruby
stannard has joined #ruby
<flashpoint9>
im running into an issue where im getting errors when running a .rb file which is requiring another file BUT the error is complaining about things that just arent there anymore but nothing i do makes them go away
ensyde has quit [Ping timeout: 250 seconds]
<flashpoint9>
code/error incoming
Cohedrin_ has joined #ruby
nettoweb has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<mustmodify___>
flashpoint9: question your assumptions.
<mustmodify___>
Are you sure you're in the right environment? Are you sure that there isn't some kind of caching?
<RyanMcCoskrie>
Are there multiple files with the same name in different paths?
<mustmodify___>
If that doesn't work, replace the entire file with something ... just 'true' or something. If it still isn't working, go back to questioning your assumptions. If it does, replace the file line-by-line until you find the problem.
* apeiros
has some of occam's razors lying around somewhere
<flashpoint9>
RyanMcCoskrie: there are no files with the same name
<mustmodify___>
apeiros: lol
Cohedrin has quit [Ping timeout: 276 seconds]
<apeiros>
flashpoint9: um, well, `@amount => args[:amount]` is not valid
<apeiros>
=> is for hashes, not for assignment. that's = you need.
<flashpoint9>
doesnt matter, i can comment out all of that inside purchase and it still throws the same error
dezull has joined #ruby
<apeiros>
flashpoint9: and you're editing /Users/flashpoint/.rvm/gems/ruby-2.2.1/gems/stockbuddy-0.0.0/lib/stockbuddy/purchase.rb ?
terlar has quit [Ping timeout: 260 seconds]
<apeiros>
you know, that precise path?
<apeiros>
because that's something one usually doesn't (and shouldn't) do
<mustmodify___>
apeiros: That part in Contact always made me upset. I think I would have responded, "Of those two ridiculous options I think the aliens one took less time to explain... it seems simpler to me. So yes, let's go with the aliens."
<flashpoint9>
ah thats it
<flashpoint9>
why is it looking there
s00pcan has quit [Read error: Connection reset by peer]
<apeiros>
mustmodify___: the movie?
s00pcan has joined #ruby
<apeiros>
don't remember the scene you're referring to :-|
<flashpoint9>
apeiros: why is it now looking there as opposed to where the gem code ive been writing is?
<flashpoint9>
and how do I fix that?
<flashpoint9>
<- noob
<apeiros>
flashpoint9: because you forgot to set up $LOAD_PATH?
<mustmodify___>
apeiros: Contact
tristanp_ has joined #ruby
<apeiros>
mustmodify___: yes. my question is: "contact - the movie?"
hayden_ has joined #ruby
n1colas has joined #ruby
ramfjord has joined #ruby
<flashpoint9>
apeiros: Im not understanding, I did another gem and i make changes in the files and nothing like this happened
diego_k has quit [Ping timeout: 276 seconds]
bmn has quit [Ping timeout: 276 seconds]
<apeiros>
flashpoint9: I'm not a magician. I can't read your mind. I have no idea what you did correctly back then which you do wrong now.
tristanp has quit [Ping timeout: 250 seconds]
<apeiros>
all I can tell you is that ruby has an order in which it looks up files and your setup is such that the gem comes first. which usually means you forgot to set up $LOAD_PATH, as I already said
<flashpoint9>
apeiros: well you mentioned loadpath which i dont understand what you meant by that
Ebok has quit [Quit: This computer has gone to sleep]
tristanp has joined #ruby
<apeiros>
the sensible thing to do then would be to ask about it (or google)
diegok has joined #ruby
<flashpoint9>
apeiros: ive been googling
<flashpoint9>
anyways i guess ill get back to that and leave here
<mustmodify___>
apeiros: yes, contact, the movie. I'm looking for the clip.
s00pcan has quit [Remote host closed the connection]
<apeiros>
flashpoint9: so stockbuddy is your gem and you're working on it?
<flashpoint9>
yes
<flashpoint9>
its just a sample gem to test things and learn gems/ruby
s00pcan has joined #ruby
<flashpoint9>
im basing it mostly off the docs make your own gem
<apeiros>
how are you executing code? irb? pry? something else?
<flashpoint9>
anyways sorry to waste your time, ill keep googling
someish has quit [Quit: someish]
<flashpoint9>
ruby lib/stockbuddy.rb
SilverKey has quit [Quit: Halted.]
<flashpoint9>
from the repo, but its looking in rvm/ruby_VERSION
<apeiros>
yeah. lib is not part of $LOAD_PATH then.
tristanp_ has quit [Ping timeout: 260 seconds]
<apeiros>
it won't find lib/stockbuddy/purchase with `require 'stockbuddy/purchase'`
<apeiros>
try: ruby -Ilib lib/stockbuddy.rb
<flashpoint9>
ah geez, I thought that was just for executables
<apeiros>
though, executable belong into bin
<apeiros>
well, you are using lib/stockbuddy.rb as an executable there.
<flashpoint9>
yea you're right
<apeiros>
-I modifies $LOAD_PATH
<flashpoint9>
im still kind of lost about how the right way to implement a gem
flashpoint9 has quit [Remote host closed the connection]
karapetyan has quit [Remote host closed the connection]
IrishGringo has joined #ruby
karapetyan has joined #ruby
william3 has quit [Ping timeout: 276 seconds]
zharek has quit [Read error: Connection reset by peer]
Xeago_ has quit [Remote host closed the connection]
Dale4321 has joined #ruby
<Dale4321>
hey
tristanp has joined #ruby
dezull has quit [Quit: Leaving]
sgambino has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
armyriad has quit [Ping timeout: 276 seconds]
kitallis has quit [Ping timeout: 260 seconds]
dezull has joined #ruby
newjersey has joined #ruby
armyriad has joined #ruby
OTORelic2 has quit [Ping timeout: 250 seconds]
kitallis has joined #ruby
hxegon has joined #ruby
blackgoat has joined #ruby
zast has joined #ruby
platzhirsch has quit [Ping timeout: 276 seconds]
Moblin has joined #ruby
tristanp has quit [Read error: Connection reset by peer]
freerobby has joined #ruby
nando294121 has quit [Quit: Lost terminal]
Ebok has quit [Ping timeout: 244 seconds]
tristanp has joined #ruby
nando293921 has joined #ruby
sonne has quit [Ping timeout: 260 seconds]
sonne has joined #ruby
n008f4g_ has quit [Ping timeout: 260 seconds]
tristanp_ has joined #ruby
klka has quit [Read error: Connection reset by peer]
Moblin has quit [Ping timeout: 260 seconds]
northrup has joined #ruby
tristanp has quit [Ping timeout: 260 seconds]
zenlot has joined #ruby
tristanp has joined #ruby
Dale4321 has left #ruby [#ruby]
n008f4g_ has joined #ruby
tristanp_ has quit [Ping timeout: 260 seconds]
darix has joined #ruby
Moblin has joined #ruby
KervyN has joined #ruby
zeroDivisible has quit [Quit: WeeChat 1.4]
aeterne has joined #ruby
pwnd_nsfw has quit [Read error: Connection reset by peer]
tristanp has quit [Read error: Connection reset by peer]
ICantCook has joined #ruby
tristanp has joined #ruby
nofxx has joined #ruby
IrishGringo has quit [Ping timeout: 244 seconds]
symm- has quit [Ping timeout: 260 seconds]
swills has joined #ruby
<mustmodify___>
apeiros: Yeah, I thought, "Why is that the simplest thing? And how do you get past the angular issue? Aliens is pretty much simple in comparison."
symm- has joined #ruby
Dry_Lips has quit [Ping timeout: 276 seconds]
spider-mario has quit [Remote host closed the connection]
houhoulis has quit [Remote host closed the connection]
MeMoc has quit [Quit: Connection closed for inactivity]
karapetyan has quit [Remote host closed the connection]
tristanp has quit [Ping timeout: 250 seconds]
karapetyan has joined #ruby
dellavg has joined #ruby
Dry_Lips has joined #ruby
Dry_Lips has quit [Changing host]
Dry_Lips has joined #ruby
hxegon has quit [Quit: BRB]
vbatts|w` has left #ruby ["found the other side of the rainbow"]
karapetyan has quit [Ping timeout: 250 seconds]
tristanp has joined #ruby
hxegon has joined #ruby
newjersey has quit [Read error: Connection reset by peer]
nettoweb has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
ocbtec_ has quit [Quit: leaving]
IrishGringo has joined #ruby
hxegon has quit [Quit: BRB]
william3 has joined #ruby
darkf has joined #ruby
brent__ has joined #ruby
william3 has quit [Ping timeout: 276 seconds]
ur5us has quit [Remote host closed the connection]