00:00
snoopybbt has quit [Ping timeout: 245 seconds]
00:00
havenwood has joined #ruby-lang
00:01
iliketurtles has joined #ruby-lang
00:02
iliketurtles has quit [Client Quit]
00:02
simi has joined #ruby-lang
00:02
deg has quit [Ping timeout: 240 seconds]
00:05
justinmburrous has joined #ruby-lang
00:06
skammer1 has joined #ruby-lang
00:11
skammer1 has quit [Ping timeout: 260 seconds]
00:14
dwknoxy has joined #ruby-lang
00:14
allomov has joined #ruby-lang
00:15
charliesome has quit [Quit: zzz]
00:16
tkuchiki has quit [Remote host closed the connection]
00:18
davispuh has quit [Ping timeout: 245 seconds]
00:18
allomov has quit [Ping timeout: 244 seconds]
00:18
nathanstitt has quit [Quit: I growing sleepy]
00:19
tkuchiki has joined #ruby-lang
00:19
jdecuirm has joined #ruby-lang
00:23
arooni-mobile has joined #ruby-lang
00:24
<
jdecuirm >
I am working with method_missing from Ruby with the book The Well Grounded Rubyist, but i don't know how to test the method! i created and object! to test it, but i hope you can tell me how to test!
00:24
<
jdecuirm >
hey jhass! good night!
00:25
<
jdecuirm >
Here is my code!
00:25
<
existensil >
method_missing gets sent symbols
00:25
<
existensil >
you aren't doing that
00:25
<
jhass >
jdecuirm: method_missing gets called after the regular method lookup doesn't find a method
00:25
imkmf has joined #ruby-lang
00:26
<
existensil >
you also aren't using the other ways to end sentences outside of exclamation marks
00:26
<
jdecuirm >
that means that i just have to call over the class object the method?
00:26
<
jhass >
>> class Foo; def method_missing(*args); args; end; end; Foo.new.not_me(:foo)
00:26
<
jdecuirm >
Can you explain me with code? :c
00:26
<
jhass >
I think I just did
00:26
<
jdecuirm >
hahahaha right
00:27
nathanstitt has joined #ruby-lang
00:28
toretore has quit [Quit: This computer has gone to sleep]
00:28
<
jdecuirm >
in fact what i want to try is to raise the error
00:28
<
jhass >
on a side note I recommend using #public_send over #send
00:28
<
jhass >
and if you define a method_missing you should define respond_to_missing? too
00:29
<
jdecuirm >
oh, nice to know
00:29
iliketurtles has joined #ruby-lang
00:29
<
jdecuirm >
is that i'm coding with the book
00:29
<
jdecuirm >
so, that was the example
00:29
<
jdecuirm >
but the writer does not test it
00:29
<
jhass >
thus "on a side note"
00:29
<
jdecuirm >
just put the code there, i'm figuring out how to test it
00:29
<
jdecuirm >
and of course what PEOPLE << self means
00:30
<
jdecuirm >
i guess it stores an object every time i create one
00:30
<
jdecuirm >
but i'm guessing
00:30
<
jhass >
you're right
00:31
nofxx has joined #ruby-lang
00:32
banister_ has joined #ruby-lang
00:32
<
jdecuirm >
but it is a constant, right?
00:32
<
jhass >
it is, why the "but"?
00:33
tkuchiki has quit [Remote host closed the connection]
00:33
deg has joined #ruby-lang
00:33
<
jdecuirm >
but it's not an array, so, how the objects are stored without overriding the value?
00:33
<
jhass >
it is an array
00:33
<
jdecuirm >
forget it
00:33
<
jdecuirm >
it is an array lol
00:34
tkuchiki has joined #ruby-lang
00:34
arooni-mobile has quit [Ping timeout: 272 seconds]
00:34
<
existensil >
you shouldn't be mutating constants, but unless you've called freeze or something that array will allow you to mess with it all you want, assigned to a constant or not
00:34
<
jdecuirm >
so, if i call a method that does not exist in my class Person, like Person.all_with_hobbies should an error will raise?
00:34
imkmf has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
00:35
justinmburrous has quit [Remote host closed the connection]
00:35
<
jhass >
since you defined a method_missing that reacts to it, that specific example won't
00:35
banister has quit [Ping timeout: 240 seconds]
00:37
<
jdecuirm >
you are absolutely right!
00:37
sharpmachine has joined #ruby-lang
00:38
nofxx has quit [Ping timeout: 244 seconds]
00:38
<
jdecuirm >
maybe because i'm not printing anything lol
00:39
nofxx has joined #ruby-lang
00:40
<
jhass >
`p` to the rescue! ;)
00:40
<
jdecuirm >
what is args[0] doing?!
00:40
<
jdecuirm >
with this
00:40
<
jdecuirm >
person.send(attr).include?(args[0])
00:40
[BNC]kwd has quit [Ping timeout: 260 seconds]
00:41
malconis has joined #ruby-lang
00:41
<
jhass >
do you understand the def foo(*args) syntax?
00:41
thomasxie has quit [Ping timeout: 260 seconds]
00:42
<
jdecuirm >
the *args
00:42
<
jdecuirm >
is like an array
00:42
<
jdecuirm >
it can take from zero to many values
00:42
lewix has joined #ruby-lang
00:42
<
jdecuirm >
it sponges to take values
00:42
lewix has joined #ruby-lang
00:42
lewix has quit [Changing host]
00:42
<
jhass >
let's call them arguments or parameters here ;)
00:42
<
jdecuirm >
yes sorry
00:42
<
jdecuirm >
there are required arguments
00:43
<
jdecuirm >
arguments with default values
00:43
<
jdecuirm >
optional arguments
00:43
<
jdecuirm >
as far as i remember lol
00:43
<
jhass >
so, def self.method_missing(m,*args), m is the method name, and args collects any parameters passed to the original method call
00:44
<
jdecuirm >
oh my god i love you xd
00:44
<
jdecuirm >
i forgot the parameter lol
00:44
<
jdecuirm >
as it is optional
00:44
<
jdecuirm >
it does not care if i call the method without parameter
00:44
<
jdecuirm >
but when i do it returns me the person with the hobbie("code")
00:44
<
jdecuirm >
for example
00:45
<
jhass >
yeah, you would get back the persons with `nil` as friend/hobby ;)
00:45
<
jhass >
since [][0] #=> nil
00:45
iliketurtles has quit [Quit: zzzzz…..]
00:46
<
jdecuirm >
you are a genius! xd
00:46
tkuchiki has quit [Remote host closed the connection]
00:47
<
jdecuirm >
well, the tricky part or maybe i'm not seeing it
00:47
<
jdecuirm >
is for example
00:47
<
jdecuirm >
f method.start_with?("all_with_")
00:47
<
jdecuirm >
attr = method[9..-1]
00:47
aleatorik has joined #ruby-lang
00:48
<
jdecuirm >
ok, i know that means it will check if the method begins with all_with_, then attr gets the full name like all_with_friends
00:48
<
jdecuirm >
but there is no public method called all_with_friends, i just have has_friend, how that works? :0
00:49
SuMo_D has joined #ruby-lang
00:49
<
jhass >
okay, first the method[9...-1]
00:49
<
jhass >
method is :all_with_friends
00:49
karamazov has joined #ruby-lang
00:49
<
jhass >
"all_with_".size is 9
00:50
<
jhass >
-1 goes to the end
00:50
<
jhass >
so that extracts "friends"
00:50
<
jhass >
that means we're looking for a friends method
00:50
<
jhass >
and line 3 defines it
00:51
<
jdecuirm >
right! the getter/reader method!
00:51
aleatorik is now known as wolves_cs
00:53
araujo has quit [Ping timeout: 260 seconds]
00:53
<
jdecuirm >
from 9 to -1 it's "friends"
00:53
<
jdecuirm >
oh, so if i go from 0 to -1 it's the full name all_with_friends, right?
00:53
araujo has joined #ruby-lang
00:55
<
jdecuirm >
thanks a lot jhass! now i get the full picture!
00:56
haraoka has joined #ruby-lang
00:56
amsi has quit [Quit: Leaving]
01:03
michaeldeol has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
01:03
tkuchiki has joined #ruby-lang
01:04
malconis has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
01:05
havenwood has quit [Remote host closed the connection]
01:06
skammer1 has joined #ruby-lang
01:08
lsegal has joined #ruby-lang
01:08
SuMo_D has quit [Remote host closed the connection]
01:09
SuMo_D has joined #ruby-lang
01:10
simi has quit [Ping timeout: 260 seconds]
01:12
skammer1 has quit [Ping timeout: 260 seconds]
01:13
SuMo_D has quit [Ping timeout: 258 seconds]
01:13
Olipro has quit [Read error: Connection reset by peer]
01:13
emmesswhy has joined #ruby-lang
01:15
znz_jp has quit [Quit: kill -QUIT $$]
01:16
<
jdecuirm >
jhass! in the example i sent you, will not be the same to give @hobbies and @friends attr_accessor? meaning that has_hobby and has_friend are setter/writer methods?
01:16
charliesome has joined #ruby-lang
01:16
wolves_cs has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
01:17
arooni-mobile has joined #ruby-lang
01:17
<
jhass >
no, a writer sets the value of an instance variable, has_hobby/friend modify the object the corresponding variable currently points to
01:17
<
jdecuirm >
because they are arrays right?
01:18
<
jhass >
because it's just different things
01:18
znz_jp has joined #ruby-lang
01:18
mistym has quit [Remote host closed the connection]
01:20
aleatorik has joined #ruby-lang
01:22
RobertBirnie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
01:29
arooni-mobile has quit [Ping timeout: 260 seconds]
01:29
emmesswhy has quit [Quit: This computer has gone to sleep]
01:33
emmesswhy has joined #ruby-lang
01:34
face has joined #ruby-lang
01:34
wallerdev has quit [Quit: wallerdev]
01:35
faces has quit [Ping timeout: 272 seconds]
01:35
|jemc| has quit [Ping timeout: 240 seconds]
01:37
faces has joined #ruby-lang
01:37
emmesswhy has quit [Client Quit]
01:37
AmBienCeD has quit []
01:38
face has quit [Ping timeout: 258 seconds]
01:39
yfeldblum has quit [Remote host closed the connection]
01:39
face has joined #ruby-lang
01:40
kylo has quit [Ping timeout: 245 seconds]
01:42
faces has quit [Ping timeout: 260 seconds]
01:43
wallerdev has joined #ruby-lang
01:52
justinmburrous has joined #ruby-lang
01:54
arBmind has quit [Ping timeout: 258 seconds]
01:55
arBmind has joined #ruby-lang
01:55
yfeldblum has joined #ruby-lang
01:57
nathanstitt has quit [Ping timeout: 244 seconds]
01:59
nathanstitt has joined #ruby-lang
02:04
mistym has joined #ruby-lang
02:07
skammer1 has joined #ruby-lang
02:08
kylo has joined #ruby-lang
02:12
shinnya has quit [Ping timeout: 250 seconds]
02:12
skammer1 has quit [Ping timeout: 244 seconds]
02:13
kylo has quit [Ping timeout: 272 seconds]
02:15
allomov has joined #ruby-lang
02:18
tectonic has joined #ruby-lang
02:19
allomov has quit [Ping timeout: 260 seconds]
02:20
nofxx_ has joined #ruby-lang
02:20
nofxx_ has quit [Changing host]
02:20
nofxx_ has joined #ruby-lang
02:20
nofxx has quit [Ping timeout: 260 seconds]
02:21
justinmburrous has quit [Remote host closed the connection]
02:24
justinmburrous has joined #ruby-lang
02:27
wallerdev has quit [Quit: wallerdev]
02:30
jgpawletko has quit [Quit: jgpawletko]
02:31
kgrz has joined #ruby-lang
02:32
brianpWins has quit [Quit: brianpWins]
02:33
SuMo_D has joined #ruby-lang
02:35
nonmadden has joined #ruby-lang
02:35
nathanstitt has quit [Ping timeout: 244 seconds]
02:36
torrieri has quit [Quit: Leaving...]
02:38
nathanstitt has joined #ruby-lang
02:43
emmesswhy has joined #ruby-lang
02:54
justinmburrous has quit [Remote host closed the connection]
02:57
hahuang65 has joined #ruby-lang
02:57
justinmburrous has joined #ruby-lang
03:00
emmesswhy has quit [Quit: This computer has gone to sleep]
03:08
skammer1 has joined #ruby-lang
03:10
mistym has quit [Remote host closed the connection]
03:12
Suchit_ has joined #ruby-lang
03:13
Suchit_ has quit [Client Quit]
03:13
skammer1 has quit [Ping timeout: 258 seconds]
03:15
Suchit__ has joined #ruby-lang
03:15
loincloth has joined #ruby-lang
03:16
Suchit___ has joined #ruby-lang
03:20
Suchit____ has joined #ruby-lang
03:20
Suchit__ has quit [Ping timeout: 272 seconds]
03:21
Suchit___ has quit [Ping timeout: 245 seconds]
03:22
centrx has joined #ruby-lang
03:22
centrx has quit [Remote host closed the connection]
03:24
Suchit____ has quit [Ping timeout: 244 seconds]
03:27
thomasxie has joined #ruby-lang
03:28
karamazov has quit []
03:32
nathanstitt has quit [Quit: I growing sleepy]
03:33
aleatorik has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
03:35
sharpmachine has quit [Remote host closed the connection]
03:35
loincloth has quit [Remote host closed the connection]
03:41
mistym has joined #ruby-lang
03:49
lcdhoffman has quit [Quit: lcdhoffman]
03:54
kyb3r_ has joined #ruby-lang
03:56
gix has quit [Ping timeout: 246 seconds]
04:00
gix has joined #ruby-lang
04:02
tylersmith has quit [Remote host closed the connection]
04:03
RobertBirnie has joined #ruby-lang
04:03
tylersmith has joined #ruby-lang
04:05
imkmf has joined #ruby-lang
04:08
justinmburrous has quit [Remote host closed the connection]
04:08
tylersmith has quit [Ping timeout: 272 seconds]
04:09
skammer1 has joined #ruby-lang
04:09
justinmburrous has joined #ruby-lang
04:13
skammer1 has quit [Ping timeout: 240 seconds]
04:14
thomasxie has quit [Remote host closed the connection]
04:16
allomov has joined #ruby-lang
04:17
torrieri has joined #ruby-lang
04:17
torrieri has quit [Changing host]
04:17
torrieri has joined #ruby-lang
04:18
TvL2386 has joined #ruby-lang
04:20
allomov has quit [Ping timeout: 272 seconds]
04:20
pr0ton_ has joined #ruby-lang
04:21
rcvalle has quit [Quit: rcvalle]
04:21
ur5us has quit [Remote host closed the connection]
04:22
JoshuaPaling has joined #ruby-lang
04:24
dagda1 has quit [Ping timeout: 258 seconds]
04:26
dagda1 has joined #ruby-lang
04:28
dagda1_ has joined #ruby-lang
04:30
dagda1 has quit [Ping timeout: 245 seconds]
04:31
torrieri has quit [Quit: Leaving...]
04:32
dagda1_ has quit [Ping timeout: 244 seconds]
04:34
dagda1 has joined #ruby-lang
04:39
thomasxie has joined #ruby-lang
04:49
thomasxie has quit [Quit: Leaving.]
04:50
dagda1 has quit [Ping timeout: 240 seconds]
04:51
dagda1 has joined #ruby-lang
04:56
havenwood has joined #ruby-lang
04:58
jhass is now known as jhass|off
04:59
spastorino has quit [Quit: Connection closed for inactivity]
05:00
x0f_ has quit [Quit: quit]
05:03
havenwood has quit [Remote host closed the connection]
05:03
yfeldblum has quit [Ping timeout: 272 seconds]
05:06
ta has quit [Remote host closed the connection]
05:07
nonmadden has quit [Remote host closed the connection]
05:07
AKASkip has joined #ruby-lang
05:08
nonmadden has joined #ruby-lang
05:08
x0f has joined #ruby-lang
05:09
skammer1 has joined #ruby-lang
05:12
nonmadden has quit [Ping timeout: 240 seconds]
05:14
jhass|off is now known as jhass
05:14
sharpmachine has joined #ruby-lang
05:15
skammer1 has quit [Ping timeout: 250 seconds]
05:17
nonmadden has joined #ruby-lang
05:24
SuMo_D has quit [Remote host closed the connection]
05:24
SuMo_D has joined #ruby-lang
05:27
lewix has quit [Read error: Connection reset by peer]
05:28
lewix has joined #ruby-lang
05:29
SuMo_D has quit [Ping timeout: 244 seconds]
05:32
nonmadden has quit [Remote host closed the connection]
05:32
justinmburrous has quit [Remote host closed the connection]
05:37
gianlucadv has joined #ruby-lang
05:39
JohnBat26 has joined #ruby-lang
05:39
JohnBat26 has quit [Client Quit]
05:40
jdecuirm has quit [Ping timeout: 260 seconds]
05:40
Stranger has joined #ruby-lang
05:40
Stranger is now known as Guest50980
05:40
tylersmith has joined #ruby-lang
05:40
symm- has joined #ruby-lang
05:42
Guest50980 has quit [Client Quit]
05:42
JohnBat26 has joined #ruby-lang
05:43
JohnBat26 has quit [Client Quit]
05:44
justinmburrous has joined #ruby-lang
05:45
JohnBat26 has joined #ruby-lang
05:46
JohnBat26 has quit [Client Quit]
05:47
AKASkip has quit [Ping timeout: 260 seconds]
05:48
JohnBat26 has joined #ruby-lang
05:49
symm- has quit [Ping timeout: 260 seconds]
05:51
jdecuirm has joined #ruby-lang
05:52
shubhamgoyal has quit [Remote host closed the connection]
05:53
shubhamgoyal has joined #ruby-lang
05:56
snsei has quit [Remote host closed the connection]
05:57
shubhamgoyal has quit [Ping timeout: 246 seconds]
06:09
spuk has quit [Ping timeout: 260 seconds]
06:10
spuk has joined #ruby-lang
06:11
skammer1 has joined #ruby-lang
06:14
havenwood has joined #ruby-lang
06:16
skammer1 has quit [Ping timeout: 245 seconds]
06:16
allomov has joined #ruby-lang
06:17
mattyohe has quit [Quit: Connection closed for inactivity]
06:18
havenwood has quit [Ping timeout: 264 seconds]
06:19
shubhamgoyal has joined #ruby-lang
06:21
allomov has quit [Ping timeout: 245 seconds]
06:21
apeiros has quit [Remote host closed the connection]
06:21
apeiros has joined #ruby-lang
06:24
sharpmachine has quit [Remote host closed the connection]
06:24
_ht has joined #ruby-lang
06:25
TvL2386 has quit [Remote host closed the connection]
06:26
clauswitt has joined #ruby-lang
06:30
apeiros has quit [Remote host closed the connection]
06:30
apeiros has joined #ruby-lang
06:34
apeiros has quit [Ping timeout: 245 seconds]
06:37
hackeron has quit [Ping timeout: 260 seconds]
06:37
clauswitt has quit [Ping timeout: 272 seconds]
06:38
hackeron has joined #ruby-lang
06:38
matp has quit [Remote host closed the connection]
06:39
matp has joined #ruby-lang
06:41
clauswitt has joined #ruby-lang
06:42
tectonic has quit []
06:42
AKASkip has joined #ruby-lang
06:46
pr0ton_ has quit [Quit: pr0ton_]
06:47
JoshuaPaling has joined #ruby-lang
06:55
mistym has quit [Remote host closed the connection]
06:57
yfeldblum has joined #ruby-lang
06:58
benlovell has joined #ruby-lang
06:59
solars has joined #ruby-lang
07:00
yfeldblum has quit [Remote host closed the connection]
07:01
tylersmith has quit []
07:01
yfeldblum has joined #ruby-lang
07:05
havenwood has joined #ruby-lang
07:05
apeiros has joined #ruby-lang
07:08
chussenot has joined #ruby-lang
07:08
chussenot has quit [Client Quit]
07:10
robbyoconnor has joined #ruby-lang
07:10
charliesome has quit [Quit: zzz]
07:11
Suchit____ has joined #ruby-lang
07:11
skammer1 has joined #ruby-lang
07:14
dagda1 has quit [Read error: Connection reset by peer]
07:17
skammer1 has quit [Ping timeout: 272 seconds]
07:18
dagda1 has joined #ruby-lang
07:19
charliesome has joined #ruby-lang
07:20
justinmburrous has quit [Remote host closed the connection]
07:34
[spoiler] has joined #ruby-lang
07:38
kgrz has quit [Remote host closed the connection]
07:41
dangerousdave has joined #ruby-lang
07:44
ta has joined #ruby-lang
07:44
allomov has joined #ruby-lang
07:46
dvorkbjel has quit [Remote host closed the connection]
07:48
dvorkbjel has joined #ruby-lang
07:48
nonmadden has joined #ruby-lang
07:48
RobertBirnie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
07:48
zarubin has joined #ruby-lang
07:52
nonmadden has quit [Remote host closed the connection]
07:53
tbuehlmann has joined #ruby-lang
07:54
qba73 has joined #ruby-lang
07:57
realDAB has joined #ruby-lang
07:57
havenwood has quit [Remote host closed the connection]
07:58
havenwood has joined #ruby-lang
07:59
Suchit____ has quit [Quit: Computer has gone to sleep.]
07:59
nonmadden has joined #ruby-lang
07:59
Suchit____ has joined #ruby-lang
07:59
Suchit____ has quit [Client Quit]
08:00
nonmadden has quit [Remote host closed the connection]
08:02
mikecmpbll has joined #ruby-lang
08:03
symm- has joined #ruby-lang
08:03
dagda1 has quit [Ping timeout: 240 seconds]
08:04
hellangel7 has joined #ruby-lang
08:05
dagda1 has joined #ruby-lang
08:06
hellangel7 has quit [Max SendQ exceeded]
08:07
hellangel7 has joined #ruby-lang
08:08
marr has joined #ruby-lang
08:10
elia has joined #ruby-lang
08:12
skammer1 has joined #ruby-lang
08:16
chussenot has joined #ruby-lang
08:16
realDAB has quit [Quit: realDAB]
08:16
<
yorickpeterse >
morning
08:18
skammer1 has quit [Ping timeout: 272 seconds]
08:18
JoshuaPaling has joined #ruby-lang
08:18
Forgetful_Lion has joined #ruby-lang
08:21
charliesome has quit [Quit: zzz]
08:22
kgrz has joined #ruby-lang
08:22
Suchit____ has joined #ruby-lang
08:25
Suchit____ has quit [Client Quit]
08:26
wallerdev has joined #ruby-lang
08:28
stardiviner has joined #ruby-lang
08:30
wallerdev has quit [Client Quit]
08:40
allomov has quit [Remote host closed the connection]
08:43
stef_204 has joined #ruby-lang
08:44
stef_204 has quit [Client Quit]
08:46
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
08:46
dangerousdave has joined #ruby-lang
08:49
dagda1 has quit [Ping timeout: 260 seconds]
08:52
emmesswhy has joined #ruby-lang
08:52
dagda1 has joined #ruby-lang
08:53
jds has joined #ruby-lang
08:57
Forgetful_Lion has quit [Remote host closed the connection]
08:57
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
08:58
GBrawl has joined #ruby-lang
09:08
michd is now known as MichD
09:08
lsegal has quit [Read error: Connection reset by peer]
09:08
lsegal has joined #ruby-lang
09:10
dangerousdave has joined #ruby-lang
09:13
skammer1 has joined #ruby-lang
09:18
skammer1 has quit [Ping timeout: 245 seconds]
09:21
StrangeR has joined #ruby-lang
09:21
dagda1 has quit [Ping timeout: 244 seconds]
09:21
StrangeR is now known as Guest71663
09:23
dagda1 has joined #ruby-lang
09:23
ljarvis has joined #ruby-lang
09:25
<
yorickpeterse >
ljarvis: haven't seen you around here in a while
09:25
<
ljarvis >
yeah I got busy
09:26
<
yorickpeterse >
suuuuureeee
09:26
<
yorickpeterse >
excuses
09:26
<
ljarvis >
you miss me?
09:26
<
yorickpeterse >
yes
09:26
<
yorickpeterse >
(¯ε¯ )
09:27
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
09:30
charliesome has joined #ruby-lang
09:31
dagda1_ has joined #ruby-lang
09:31
unclaimedbaggage has joined #ruby-lang
09:32
dagda1 has quit [Ping timeout: 260 seconds]
09:34
havenwood has quit [Remote host closed the connection]
09:35
havenwood has joined #ruby-lang
09:36
dagda1_ has quit [Ping timeout: 272 seconds]
09:37
dagda1 has joined #ruby-lang
09:38
workmad3 has joined #ruby-lang
09:40
chussenot_ has joined #ruby-lang
09:40
skammer1 has joined #ruby-lang
09:40
havenwood has quit [Ping timeout: 264 seconds]
09:41
chussenot has quit [Ping timeout: 250 seconds]
09:41
chussenot_ is now known as chussenot
09:42
haraoka has quit [Ping timeout: 250 seconds]
09:43
ljarvis_ has joined #ruby-lang
09:44
ljarvis has quit [Quit: Lost terminal]
09:47
allomov has joined #ruby-lang
09:48
qba73 has quit [Remote host closed the connection]
09:49
Stranger has joined #ruby-lang
09:49
Stranger is now known as Guest36548
09:50
qba73 has joined #ruby-lang
09:51
Guest36548 has quit [Client Quit]
09:51
JohnBat26 has joined #ruby-lang
09:52
JohnBat26 has quit [Client Quit]
09:52
JohnBat26 has joined #ruby-lang
09:53
nonmadden has joined #ruby-lang
09:54
dangerousdave has joined #ruby-lang
09:54
nonmadden has quit [Remote host closed the connection]
09:56
qba73 has quit [Remote host closed the connection]
09:57
qba73 has joined #ruby-lang
10:00
JoshuaPaling has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
10:01
chussenot has quit [Quit: chussenot]
10:04
kgrz_ has joined #ruby-lang
10:05
qba73 has quit [Remote host closed the connection]
10:06
lsegal has quit [Quit: Quit: Quit: Quit: Stack Overflow.]
10:07
qba73 has joined #ruby-lang
10:07
kgrz has quit [Ping timeout: 240 seconds]
10:08
simi has joined #ruby-lang
10:09
ljarvis_ is now known as ljarvis
10:13
migbar has joined #ruby-lang
10:18
shubhamgoyal has quit [Remote host closed the connection]
10:18
shubhamgoyal has joined #ruby-lang
10:20
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
10:22
postmodern has quit [Quit: Leaving]
10:22
clauswitt has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
10:23
symm- has quit [Ping timeout: 245 seconds]
10:23
shubhamgoyal has quit [Ping timeout: 246 seconds]
10:23
pskosinski has joined #ruby-lang
10:24
madzhuga has joined #ruby-lang
10:30
stamina has joined #ruby-lang
10:30
snsei has joined #ruby-lang
10:31
sepp2k has joined #ruby-lang
10:33
lewix has quit [Remote host closed the connection]
10:35
snsei has quit [Ping timeout: 272 seconds]
10:35
havenwood has joined #ruby-lang
10:36
yfeldblum has quit [Ping timeout: 260 seconds]
10:37
hellangel7 has quit [Remote host closed the connection]
10:41
hellangel7 has joined #ruby-lang
10:42
banister_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
10:45
nonmadden has joined #ruby-lang
10:48
nonmadden has quit [Remote host closed the connection]
10:49
dangerousdave has joined #ruby-lang
10:49
oleo__ has joined #ruby-lang
10:49
oleo is now known as Guest82020
10:52
Guest82020 has quit [Ping timeout: 258 seconds]
10:55
emmesswhy has quit [Quit: This computer has gone to sleep]
10:56
dagda1 has joined #ruby-lang
11:03
clauswitt has joined #ruby-lang
11:04
charliesome has quit [Quit: zzz]
11:05
yfeldblu_ has joined #ruby-lang
11:05
shubhamgoyal has joined #ruby-lang
11:05
charliesome has joined #ruby-lang
11:07
benlovell has quit [Ping timeout: 260 seconds]
11:08
x0f_ has joined #ruby-lang
11:10
yfeldblu_ has quit [Ping timeout: 272 seconds]
11:10
symm- has joined #ruby-lang
11:10
tkuchiki has quit [Remote host closed the connection]
11:11
x0f has quit [Ping timeout: 245 seconds]
11:12
tkuchiki has joined #ruby-lang
11:16
tkuchiki has quit [Ping timeout: 240 seconds]
11:22
arBmind has quit [Quit: Leaving.]
11:26
skammer1 has quit [Ping timeout: 260 seconds]
11:30
ldnunes has joined #ruby-lang
11:30
Suchit____ has joined #ruby-lang
11:30
kyb3r_ has quit [Read error: Connection reset by peer]
11:33
benlovell has joined #ruby-lang
11:35
GarethAdams has quit [Ping timeout: 260 seconds]
11:36
Blaguvest has joined #ruby-lang
11:40
GarethAdams has joined #ruby-lang
11:47
AKASkip has quit [Ping timeout: 246 seconds]
11:49
symm- has quit [Ping timeout: 260 seconds]
11:53
snsei has joined #ruby-lang
11:56
yalue has joined #ruby-lang
11:56
<
yorickpeterse >
YES, I get to phone a recruiter to tell them to bugger off
11:57
<
yorickpeterse >
dis gun be gud
11:57
snsei has quit [Ping timeout: 272 seconds]
11:59
unclaimedbaggage has quit [Quit: unclaimedbaggage]
11:59
lewix has joined #ruby-lang
12:04
havenwood has quit [Ping timeout: 264 seconds]
12:04
<
tbuehlmann >
you could talk an hour long about oga
12:05
spastorino has joined #ruby-lang
12:06
<
yorickpeterse >
haha
12:07
<
yorickpeterse >
"HELLO SIR DO YOU HAVE A MOMENT FOR THE WORD OF OUR LORD AND SAVIOUR OGA?"
12:08
ledestin has quit [Ping timeout: 244 seconds]
12:10
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
12:11
nofxx_ has quit [Ping timeout: 260 seconds]
12:11
nofxx__ has joined #ruby-lang
12:11
ledestin has joined #ruby-lang
12:12
toretore has joined #ruby-lang
12:15
unclaimedbaggage has joined #ruby-lang
12:17
TheToad has joined #ruby-lang
12:19
<
whitequark >
fucking ruby and its fucking parser. the mis-feature that allows you to omit parens in method calls and definitions is probably responsible for 2/3rd of its complexity
12:19
<
whitequark >
this is why you will never have nice tooling, rubyists. this is why.
12:20
dangerousdave has joined #ruby-lang
12:22
<
apeiros >
yorickpeterse: a couple of days ago a coworker: "hey, there's this new xml parser which tries to take on nokogiri. oga. have you heard of it?" :D
12:27
workmad3 is now known as wm3|away
12:30
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
12:30
<
yorickpeterse >
apeiros: heh
12:31
unclaimedbaggage has quit [Quit: unclaimedbaggage]
12:31
<
yorickpeterse >
whitequark: part of the problem is MRI maintainers still considering MRI as "the one true thing"
12:31
<
yorickpeterse >
and not "oh this might break 15 million other projects"
12:32
dangerousdave has joined #ruby-lang
12:32
unclaimedbaggage has joined #ruby-lang
12:34
<
whitequark >
the problem is that MRI never was and will never be a language implementation. rather, it's a heap of organically grown C code that executes some kind of text
12:34
<
whitequark >
have you seen @mbj's twitter? turns out segfaulting MRI with pure Ruby code is so easy, he doesn't report the errors, as there would be too many
12:34
<
whitequark >
this is a sign of your implementation being Really Broken.
12:35
jgpawletko has joined #ruby-lang
12:35
<
yorickpeterse >
one of but many reasons I spend (or at least have spent) a shitload of time of moving away from MRI to Rbx
12:35
<
whitequark >
rbx, the implementation that
*still* shits out on Travis for some bogus reason
12:35
<
yorickpeterse >
if only Nokogiri wasn't across our entire codebase
12:36
<
yorickpeterse >
whitequark: up until very recently Travis ran an outdated version of Rbx
12:36
<
yorickpeterse >
even though we asked many times to have it updated
12:36
<
yorickpeterse >
maybe my code is special, but I've had very few problems with Rbx itself
12:36
<
whitequark >
I think basically every project that I tried to move to rbx caused some rbx bugreports
12:37
<
yorickpeterse >
did you report those?
12:37
<
whitequark >
even ast, which is like, 100 lines
12:38
<
whitequark >
that sounds about right
12:38
<
yorickpeterse >
That's not meant as some backhanded reply, but too many times we get people saying "Oh I Got this bug....but I didn't report it"
12:39
nonmadden has joined #ruby-lang
12:39
<
yorickpeterse >
also people who just blindly migrate to Scale/Go, lol
12:39
<
whitequark >
Scala*
12:39
<
yorickpeterse >
"So we rewrote parts of our stuff in Scala" "Have you tried JRuby and/or Rubinius?" "eh...no"
12:39
<
whitequark >
it is STILL broken
12:39
<
yorickpeterse >
^ quite a few people on Baruco
12:39
<
yorickpeterse >
errr yeah, scala
12:40
<
yorickpeterse >
whitequark: that has nothing to do with Rbx
12:40
<
whitequark >
well lol, it only happens on rbx
12:41
<
yorickpeterse >
We'll probably patch that soon in Rbx, we're not going to wait for RG 2.5
12:41
<
yorickpeterse >
unless that will be released soon (tm)
12:43
<
yorickpeterse >
Either way, MRI isn't a platform I'd want to run my web 3.0 Cloudscale platform on
12:44
<
yorickpeterse >
even now with their "semver" you have no idea if minor levels break things
12:44
<
yorickpeterse >
and well, they do
12:47
TheToad has quit [Read error: Connection reset by peer]
12:48
skammer1 has joined #ruby-lang
12:51
<
whitequark >
yorickpeterse: minor? how about patch versions
12:53
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
12:53
danijoo has quit [Read error: Connection reset by peer]
12:53
danijoo has joined #ruby-lang
12:53
snsei has joined #ruby-lang
12:54
dangerousdave has joined #ruby-lang
12:55
<
yorickpeterse >
err yeah those too
12:55
<
whitequark >
"sure, let me just backport some syntax from 2.2 into 1.9.3"
12:56
<
whitequark >
I should start a Ruby Haters Handbook
12:57
<
Hanmac >
i would not surprised if someone still wants to have syntax backported from 2.2 to 1.8.7 ...
12:57
<
whitequark >
1.8.7 is dead for good... although I still maintain the parser on and for it
12:58
<
yorickpeterse >
well they do keep necro-ing 1.8 once in a while
12:58
snsei has quit [Ping timeout: 272 seconds]
13:00
banister has joined #ruby-lang
13:00
havenwood has joined #ruby-lang
13:02
snoopybbt has joined #ruby-lang
13:03
aleatorik has joined #ruby-lang
13:03
wm3|away has quit [Ping timeout: 258 seconds]
13:04
TheToad has joined #ruby-lang
13:05
havenwood has quit [Ping timeout: 264 seconds]
13:08
SuMo_D has joined #ruby-lang
13:10
kgrz_ has quit [Remote host closed the connection]
13:10
kgrz has joined #ruby-lang
13:11
gjaldon has joined #ruby-lang
13:12
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
13:12
kgrz has quit [Remote host closed the connection]
13:14
stamina has quit [Ping timeout: 250 seconds]
13:18
shubhamgoyal has quit [Remote host closed the connection]
13:18
<
yorickpeterse >
Fuck, it's 2014 and Pivotal Tracker still takes a decade to load
13:18
shubhamgoyal has joined #ruby-lang
13:23
shubhamgoyal has quit [Ping timeout: 250 seconds]
13:26
Forgetful_Lion has joined #ruby-lang
13:26
gjaldon has quit [Remote host closed the connection]
13:26
gjaldon has joined #ruby-lang
13:27
malconis has joined #ruby-lang
13:31
gjaldon has quit [Ping timeout: 244 seconds]
13:31
jxie has joined #ruby-lang
13:32
malconis has quit [Ping timeout: 260 seconds]
13:33
elia has quit [Ping timeout: 260 seconds]
13:34
Forgetful_Lion has quit [Remote host closed the connection]
13:34
TheToad has quit [Read error: Connection reset by peer]
13:35
seank_ has quit [Read error: No route to host]
13:35
[spoiler] has quit [Remote host closed the connection]
13:35
jxie_ has quit [Ping timeout: 272 seconds]
13:35
seank_ has joined #ruby-lang
13:36
malconis has joined #ruby-lang
13:36
<
yorickpeterse >
I've seens it
13:36
elia has joined #ruby-lang
13:37
<
yorickpeterse >
Geenstijl, a rather well known Dutch website (super right wing) is already poking fun at it
13:37
<
yorickpeterse >
(they're usually known for harassing politicians in amazing ways)
13:37
<
yorickpeterse >
also they organized an official protest against recording videos vertically
13:38
elia has quit [Client Quit]
13:39
<
yorickpeterse >
the best part is the fake IS flag
13:40
<
whitequark >
I can't wait for zenspider to start implementing 2.1 and 2.2 features
13:41
<
yorickpeterse >
you mean never?
13:41
<
whitequark >
I think he did some 2.1 ones
13:42
<
whitequark >
it means I'll get to do Pedantic Reporting of MRI Bug-for-bug Compatibility again :}
13:46
SuMo_D has quit [Remote host closed the connection]
13:47
SuMo_D has joined #ruby-lang
13:47
chussenot has joined #ruby-lang
13:51
banister is now known as banisterfiend
13:52
SuMo_D has quit [Ping timeout: 272 seconds]
13:52
TheToad has joined #ruby-lang
13:52
clauswitt has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
13:53
whippythellama has joined #ruby-lang
13:54
elia has joined #ruby-lang
13:56
nathanstitt has joined #ruby-lang
13:57
wm3|away has joined #ruby-lang
13:58
Blaguvest has quit [Remote host closed the connection]
13:59
gjaldon has joined #ruby-lang
14:00
torrieri has joined #ruby-lang
14:01
havenwood has joined #ruby-lang
14:01
tbuehlmann has quit [Remote host closed the connection]
14:01
symm- has joined #ruby-lang
14:06
havenwood has quit [Ping timeout: 264 seconds]
14:08
<
yorickpeterse >
whitequark: so I have this great idea
14:08
<
yorickpeterse >
whitequark: every time you fix parser, take a shot of alcohol
14:08
<
yorickpeterse >
A few patch levels in you'll finally understand everything of parse.y
14:08
hellangel7 has quit [Read error: Connection reset by peer]
14:08
<
yorickpeterse >
plus we get to read funny drunk tweets
14:08
<
whitequark >
yorickpeterse: I'm not funny when I drunk.
14:09
loincloth has joined #ruby-lang
14:09
<
whitequark >
I'm not even more angry, because that's physically impossible.
14:09
mannyt has joined #ruby-lang
14:09
<
yorickpeterse >
pffft
14:10
wm3|away is now known as workmad3
14:10
shubhamgoyal has joined #ruby-lang
14:10
dangerousdave has joined #ruby-lang
14:13
Voker57 has quit [Remote host closed the connection]
14:14
AKASkip has joined #ruby-lang
14:15
torrieri has quit [Quit: Leaving...]
14:16
snoopybbt has quit [Ping timeout: 245 seconds]
14:22
TheToad has quit [Read error: Connection reset by peer]
14:24
bradcliffe has joined #ruby-lang
14:24
tkuchiki has joined #ruby-lang
14:24
cmhobbs has joined #ruby-lang
14:24
cmhobbs has joined #ruby-lang
14:24
torrieri has joined #ruby-lang
14:26
GBrawl has joined #ruby-lang
14:26
unclaimedbaggage has quit [Quit: unclaimedbaggage]
14:27
bradcliffe has quit [Remote host closed the connection]
14:27
Suchit____ has quit [Quit: Computer has gone to sleep.]
14:28
jgpawletko has quit [Quit: jgpawletko]
14:29
unclaimedbaggage has joined #ruby-lang
14:29
spastorino has quit [Quit: Connection closed for inactivity]
14:32
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
14:33
dangerousdave has joined #ruby-lang
14:34
torrieri has quit [Quit: Leaving...]
14:36
torrieri has joined #ruby-lang
14:37
jgpawletko has joined #ruby-lang
14:38
unclaimedbaggage has quit [Quit: unclaimedbaggage]
14:39
davispuh has joined #ruby-lang
14:45
shinnya has joined #ruby-lang
14:45
oleo__ is now known as oleo
14:45
GBrawl has quit [Quit: Computer has gone to sleep.]
14:46
davispuh has quit [Ping timeout: 245 seconds]
14:47
davispuh has joined #ruby-lang
14:48
kadoppe has quit [Quit: WeeChat 0.4.3]
14:50
klmlfl has joined #ruby-lang
14:51
LCaesar has joined #ruby-lang
14:52
GBrawl has joined #ruby-lang
14:52
LCaesar has quit [Client Quit]
14:53
LCaesar has joined #ruby-lang
14:53
Dededede4 has joined #ruby-lang
14:55
snsei has joined #ruby-lang
14:56
mistym has joined #ruby-lang
14:56
GBrawl has quit [Client Quit]
14:57
<
Dededede4 >
exec('mv output/*/*.vtt '+output+'/'+suffix+'_thumbs.vtt')
14:57
<
Dededede4 >
exec('mv output/*/*.jpg '+output+'/'+suffix+'_sprite.jpg')
14:57
<
Dededede4 >
Only the first line is executed. There I only .vtt if I reverse the lines I have jpg
14:59
apeiros has quit [Remote host closed the connection]
14:59
apeiros has joined #ruby-lang
15:00
snsei has quit [Ping timeout: 260 seconds]
15:00
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
15:01
<
yorickpeterse >
haha
15:02
Blaguvest has joined #ruby-lang
15:04
apeiros has quit [Ping timeout: 244 seconds]
15:06
<
Dededede4 >
my solution : use one exec() for make all.
15:11
zarubin has quit []
15:14
solars has quit [Ping timeout: 272 seconds]
15:20
torrieri has quit [Quit: Leaving...]
15:22
Hanmac has quit [Ping timeout: 258 seconds]
15:23
seank__ has joined #ruby-lang
15:24
benlovell has quit [Ping timeout: 245 seconds]
15:25
torrieri has joined #ruby-lang
15:26
dangerousdave has joined #ruby-lang
15:26
seank_ has quit [Ping timeout: 246 seconds]
15:30
jgpawletko is now known as jgpawletko_lunch
15:30
oleo has quit [Quit: Verlassend]
15:32
havenwood has joined #ruby-lang
15:32
havenwood has quit [Remote host closed the connection]
15:33
oleo has joined #ruby-lang
15:36
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
15:36
justinmburrous has joined #ruby-lang
15:40
|jemc| has joined #ruby-lang
15:42
gjaldon has quit [Remote host closed the connection]
15:42
gjaldon has joined #ruby-lang
15:44
charliesome has quit [Quit: zzz]
15:45
gjaldon_ has joined #ruby-lang
15:45
gjaldon has quit [Read error: Connection reset by peer]
15:46
go|dfish has quit [Remote host closed the connection]
15:48
sharpmachine has joined #ruby-lang
15:48
__butch__ has joined #ruby-lang
15:50
palmertime has joined #ruby-lang
15:50
wallerdev has joined #ruby-lang
15:53
sharpmachine has quit [Remote host closed the connection]
15:53
LCaesar has quit []
15:54
<
palmertime >
Im trying to compile ruby on a solaris 10 system and want to use a different openssl version than the one install on the system. How can i compile ruby to utilize this newer version?
15:56
gjaldon_ has quit [Remote host closed the connection]
15:57
gjaldon has joined #ruby-lang
15:57
ruby-lang306 has joined #ruby-lang
15:58
roroco has joined #ruby-lang
15:59
mikecmpbll has quit [Quit: i've nodded off.]
15:59
roroco has quit [Client Quit]
16:00
apeiros has joined #ruby-lang
16:01
gjaldon has quit [Ping timeout: 250 seconds]
16:02
ruby-lang306 has quit [Ping timeout: 246 seconds]
16:03
michaeldeol has joined #ruby-lang
16:05
qba73 has quit [Remote host closed the connection]
16:06
whippythellama has quit [Quit: whippythellama]
16:07
justinmburrous has quit [Remote host closed the connection]
16:07
kgrz has joined #ruby-lang
16:09
gjaldon has joined #ruby-lang
16:10
sharpmachine has joined #ruby-lang
16:11
wallerdev has quit [Quit: wallerdev]
16:12
justinmburrous has joined #ruby-lang
16:14
symm- has quit [Quit: Leaving...]
16:14
<
apeiros >
Dededede4: exec
*replaces* the current process
16:15
mistym has quit [Remote host closed the connection]
16:16
tbuehlmann has joined #ruby-lang
16:18
kgrz has quit [Remote host closed the connection]
16:19
symm- has joined #ruby-lang
16:19
<
whitequark >
palmertime: ./configure --with-openssl=
16:21
<
palmertime >
whitequark: Thanks for the info, i'll try that now.
16:21
nertzy2 has joined #ruby-lang
16:24
lcdhoffman has joined #ruby-lang
16:24
|jemc| has quit [Read error: Connection reset by peer]
16:26
chussenot has quit [Quit: chussenot]
16:26
|jemc| has joined #ruby-lang
16:26
torrieri has quit [Quit: Leaving...]
16:26
brianpWins has joined #ruby-lang
16:27
dabradley has quit [Ping timeout: 245 seconds]
16:27
dagda1 has quit [Read error: Connection reset by peer]
16:28
dagda1 has joined #ruby-lang
16:29
shinnya has quit [Ping timeout: 272 seconds]
16:29
kgrz has joined #ruby-lang
16:30
yfeldblum has joined #ruby-lang
16:31
benlovell has joined #ruby-lang
16:32
klmlfl has quit [Remote host closed the connection]
16:32
thoolihan has quit [Ping timeout: 258 seconds]
16:34
thoolihan has joined #ruby-lang
16:34
hellangel7 has joined #ruby-lang
16:34
yfeldblum has quit [Ping timeout: 258 seconds]
16:35
benlovell has quit [Ping timeout: 250 seconds]
16:36
torrieri has joined #ruby-lang
16:36
wallerdev has joined #ruby-lang
16:37
chussenot has joined #ruby-lang
16:37
stamina has joined #ruby-lang
16:37
stamina has quit [Client Quit]
16:38
dabradley has joined #ruby-lang
16:39
jgpawletko_lunch is now known as jgpawletko
16:39
torrieri has quit [Client Quit]
16:41
imkmf has joined #ruby-lang
16:43
justinmburrous has quit [Remote host closed the connection]
16:45
elia has quit [Quit: Computer has gone to sleep.]
16:46
rippa has joined #ruby-lang
16:47
justinmburrous has joined #ruby-lang
16:47
kgrz has quit [Remote host closed the connection]
16:48
haraoka has joined #ruby-lang
16:49
thagomizer has joined #ruby-lang
16:52
allomov has quit [Remote host closed the connection]
16:53
allomov has joined #ruby-lang
16:55
jbardin has joined #ruby-lang
16:56
snsei has joined #ruby-lang
16:57
iliketurtles has joined #ruby-lang
16:57
allomov has quit [Ping timeout: 245 seconds]
17:00
wkoch has joined #ruby-lang
17:00
workmad3 has quit [Ping timeout: 260 seconds]
17:01
snsei has quit [Ping timeout: 245 seconds]
17:01
wkoch has quit [Client Quit]
17:01
lcdhoffman has quit [Quit: lcdhoffman]
17:01
mistym has joined #ruby-lang
17:07
michaeldeol has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
17:08
nertzy2 has quit [Quit: This computer has gone to sleep]
17:09
michaeldeol has joined #ruby-lang
17:09
lcdhoffman has joined #ruby-lang
17:10
Mon_Ouie has joined #ruby-lang
17:11
RobertBirnie has joined #ruby-lang
17:12
klmlfl has joined #ruby-lang
17:15
LesZedCB has joined #ruby-lang
17:15
LesZedCB has left #ruby-lang [#ruby-lang]
17:16
tkuchiki has quit [Remote host closed the connection]
17:17
justinmburrous has quit [Remote host closed the connection]
17:18
Stranger has joined #ruby-lang
17:18
Stranger is now known as Guest98240
17:19
Guest98240 has quit [Client Quit]
17:19
JohnBat26 has joined #ruby-lang
17:19
chussenot has quit [Quit: chussenot]
17:19
skammer1 has quit [Ping timeout: 272 seconds]
17:22
ldnunes has quit [Quit: Leaving]
17:22
kgrz has joined #ruby-lang
17:23
ldnunes has joined #ruby-lang
17:24
simi has quit [Ping timeout: 245 seconds]
17:24
allomov has joined #ruby-lang
17:25
wallerdev has quit [Quit: wallerdev]
17:27
mistym_ has joined #ruby-lang
17:28
michaeldeol has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
17:30
mistym has quit [Ping timeout: 260 seconds]
17:30
chouhoul_ has joined #ruby-lang
17:30
chouhoulis has quit [Read error: Connection reset by peer]
17:31
dangerousdave has joined #ruby-lang
17:31
tylersmith has joined #ruby-lang
17:36
wallerdev has joined #ruby-lang
17:36
tommylommykins has quit [Remote host closed the connection]
17:36
elia has joined #ruby-lang
17:36
go|dfish has joined #ruby-lang
17:37
tommylommykins has joined #ruby-lang
17:38
allomov_ has joined #ruby-lang
17:38
allomov has quit [Read error: Connection reset by peer]
17:39
lcdhoffman has quit [Quit: lcdhoffman]
17:39
allomov_ has quit [Read error: Connection reset by peer]
17:40
allomov has joined #ruby-lang
17:40
justinmburrous has joined #ruby-lang
17:41
lcdhoffman has joined #ruby-lang
17:44
mistym_ is now known as mistym
17:46
michaeldeol has joined #ruby-lang
17:47
tylersmith has quit [Read error: Connection reset by peer]
17:47
allomov has quit [Read error: Connection reset by peer]
17:47
allomov_ has joined #ruby-lang
17:47
tylersmith has joined #ruby-lang
17:47
elia has quit [Ping timeout: 258 seconds]
17:48
postmodern has joined #ruby-lang
17:48
tylersmith has quit [Read error: Connection reset by peer]
17:49
tylersmith has joined #ruby-lang
17:53
tharindu has joined #ruby-lang
17:54
sarkyniin has joined #ruby-lang
17:54
havenwood has joined #ruby-lang
17:56
tylersmi_ has joined #ruby-lang
17:58
tylersmith has quit [Ping timeout: 260 seconds]
18:00
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
18:05
lcdhoffman has quit [Quit: lcdhoffman]
18:10
tylersmi_ has quit []
18:10
kgrz has quit [Remote host closed the connection]
18:11
justinmburrous has quit [Remote host closed the connection]
18:13
justinmburrous has joined #ruby-lang
18:16
ikrima has joined #ruby-lang
18:19
unclaimedbaggage has joined #ruby-lang
18:19
seank__ has quit [Remote host closed the connection]
18:19
seank_ has joined #ruby-lang
18:21
iliketurtles has quit [Quit: zzzzz…..]
18:21
GBrawl has joined #ruby-lang
18:22
chussenot has joined #ruby-lang
18:23
AlJaMa has quit [Ping timeout: 245 seconds]
18:24
snoopybbt has joined #ruby-lang
18:28
AlJaMa has joined #ruby-lang
18:37
sharpmachine has quit [Remote host closed the connection]
18:38
chussenot has quit [Quit: chussenot]
18:44
justinmburrous has quit [Remote host closed the connection]
18:44
Lumio has joined #ruby-lang
18:48
<
palmertime >
whitequark: It didn't work! :( not sure what i am doing wrong.
18:49
blueness has joined #ruby-lang
18:49
gjaldon has quit []
18:50
<
blueness >
is there a git repo for ruby?
18:50
unclaimedbaggage has quit [Ping timeout: 245 seconds]
18:51
Lumio has quit [Quit: ...]
18:51
<
Mon_Ouie >
There's a mirror on github, but the official repo uses SVN
18:52
iliketurtles has joined #ruby-lang
18:56
dagda1 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
18:56
iliketurtles has quit [Client Quit]
18:56
unclaimedbaggage has joined #ruby-lang
18:56
ta has quit [Remote host closed the connection]
18:57
justinmburrous has joined #ruby-lang
18:57
migbar has quit [Remote host closed the connection]
18:59
pskosinski_ has joined #ruby-lang
19:00
tylersmith has joined #ruby-lang
19:03
pskosinski has quit [Ping timeout: 264 seconds]
19:03
fenicks has joined #ruby-lang
19:04
makepkgnotwar has joined #ruby-lang
19:07
jds has quit [Quit: Connection closed for inactivity]
19:08
pskosinski_ is now known as pskosinski
19:10
elia has joined #ruby-lang
19:11
makepkgnotwar has quit [Ping timeout: 245 seconds]
19:13
allomov_ has quit [Remote host closed the connection]
19:16
tkuchiki has joined #ruby-lang
19:18
gianlucadv has quit [Ping timeout: 240 seconds]
19:21
workmad3 has joined #ruby-lang
19:21
tkuchiki has quit [Ping timeout: 260 seconds]
19:23
yfeldblum has joined #ruby-lang
19:27
justinmburrous has quit [Remote host closed the connection]
19:29
<
blueness >
Mon_Ouie, thanks
19:31
elia has quit [Quit: Computer has gone to sleep.]
19:32
justinmburrous has joined #ruby-lang
19:33
workmad3 has quit [Ping timeout: 245 seconds]
19:34
lewix has quit [Remote host closed the connection]
19:35
fullybaked has joined #ruby-lang
19:37
FastJack has quit [Ping timeout: 250 seconds]
19:44
luiz_lha has quit [Read error: Connection reset by peer]
19:44
luiz_lha has joined #ruby-lang
19:48
makepkgnotwar has joined #ruby-lang
19:48
kristenk has joined #ruby-lang
19:49
<
kristenk >
Anyone there to field a question related to Ruby & CentOS?
19:50
elia has joined #ruby-lang
19:52
loincloth has quit [Read error: Connection reset by peer]
19:53
kyb3r_ has joined #ruby-lang
19:53
loinclot_ has joined #ruby-lang
19:53
<
kristenk >
brb-lunch
19:53
ikrima has quit [Ping timeout: 245 seconds]
19:54
<
yxhuvud >
kristenk: don't ask to ask a question. Simply ask the question
19:55
unclaimedbaggage has quit [Quit: unclaimedbaggage]
19:58
migbar has joined #ruby-lang
19:58
michaeldeol has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
20:01
dagda1 has joined #ruby-lang
20:03
justinmburrous has quit [Remote host closed the connection]
20:03
jgpawletko has quit [Quit: jgpawletko]
20:04
iliketurtles has joined #ruby-lang
20:05
seank__ has joined #ruby-lang
20:06
seank_ has quit [Read error: Connection reset by peer]
20:07
migbar has quit [Ping timeout: 260 seconds]
20:08
jbardin has quit [Quit: jbardin]
20:13
loinclot_ has quit [Read error: Connection reset by peer]
20:14
loincloth has joined #ruby-lang
20:14
justinmburrous has joined #ruby-lang
20:14
SuMo_D has joined #ruby-lang
20:15
michaeldeol has joined #ruby-lang
20:15
lewix has joined #ruby-lang
20:15
arBmind has joined #ruby-lang
20:17
yalue has quit [Quit: Leaving]
20:17
hackeron has quit [Ping timeout: 245 seconds]
20:18
sharpmachine has joined #ruby-lang
20:18
sharpmachine has quit [Remote host closed the connection]
20:18
hackeron has joined #ruby-lang
20:20
makepkgnotwar has quit [Quit: Leaving]
20:25
aleatorik is now known as wolves_cs
20:27
fullybaked has quit []
20:28
mistym has quit [Remote host closed the connection]
20:29
dagda1_ has joined #ruby-lang
20:29
_ht has quit [Remote host closed the connection]
20:29
nonmadden has quit [Remote host closed the connection]
20:31
SuMo_D has quit [Remote host closed the connection]
20:32
SuMo_D has joined #ruby-lang
20:33
SuMo_D has quit [Read error: Connection reset by peer]
20:33
ur5us has joined #ruby-lang
20:33
SuMo_D has joined #ruby-lang
20:33
SuMo_D has quit [Remote host closed the connection]
20:34
SuMo_D has joined #ruby-lang
20:34
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
20:36
loincloth has quit [Ping timeout: 245 seconds]
20:37
loincloth has joined #ruby-lang
20:38
SuMo_D has quit [Ping timeout: 260 seconds]
20:38
jxpx777 has joined #ruby-lang
20:39
ducklobster has joined #ruby-lang
20:43
jbardin has joined #ruby-lang
20:44
dagda1_ has quit [Ping timeout: 272 seconds]
20:44
AmBienCeD has joined #ruby-lang
20:44
dagda1 has joined #ruby-lang
20:44
justinmburrous has quit [Remote host closed the connection]
20:44
ta has joined #ruby-lang
20:47
jeff_r has joined #ruby-lang
20:50
marr has quit [Read error: Connection reset by peer]
20:55
nofxx__ has quit [Remote host closed the connection]
20:55
ur5us has quit [Remote host closed the connection]
20:55
justinmburrous has joined #ruby-lang
20:56
nofxx has joined #ruby-lang
20:56
nofxx has joined #ruby-lang
20:56
nofxx has quit [Changing host]
20:56
allomov has joined #ruby-lang
20:58
LCaesar has joined #ruby-lang
20:59
lewix has quit [Remote host closed the connection]
21:01
<
kristenk >
so i'm trying to deploy a ruby app (website, http api)
21:02
<
kristenk >
when i run bundle exec rake db:migrate
21:02
<
kristenk >
i receive an error message:LoadError: cannot load such file -- websocket_mask
21:02
<
kristenk >
btw I'm running CentOS
21:02
<
kristenk >
6.4 Final.
21:03
allomov_ has joined #ruby-lang
21:03
allomov has quit [Read error: Connection reset by peer]
21:03
migbar has joined #ruby-lang
21:04
<
kristenk >
I have ruby 1.9.3, installed via Software Collection (SCL) repositories
21:04
allomov_ has quit [Remote host closed the connection]
21:07
<
yxhuvud >
have you run bundle install?
21:09
hellangel7 has quit [Remote host closed the connection]
21:11
migbar has quit [Ping timeout: 258 seconds]
21:15
torrieri has joined #ruby-lang
21:15
<
kristenk >
no errors
21:15
<
darix >
kristenk: is the app public?
21:16
<
darix >
are you running bungle exec in the right software collection?
21:16
<
darix >
as far as i know you have to prefix it with some "sc" or so
21:17
<
darix >
(disclaimer: i am not really using this stuff, that is just something that stuck from a discussion with the fedora ruby maintainer)
21:17
tkuchiki has joined #ruby-lang
21:18
<
kristenk >
i've found when installing ruby via yum, that the centos repository only installs ruby 1.8.x, but I need 1.9.3 for the application
21:18
<
kristenk >
so i yum'd scl
21:18
<
kristenk >
then installed ruby 193 via SCL
21:18
<
kristenk >
repository
21:18
<
darix >
kristenk: yes
21:19
<
kristenk >
just updated the PATH for my ruby binaries
21:19
<
kristenk >
so i can just use ruby sans any prefix or suffix
21:20
<
darix >
kristenk: check head $(which bundle)
21:21
<
darix >
if it calls the correct ruby for bundle
21:21
mistym has joined #ruby-lang
21:22
<
kristenk >
so execute, " check head $(which bundle)" ?
21:22
<
darix >
head $(which bundle)
21:22
tkuchiki has quit [Ping timeout: 272 seconds]
21:23
<
kristenk >
#!/opt/rh/ruby193/root/usr/bin/ruby
21:23
<
kristenk >
# The application 'bundler' is installed as part of a gem, and
21:23
<
kristenk >
# This file was generated by RubyGems.
21:23
<
kristenk >
# this file is here to facilitate running it.
21:23
<
kristenk >
require 'rubygems'
21:25
justinmburrous has quit [Remote host closed the connection]
21:26
FastJack has joined #ruby-lang
21:27
mistym_ has joined #ruby-lang
21:29
ldnunes has quit [Quit: Leaving]
21:29
mistym has quit [Ping timeout: 272 seconds]
21:32
<
darix >
kristenk: 1. you didnt have to paste it. 2. the first line would have been enough
21:34
tbuehlmann has quit [Remote host closed the connection]
21:34
mistym_ is now known as mistym
21:35
dagda1 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
21:40
wolves_cs has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
21:40
dagda1 has joined #ruby-lang
21:42
MichD is now known as michd
21:44
justinmburrous has joined #ruby-lang
21:44
fusillicode has joined #ruby-lang
21:45
torrieri has quit [Quit: Leaving...]
21:45
lewix has joined #ruby-lang
21:46
fusillicode1 has quit [Read error: No route to host]
21:46
fusillicode has quit [Client Quit]
21:46
loincloth has quit [Read error: Connection reset by peer]
21:47
loincloth has joined #ruby-lang
21:47
fusillicode has joined #ruby-lang
21:48
fusillicode1 has joined #ruby-lang
21:49
allomov has joined #ruby-lang
21:52
shinnya has joined #ruby-lang
21:52
fusillicode has quit [Ping timeout: 272 seconds]
21:52
postmodern has quit [Quit: Leaving]
21:55
allomov has quit [Remote host closed the connection]
21:56
marr has joined #ruby-lang
21:58
malconis has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
21:58
AKASkip has quit [Ping timeout: 245 seconds]
22:01
torrieri has joined #ruby-lang
22:02
tkuchiki has joined #ruby-lang
22:04
loincloth has quit [Read error: Connection reset by peer]
22:04
loinclot_ has joined #ruby-lang
22:08
migbar has joined #ruby-lang
22:10
LCaesar has quit []
22:12
nathanstitt has quit [Quit: I growing sleepy]
22:12
hinbody has quit [Ping timeout: 250 seconds]
22:13
mikecmpbll has joined #ruby-lang
22:14
tharindu has quit [Ping timeout: 240 seconds]
22:14
justinmburrous has quit [Remote host closed the connection]
22:16
loinclot_ has quit [Ping timeout: 244 seconds]
22:16
migbar has quit [Ping timeout: 250 seconds]
22:18
loincloth has joined #ruby-lang
22:19
seamon has joined #ruby-lang
22:20
<
zenspider >
whitequark: oi. thanks for the metric fuckton of issues on ruby_parser
22:20
cmhobbs has quit [Ping timeout: 272 seconds]
22:20
GBrawl has joined #ruby-lang
22:21
<
zenspider >
kristenk: when you switch from 1.8 to 1.9 you really should reinstall all your gems anyways
22:21
chouhoul_ has quit [Ping timeout: 272 seconds]
22:21
<
zenspider >
fixes the gem wrappers, but also recompiles binary gems which would cause ruby 1.9 to crash if they loaded 1.8 gems
22:22
GBrawl has quit [Client Quit]
22:27
loincloth has quit [Ping timeout: 260 seconds]
22:28
<
kristenk >
if i run bundle install for my application (req. ruby 1.9) it should download the gems specific for 1.9, yes?
22:28
emmesswhy has joined #ruby-lang
22:28
<
kristenk >
i checked my gem environment
22:28
<
kristenk >
and it points to a few directories storing gems
22:28
<
zenspider >
should. yeah.
22:29
<
kristenk >
2 directories that's an extension of the path where my ruby193 binary is stored
22:29
<
zenspider >
the problem is ppl using this broken notion of "gemsets" and essentially sharing gems across (potentially) multiple versions of rubies
22:29
loincloth has joined #ruby-lang
22:29
<
kristenk >
well i initially installed ruby 1.8 via yum
22:29
<
kristenk >
prior to getting SCL
22:30
__butch__ has quit [Quit: Leaving.]
22:30
<
kristenk >
and uninstalled it prior to installing 1.9, so i am assuming that the removal of 1.8 also removed 1.8-related gems
22:31
apeiros has quit [Remote host closed the connection]
22:31
apeiros has joined #ruby-lang
22:32
spastorino has joined #ruby-lang
22:33
mikecmpbll has quit [Ping timeout: 246 seconds]
22:38
yfeldblum has quit [Ping timeout: 272 seconds]
22:39
<
kristenk >
zenspider are you still there?
22:41
itsraining has joined #ruby-lang
22:41
itsraining has left #ruby-lang [#ruby-lang]
22:42
itsraining has joined #ruby-lang
22:42
iliketurtles has quit [Quit: zzzzz…..]
22:44
justinmburrous has joined #ruby-lang
22:44
iliketurtles has joined #ruby-lang
22:47
emmesswhy has quit [Quit: This computer has gone to sleep]
22:53
danijoo has quit [Read error: Connection reset by peer]
22:53
danijoo has joined #ruby-lang
22:56
sarkyniin has quit [Quit: Quitte]
22:57
JoshuaPaling has joined #ruby-lang
22:57
JoshuaPaling has quit [Remote host closed the connection]
23:00
tectonic has joined #ruby-lang
23:00
symm- has quit [Ping timeout: 240 seconds]
23:10
<
kristenk >
heading out. will be back later
23:10
kristenk has left #ruby-lang [#ruby-lang]
23:12
seamon has quit [Quit: Zzzzzzz]
23:13
migbar has joined #ruby-lang
23:13
justinmburrous has quit [Remote host closed the connection]
23:14
oleo__ has joined #ruby-lang
23:14
oleo is now known as Guest56953
23:17
justinmb_ has joined #ruby-lang
23:17
Guest56953 has quit [Ping timeout: 272 seconds]
23:18
jhass is now known as jhass|off
23:18
loincloth has quit [Remote host closed the connection]
23:21
emmesswhy has joined #ruby-lang
23:22
migbar has quit [Ping timeout: 260 seconds]
23:23
nofxx has quit [Ping timeout: 272 seconds]
23:27
seamon has joined #ruby-lang
23:30
torrieri has quit [Read error: Connection reset by peer]
23:30
torrieri_ has joined #ruby-lang
23:32
mistym has quit [Remote host closed the connection]
23:36
tkuchiki has quit [Remote host closed the connection]
23:43
mistym has joined #ruby-lang
23:43
snoopybbt has quit [Ping timeout: 245 seconds]
23:43
klmlfl has quit [Ping timeout: 244 seconds]
23:46
yfeldblum has joined #ruby-lang
23:46
justinmb_ has quit [Remote host closed the connection]
23:47
sepp2k has quit [Read error: Connection reset by peer]
23:47
iliketurtles has quit [Quit: zzzzz…..]
23:49
lewix has quit [Ping timeout: 272 seconds]
23:49
RobertBirnie has quit [Ping timeout: 272 seconds]
23:49
elia has quit [Quit: Computer has gone to sleep.]
23:49
lewix has joined #ruby-lang
23:51
yfeldblum has quit [Ping timeout: 245 seconds]
23:53
justinmburrous has joined #ruby-lang
23:53
itsraining has quit [Quit: itsraining]
23:58
tectonic has quit []
23:58
imkmf has quit [Ping timeout: 258 seconds]