00:00
dviola has quit [Quit: WeeChat 2.1]
00:01
heftig has quit [Quit: heftig]
00:01
<
SeepingN >
surely in 2018 you're starting with at LEAST ruby 2.0....
00:02
jamesaxl has quit [Quit: WeeChat 2.1]
00:03
duderonomy has joined #ruby
00:03
<
havenwood >
Echo6: You should grab a modern Ruby. What type of system are you on? How'd you install Ruby?
00:04
ramfjord has quit [Ping timeout: 240 seconds]
00:05
_antares_ has joined #ruby
00:05
fercell has joined #ruby
00:06
n0m4d1c has joined #ruby
00:09
chocoelho has quit [Ping timeout: 240 seconds]
00:10
_antares_ has quit [Ping timeout: 276 seconds]
00:11
<
havenwood >
Echo6: Ruby 2.4 or 2.5 are great options.
00:11
jcarl43 has quit [Quit: WeeChat 2.1]
00:12
ellcs1 has joined #ruby
00:12
ellcs has quit [Ping timeout: 240 seconds]
00:13
quobo has quit [Quit: Connection closed for inactivity]
00:13
jenrzzz has quit [Ping timeout: 240 seconds]
00:15
kmurphy4 has joined #ruby
00:16
za1b1tsu has joined #ruby
00:16
<
Echo6 >
I'm on Debian
00:16
<
Echo6 >
apt-get install ruby
00:16
leslie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
00:16
<
Echo6 >
However, I just downloaded the source and completed compiling
00:17
<
Echo6 >
Just need to determine the next step.
00:17
crankharder has joined #ruby
00:18
<
havenwood >
Echo6: You removed the apt package and compiled Ruby 2.5.1 from source?
00:18
<
Echo6 >
Didn't remote the apt package yet.
00:18
<
Echo6 >
I have the compiled binaries in a folder just need to figure out where to put them.
00:19
<
Echo6 >
But good through, brb, going to remove the apt package
00:19
<
havenwood >
You mean the `ruby` and `gem` bins?
00:19
<
havenwood >
Just add the bin/ dir to your PATH.
00:19
<
Echo6 >
Removed the apt package.
00:19
fercell has quit [Quit: WeeChat 2.1]
00:20
fercell has joined #ruby
00:20
<
Echo6 >
Not sure how to add it to my path
00:21
<
havenwood >
export PATH="/path/to/ruby/bin:$PATH"
00:21
fercell has quit [Client Quit]
00:21
<
Echo6 >
nice, adding that to my saves.
00:21
za1b1tsu has quit [Ping timeout: 265 seconds]
00:22
arescorpio has joined #ruby
00:22
marr has quit [Ping timeout: 260 seconds]
00:22
<
Echo6 >
It worked, beautiful.
00:22
gnufied has quit [Ping timeout: 265 seconds]
00:23
cagomez has quit [Remote host closed the connection]
00:24
<
havenwood >
Echo6: You'll probably want to add the gem bin dir to your PATH as well: export PATH="$(gem env gemdir)/bin:$PATH"
00:25
<
havenwood >
Echo6: (So you installed gem executables are also in your PATH.)
00:25
<
havenwood >
Echo6: Then you should be able to: gem install rake && rake
00:25
<
Echo6 >
This is pretty painless
00:26
jenrzzz has joined #ruby
00:26
nitric has quit [Ping timeout: 248 seconds]
00:29
d_kam has joined #ruby
00:30
<
Vashy >
is it possible to tell if a linux command is installed/available from a ruby script?
00:30
duderonomy has quit [Ping timeout: 276 seconds]
00:30
<
Vashy >
e.g. I want to run: output = `lspci`
00:30
<
Vashy >
but how do I check if lspci is even available/installed ?
00:31
<
havenwood >
Vashy: system 'command', '-v', 'lspci'
00:32
<
havenwood >
Vashy: `true` if it exists, `false` if it doesn't
00:32
<
Vashy >
and if it returns nil?
00:32
<
Vashy >
which is what I'm getting
00:32
<
havenwood >
not a POSIX system?
00:32
<
Vashy >
[5] pry(main)> system 'command', '-v', 'lspci'
00:32
<
Vashy >
I'm on Ubuntu
00:33
<
Vashy >
lspci definitely outputs
00:33
ramfjord has joined #ruby
00:33
<
Vashy >
I'll look up the system docs
00:33
<
Vashy >
thanks havenwood !
00:34
<
havenwood >
Vashy: hrm, seems to be a dash issue with `command`
00:34
<
havenwood >
Vashy: lemme try on Ubuntu
00:35
<
havenwood >
Vashy: system 'which', 'lspci'
00:35
<
Vashy >
thanks again!
00:35
<
havenwood >
no prob!
00:35
GodFather has joined #ruby
00:37
alfiemax has joined #ruby
00:41
alfiemax has quit [Ping timeout: 264 seconds]
00:46
caleBOT_ has quit [Ping timeout: 256 seconds]
00:46
caleBOT has quit [Ping timeout: 256 seconds]
00:46
robertothais has quit [Ping timeout: 240 seconds]
00:47
SeepingN has quit [Quit: The system is going down for reboot NOW!]
00:47
amar has quit [Remote host closed the connection]
00:50
<
ruby[bot] >
Echo6: 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
00:50
<
Echo6 >
Is it possible the code is just junk?
00:51
<
Echo6 >
Just a sec, I have to repost the output
00:52
<
havenwood >
Echo6: It looks like you didn't have libreadline installed when you compiled Ruby so it didn't link. There's a readline gem, but I'd install the deps and rebuild Ruby.
00:53
<
havenwood >
Echo6: ruby-install would do the deps for you. you can install them manually if you'd prefer: sudo apt-get install -y build-essential bison zlib1g-dev libyaml-dev libssl-dev libgdbm-dev libreadline-dev libffi-dev
00:53
<
havenwood >
Echo6: Guessing you don't have libreadline-dev installed?
00:54
<
havenwood >
Echo6: If you do recompile Ruby, consider linking jemalloc while you're at it for a nice performance increase and less memory usage.
00:54
<
havenwood >
Just add a `--with-jemalloc` flag.
00:54
<
havenwood >
(After installing jemalloc.)
00:54
<
havenwood >
Echo6: That's still Ruby 2.0.
00:54
<
havenwood >
"/usr/local/lib/ruby/2.0.0"
00:55
<
Echo6 >
Yeah, trying to get something specific to run that said it didn't recommend above 2.0
00:55
<
Echo6 >
I'm getting close to giving up on the piece of junk though.
00:55
<
havenwood >
That's mighty old. What're you trying to get running?
00:55
<
Echo6 >
Loving ruby regardless
00:55
<
havenwood >
Echo6: I'd be quite suspicious of something requiring such an old Ruby.
00:55
<
Echo6 >
an integration between an asterisk system and trello
00:56
duderonomy has joined #ruby
00:57
regedit has quit [Quit: Connection closed for inactivity]
00:59
jottr has joined #ruby
01:00
<
Echo6 >
Yup, that's enough of that.
01:00
<
Echo6 >
I'm going to upgrade this puppy to the current version so I can play.
01:00
d_kam has quit [Ping timeout: 264 seconds]
01:01
<
Echo6 >
I am like ruby
01:01
d_kam has joined #ruby
01:02
<
Echo6 >
So what exactly is ruby on rails? I hear about it all the time but haven't looked into it. I spend most of my day in C# and PHP.
01:02
<
Vashy >
it's a pretty nice web framework
01:02
<
havenwood >
Echo6: Laravel and Cake are basically Rails clones, if you're familiar with them.
01:03
<
havenwood >
Echo6: It goes a bit beyond a normal framework in that it modifies the Ruby language somewhat, which Ruby allows for.
01:03
<
Echo6 >
Yup, was working in Laravel before I tumbled down this rabbit hole tonight.
01:03
jottr has quit [Ping timeout: 248 seconds]
01:03
<
Echo6 >
I would prefer to get the ins and outs of ruby down before I mess with frameworks though.
01:04
<
havenwood >
Echo6: Rails is one of many Rack frameworks in Ruby. Rack is the standardized webserver.
01:04
<
Echo6 >
Also good to know
01:04
white_lilies has joined #ruby
01:05
<
havenwood >
Hanami is also quite nice, and more along the lines of Rails.
01:06
<
Echo6 >
very Laravel-esq I see
01:06
<
Echo6 >
Very interesting
01:07
venmx_ has joined #ruby
01:09
kmurphy4 has quit [Quit: kmurphy4]
01:10
venmx has quit [Ping timeout: 256 seconds]
01:12
venmx_ has quit [Ping timeout: 264 seconds]
01:12
venmx has joined #ruby
01:14
xuanrui has joined #ruby
01:14
ryzokuken has quit [Remote host closed the connection]
01:16
<
Radar >
I love Hanami. I'm building a little Hanami + React app at the moment: github.com/radar/twist-v2
01:16
venmx has quit [Ping timeout: 240 seconds]
01:17
venmx has joined #ruby
01:18
jenrzzz has quit [Ping timeout: 276 seconds]
01:18
alfiemax has joined #ruby
01:21
BTRE has quit [Remote host closed the connection]
01:22
venmx_ has joined #ruby
01:23
alfiemax has quit [Ping timeout: 268 seconds]
01:23
venmx has quit [Ping timeout: 256 seconds]
01:25
BTRE has joined #ruby
01:26
venmx_ has quit [Ping timeout: 240 seconds]
01:27
venmx has joined #ruby
01:29
samort7 has quit []
01:32
dinfuehr has quit [Ping timeout: 260 seconds]
01:32
dinfuehr has joined #ruby
01:32
venmx_ has joined #ruby
01:33
karapetyan has joined #ruby
01:33
kmurphy4 has joined #ruby
01:34
venmx has quit [Ping timeout: 268 seconds]
01:36
n0m4d1c has quit [Read error: Connection reset by peer]
01:36
coderphive has joined #ruby
01:36
n0m4d1c has joined #ruby
01:37
karapetyan has quit [Ping timeout: 240 seconds]
01:41
venmx has joined #ruby
01:42
amar has joined #ruby
01:44
venmx_ has quit [Ping timeout: 240 seconds]
01:44
roamingdog has quit [Remote host closed the connection]
01:44
roamingdog has joined #ruby
01:45
mroutis has quit [Ping timeout: 256 seconds]
01:45
roamingdog has quit [Remote host closed the connection]
01:45
roamingdog has joined #ruby
01:46
roamingdog has quit [Remote host closed the connection]
01:46
roamingdog has joined #ruby
01:46
venmx_ has joined #ruby
01:46
roamingdog has quit [Remote host closed the connection]
01:47
roamingdog has joined #ruby
01:47
amar has quit [Ping timeout: 248 seconds]
01:47
roamingdog has quit [Remote host closed the connection]
01:48
roamingdog has joined #ruby
01:48
roamingdog has quit [Remote host closed the connection]
01:49
venmx has quit [Ping timeout: 248 seconds]
01:50
chocoelho has joined #ruby
01:51
venmx has joined #ruby
01:52
jameser has joined #ruby
01:52
sameerynho has quit [Ping timeout: 248 seconds]
01:53
venmx_ has quit [Ping timeout: 248 seconds]
01:56
venmx_ has joined #ruby
01:59
ramfjord has quit [Ping timeout: 256 seconds]
01:59
venmx has quit [Ping timeout: 256 seconds]
02:02
venmx has joined #ruby
02:02
venmx_ has quit [Ping timeout: 240 seconds]
02:04
za1b1tsu has joined #ruby
02:05
coderphive has quit [Quit: coderphive]
02:06
bmurt has joined #ruby
02:06
venmx has quit [Ping timeout: 264 seconds]
02:07
venmx_ has joined #ruby
02:08
bmurt has quit [Remote host closed the connection]
02:08
coderphive has joined #ruby
02:09
bmurt has joined #ruby
02:09
za1b1tsu has quit [Ping timeout: 256 seconds]
02:12
venmx has joined #ruby
02:13
alfiemax has joined #ruby
02:15
venmx_ has quit [Ping timeout: 260 seconds]
02:17
venmx_ has joined #ruby
02:17
alfiemax has quit [Ping timeout: 240 seconds]
02:18
venmx has quit [Ping timeout: 256 seconds]
02:20
chouhoulis has quit [Remote host closed the connection]
02:23
n0m4d1c has quit [Ping timeout: 260 seconds]
02:24
venmx_ has quit [Ping timeout: 265 seconds]
02:26
cyberg has quit [Quit: Leaving]
02:27
venmx has joined #ruby
02:27
jottr has joined #ruby
02:28
<
Janky >
any access gurus in here?
02:31
<
mozzarella >
access?
02:32
jottr has quit [Ping timeout: 248 seconds]
02:32
arescorpio has quit [Quit: Leaving.]
02:32
venmx_ has joined #ruby
02:33
<
Janky >
not sure where to ask questions on it, doesn't seem to be a chan for it here
02:33
<
Janky >
shot in the dark
02:33
venmx has quit [Ping timeout: 240 seconds]
02:34
<
mozzarella >
I've used it in the past, but I'm in no way a guru
02:35
coderphive has quit [Quit: coderphive]
02:35
<
Janky >
I just started a new job doing accounts receivable for a large company
02:35
<
Janky >
they literally list all of their invoices on a single spreadsheet
02:35
<
Janky >
it's about 50,000 lines
02:35
pilne has quit [Quit: Leaving]
02:35
<
Janky >
I was trying to figure out a way to use access to display this data
02:37
venmx has joined #ruby
02:40
venmx_ has quit [Ping timeout: 256 seconds]
02:42
venmx_ has joined #ruby
02:43
venmx has quit [Ping timeout: 260 seconds]
02:47
venmx_ has quit [Ping timeout: 255 seconds]
02:47
venmx has joined #ruby
02:52
knight33_ has joined #ruby
02:52
venmx_ has joined #ruby
02:54
orbyt_ has joined #ruby
02:54
venmx has quit [Ping timeout: 264 seconds]
02:57
<
garyserj >
i'm looking at Net::FTP in Ruby. I don't see a copy command to copy from a file from one location on the ftp server, to another. So to copy should I 'get' and then 'put', or is there a better way?
02:57
venmx has joined #ruby
02:58
venmx_ has quit [Ping timeout: 276 seconds]
02:58
<
garyserj >
does this chat have a log?
02:58
<
garyserj >
available online
03:00
cadillac_ has quit [Quit: I quit]
03:00
cadillac_ has joined #ruby
03:00
<
baweaver >
channel topic
03:01
<
baweaver >
Ideally you use Net::SSH or SFTP.
03:01
<
baweaver >
FTP is insecure.
03:01
<
havenwood >
or Stunnel
03:03
venmx_ has joined #ruby
03:06
venmx has quit [Ping timeout: 260 seconds]
03:06
alfiemax has joined #ruby
03:10
venmx has joined #ruby
03:13
venmx_ has quit [Ping timeout: 256 seconds]
03:15
venmx_ has joined #ruby
03:15
venmx has quit [Ping timeout: 260 seconds]
03:17
juiko has joined #ruby
03:21
dcunit3d has joined #ruby
03:22
karapetyan has joined #ruby
03:22
venmx_ has quit [Ping timeout: 256 seconds]
03:22
RougeR has quit [Ping timeout: 268 seconds]
03:25
venmx has joined #ruby
03:25
caleBOT has joined #ruby
03:25
caleBOT_ has joined #ruby
03:26
karapetyan has quit [Ping timeout: 256 seconds]
03:29
alfiemax has quit [Remote host closed the connection]
03:29
venmx has quit [Ping timeout: 264 seconds]
03:30
chocoelho has quit [Ping timeout: 240 seconds]
03:32
roamingdog has joined #ruby
03:32
darkhanb has joined #ruby
03:32
dcunit3d has quit [Ping timeout: 255 seconds]
03:33
amar has joined #ruby
03:34
amar has quit [Read error: Connection reset by peer]
03:34
_antares_ has joined #ruby
03:34
amar has joined #ruby
03:35
venmx has joined #ruby
03:36
meinside has quit [Quit: Connection closed for inactivity]
03:37
roamingdog has quit [Remote host closed the connection]
03:37
roamingdog has joined #ruby
03:37
c0ncealed1 has quit [Read error: Connection reset by peer]
03:37
roamingdog has quit [Remote host closed the connection]
03:38
roamingdog has joined #ruby
03:38
kmurphy4 has quit [Quit: kmurphy4]
03:38
roamingdog has quit [Remote host closed the connection]
03:38
c0ncealed1 has joined #ruby
03:38
roamingdog has joined #ruby
03:39
amar has quit [Ping timeout: 248 seconds]
03:39
roamingdog has quit [Remote host closed the connection]
03:39
roamingdog has joined #ruby
03:40
venmx has quit [Ping timeout: 256 seconds]
03:40
roamingdog has quit [Remote host closed the connection]
03:40
roamingdog has joined #ruby
03:40
venmx has joined #ruby
03:40
roamingdog has quit [Remote host closed the connection]
03:41
howdoi has joined #ruby
03:43
gix- has joined #ruby
03:43
gix has quit [Disconnected by services]
03:44
caleBOT_ has quit [Ping timeout: 256 seconds]
03:44
caleBOT has quit [Ping timeout: 256 seconds]
03:45
caleBOT has joined #ruby
03:45
caleBOT_ has joined #ruby
03:45
venmx_ has joined #ruby
03:46
memo1 has joined #ruby
03:46
tdy has quit [Ping timeout: 260 seconds]
03:46
_antares_ has quit [Remote host closed the connection]
03:46
venmx has quit [Ping timeout: 268 seconds]
03:47
_antares_ has joined #ruby
03:48
chris349 has joined #ruby
03:48
_antares_ has quit [Remote host closed the connection]
03:49
juiko has quit [Remote host closed the connection]
03:50
venmx_ has quit [Ping timeout: 256 seconds]
03:50
venmx has joined #ruby
03:52
za1b1tsu has joined #ruby
03:55
venmx_ has joined #ruby
03:56
venmx has quit [Ping timeout: 264 seconds]
03:56
_antares_ has joined #ruby
03:57
za1b1tsu has quit [Ping timeout: 255 seconds]
03:57
knight33_ has quit [Ping timeout: 268 seconds]
03:57
_antares_ has quit [Remote host closed the connection]
04:00
mroutis has joined #ruby
04:00
venmx has joined #ruby
04:01
<
Radar >
Janky: Probably a good idea to
_not_ use Access for that, if you can help it. I would extract the data from a spreadsheet into a relational database (which you could use the Sequel gem for)
04:01
venmx_ has quit [Ping timeout: 264 seconds]
04:04
_antares_ has joined #ruby
04:05
_antares_ has quit [Remote host closed the connection]
04:05
venmx_ has joined #ruby
04:06
venmx has quit [Ping timeout: 260 seconds]
04:06
cschnei__ has joined #ruby
04:06
cschneid_ has quit [Ping timeout: 255 seconds]
04:10
dcunit3d has joined #ruby
04:10
venmx_ has quit [Ping timeout: 276 seconds]
04:15
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
04:15
venmx has joined #ruby
04:17
_antares_ has joined #ruby
04:19
heftig has joined #ruby
04:20
mroutis has quit [Read error: Connection reset by peer]
04:20
mroutis_ has joined #ruby
04:20
venmx_ has joined #ruby
04:21
venmx has quit [Ping timeout: 240 seconds]
04:28
jottr has joined #ruby
04:28
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
04:28
venmx has joined #ruby
04:31
anisha has joined #ruby
04:31
venmx_ has quit [Ping timeout: 240 seconds]
04:33
jottr has quit [Ping timeout: 256 seconds]
04:34
aupadhye has joined #ruby
04:35
dcunit3d has quit [Ping timeout: 260 seconds]
04:36
drakan has joined #ruby
04:37
<
drakan >
ugghhhh im going to lose my mind, i can't figure out the right incantation to get erubis to let me append to an existing line with <% %>
04:38
fullstack_ has quit [Ping timeout: 255 seconds]
04:43
venmx_ has joined #ruby
04:43
kapil___ has quit [Quit: Connection closed for inactivity]
04:45
<
drakan >
ugh, i gave up and used <%= and a heredoc string instead
04:46
venmx has quit [Ping timeout: 264 seconds]
04:47
apeiros has quit [Ping timeout: 256 seconds]
04:48
<
ruby[bot] >
Radar: I don't know anything about rule0
04:48
<
Radar >
drakan: Some code example is always nice.
04:49
<
drakan >
sometext<%- if condition -%>append this text <% end %>
04:49
<
drakan >
is now: sometext <%= if condition <<<-eos ,blah,blah,blah \n eos %>
04:50
fullstack_ has joined #ruby
04:50
<
mozzarella >
that's not a proper code example
04:50
<
mozzarella >
don't be lazy
04:51
<
drakan >
seriously ?
04:51
<
drakan >
let me ship you a docker file
04:52
<
mozzarella >
use gist
04:53
<
Radar >
what mozzarella said.
04:53
venmx has joined #ruby
04:53
alfiemax has joined #ruby
04:55
white_lilies has quit [Ping timeout: 264 seconds]
04:56
venmx_ has quit [Ping timeout: 248 seconds]
04:57
tonini has joined #ruby
04:58
venmx_ has joined #ruby
05:00
mroutis_ has quit [Read error: Connection reset by peer]
05:00
venmx has quit [Ping timeout: 255 seconds]
05:01
apeiros has joined #ruby
05:01
reber has joined #ruby
05:03
venmx_ has quit [Ping timeout: 240 seconds]
05:04
venmx has joined #ruby
05:05
aufi has joined #ruby
05:05
za1b1tsu has joined #ruby
05:06
KeyJoo has joined #ruby
05:07
gnufied has joined #ruby
05:09
karapetyan has joined #ruby
05:10
<
dminuoso >
drakan: <%- -%> seems right
05:10
<
dminuoso >
drakan: Did you remember to set the trim_mode to "-"?
05:10
<
drakan >
vendor code controls the erubis instantiation ¯\_(ツ)_/¯
05:10
<
drakan >
chef ships an embedded ruby, too
05:11
<
dminuoso >
Ah yeah then the heredocs trick seems to be your only bet
05:11
<
dminuoso >
drakan: It might be nicer to not do this inline at all.
05:12
<
drakan >
it was a stroke of luck i remembered heredocs at all ... what do you mean, not doing it inline ?
05:12
<
dminuoso >
drakan: That is `<% if cond %>foo<% else %>foobar
05:12
<
dminuoso >
Both are kind of shitty ¯\_(ツ)_/¯
05:12
<
drakan >
i don't follow you
05:13
<
dminuoso >
drakan: Here's what I might do:
05:14
karapetyan has quit [Ping timeout: 276 seconds]
05:15
oleo has quit [Quit: Leaving]
05:16
<
dminuoso >
Conditional string interpolation is just freaking annoying to read.
05:17
<
mozzarella >
why not just put them on the same line?
05:18
<
dminuoso >
mozzarella: them what?
05:18
<
drakan >
yeah, my only counterpoint there is that i'm trying to restrict myself to additive changes. i like your version a lot better, but there's an element of leaving something that inspires the person who reads it to fix this properly, where "this" is the rest of the context of what i'm editing
05:19
<
dminuoso >
drakan: There's nothing wrong with refactoring things you encounter if it makes it more expressible/maintainable.
05:20
<
drakan >
for open source i would agree with you
05:20
<
dminuoso >
Throwing in <%= if ... <<-f .. %> has more "*sigh* what does this do" effect on the next reader.
05:20
<
drakan >
mozzarella: that inserts a newline ahead of the comma, pretty sure
05:21
<
drakan >
that's what i was struggling with last 30-45 minutes
05:21
<
mozzarella >
try it?
05:21
<
drakan >
i don't think that's better than what dminuoso proposed
05:24
venmx has quit [Remote host closed the connection]
05:25
crankharder has quit [Ping timeout: 276 seconds]
05:25
tdy has joined #ruby
05:28
<
drakan >
thanks for the help
05:28
<
drakan >
i did go ahead with the non-passive aggressive approach, cooler heads prevail...
05:33
sauvin has joined #ruby
05:35
memo1 has quit [Ping timeout: 256 seconds]
05:36
cadillac_ has quit [Ping timeout: 240 seconds]
05:38
cadillac_ has joined #ruby
05:43
galeido has joined #ruby
05:49
ur5us has quit [Remote host closed the connection]
05:49
ur5us has joined #ruby
05:51
_antares_ has quit [Remote host closed the connection]
05:54
mtkd has joined #ruby
05:54
ur5us has quit [Ping timeout: 265 seconds]
05:59
tvw has joined #ruby
06:02
_antares_ has joined #ruby
06:05
<
dminuoso >
mozzarella: Ah I misread the whole thing.
06:07
_antares_ has quit [Ping timeout: 276 seconds]
06:16
sidx64 has joined #ruby
06:18
nowhere_man has quit [Ping timeout: 260 seconds]
06:24
conta has joined #ruby
06:25
DoubleMalt has joined #ruby
06:25
DoubleMalt has quit [Remote host closed the connection]
06:26
gnufied has quit [Ping timeout: 256 seconds]
06:26
dionysus69 has joined #ruby
06:29
jottr has joined #ruby
06:29
sidx64 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
06:31
Burgestrand has joined #ruby
06:33
sidx64 has joined #ruby
06:34
jottr has quit [Ping timeout: 265 seconds]
06:37
Burgestrand has quit [Quit: Closing time!]
06:39
sidx64_ has joined #ruby
06:39
schneider has joined #ruby
06:40
sidx64 has quit [Read error: Connection reset by peer]
06:41
<
schneider >
I see this kind of example inside bin/* files
06:41
<
schneider >
load Gem.bin_path('bundler', 'bundle')
06:41
<
schneider >
and I'm confused about bin_path method
06:42
jrich523 has quit [Remote host closed the connection]
06:42
<
schneider >
it loads the global version of bundler?
06:42
<
schneider >
or it loads the version from Gemfile.lock file?
06:42
<
cjohnson >
Presumably the latter
06:42
sidx64 has joined #ruby
06:43
<
cjohnson >
Given that it's GEM.bin_path, it seems to me it would be looking at the gems installed and finding the bin_path of hte gem name in question
06:44
<
schneider >
I tried this one with my private gem, created a binary file with only "load Gem.bin_path('mygem', 'mygem')" inside
06:44
<
schneider >
when I run bin/mygem all working as expected
06:44
<
schneider >
but if I want to change the version inside Gemfile then run bundle update, version is updated inside Gemfile.lock
06:44
sidx64_ has quit [Ping timeout: 256 seconds]
06:44
<
schneider >
then running bin/mygem will use old version still
06:46
<
cjohnson >
seems as though you can specify specific gem versions in requirements
06:46
<
cjohnson >
Though it seems odd to me that it wouldn't pick the one from Gemfile.lock
06:46
<
schneider >
I added a few "puts" to all versions of my gems inside ~/.rvm/gems/ruby-2.5.0/gems/mygem-*/lib/mygem.rb that outputs the version
06:46
<
schneider >
this way I'm debuging and still I'm using the old one
06:50
schleppel has joined #ruby
06:51
minimalism has quit [Quit: minimalism]
06:53
Mortomes|Work has joined #ruby
06:55
Zaab1t has joined #ruby
06:55
Burgestrand has joined #ruby
06:57
Zaab1t has quit [Client Quit]
07:01
<
mozzarella >
dminuoso: misread how?
07:02
DeepIO has joined #ruby
07:06
DeepIO has quit [Quit: quit]
07:06
amar has joined #ruby
07:08
sidx64 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
07:10
amar has quit [Ping timeout: 256 seconds]
07:11
biberu has joined #ruby
07:11
sidx64 has joined #ruby
07:15
TomyWork has joined #ruby
07:16
d_kam has quit [Quit: Be back later ...]
07:17
d_kam has joined #ruby
07:17
sidx64 has quit [Ping timeout: 260 seconds]
07:19
sysvalve has joined #ruby
07:20
sidx64 has joined #ruby
07:21
Zaab1t has joined #ruby
07:22
claudiuinberlin has joined #ruby
07:23
amelliaa has joined #ruby
07:24
sidx64 has quit [Client Quit]
07:25
d_kam has quit [Ping timeout: 260 seconds]
07:25
sidx64 has joined #ruby
07:27
amar has joined #ruby
07:31
_antares_ has joined #ruby
07:32
amar has quit [Ping timeout: 256 seconds]
07:32
sidx64 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
07:34
apeiros has quit [Remote host closed the connection]
07:35
_antares_ has quit [Ping timeout: 240 seconds]
07:35
sidx64 has joined #ruby
07:35
suukim has joined #ruby
07:38
kapil___ has joined #ruby
07:40
nowhere_man has joined #ruby
07:41
aloy has quit [Remote host closed the connection]
07:42
aloy has joined #ruby
07:43
mlkkk has joined #ruby
07:45
plexigras has joined #ruby
07:49
roshanavand has joined #ruby
07:50
yohji has joined #ruby
07:52
alfiemax has quit [Remote host closed the connection]
07:53
alfiemax has joined #ruby
07:54
mikecmpbll has joined #ruby
07:56
roamingdog has joined #ruby
07:57
mtkd has quit [Ping timeout: 268 seconds]
07:57
alfiemax has quit [Ping timeout: 255 seconds]
07:57
marr has joined #ruby
07:59
crankharder has joined #ruby
07:59
mtkd has joined #ruby
08:01
roamingdog has quit [Ping timeout: 265 seconds]
08:01
amelliaa has quit [Quit: -]
08:02
VladGh_ has joined #ruby
08:02
ur5us has joined #ruby
08:04
VladGh has quit [Ping timeout: 240 seconds]
08:04
alex`` has joined #ruby
08:10
robertothais has joined #ruby
08:12
roshanavand has quit [Ping timeout: 256 seconds]
08:13
roshanavand has joined #ruby
08:14
roshanavand1 has joined #ruby
08:14
roshanavand1 has quit [Client Quit]
08:15
roshanavand1 has joined #ruby
08:15
robertothais has quit [Ping timeout: 255 seconds]
08:17
_antares_ has joined #ruby
08:17
roshanavand has quit [Ping timeout: 255 seconds]
08:18
_antares_ has quit [Remote host closed the connection]
08:19
drale2k_ has joined #ruby
08:20
d_kam has joined #ruby
08:21
sidx64 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
08:24
d_kam has quit [Ping timeout: 255 seconds]
08:27
alex`` has quit [Ping timeout: 268 seconds]
08:28
sidx64 has joined #ruby
08:29
_antares_ has joined #ruby
08:29
sidx64 has quit [Client Quit]
08:29
karapetyan has joined #ruby
08:29
_antares_ has quit [Remote host closed the connection]
08:30
jottr has joined #ruby
08:30
crankharder has quit [Ping timeout: 265 seconds]
08:30
_antares_ has joined #ruby
08:31
sidx64 has joined #ruby
08:31
sidx64 has quit [Client Quit]
08:31
amar has joined #ruby
08:33
_antares_ has quit [Remote host closed the connection]
08:34
guille-moe has joined #ruby
08:34
jottr has quit [Ping timeout: 268 seconds]
08:36
amar has quit [Ping timeout: 260 seconds]
08:39
aupadhye has quit [Ping timeout: 256 seconds]
08:40
alex`` has joined #ruby
08:41
ix has joined #ruby
08:41
d^sh has quit [Ping timeout: 276 seconds]
08:42
d^sh has joined #ruby
08:43
crankharder has joined #ruby
08:43
sidx64 has joined #ruby
08:44
alex`` has quit [Client Quit]
08:47
guille-moe has quit [Remote host closed the connection]
08:47
amar has joined #ruby
08:49
amatas has joined #ruby
08:51
guille-moe has joined #ruby
08:52
karapetyan has quit [Remote host closed the connection]
08:54
KeyJoo has quit [Ping timeout: 240 seconds]
08:55
amatas has quit [Quit: amatas]
08:55
aupadhye has joined #ruby
08:56
amatas has joined #ruby
08:56
amatas has quit [Remote host closed the connection]
08:57
amatas has joined #ruby
09:05
karapetyan has joined #ruby
09:06
amar has quit [Remote host closed the connection]
09:09
d_kam has joined #ruby
09:09
amar has joined #ruby
09:11
conta has quit [Quit: conta]
09:11
conta has joined #ruby
09:18
sidx64 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
09:19
vondruch has joined #ruby
09:22
aupadhye has quit [Ping timeout: 268 seconds]
09:23
sidx64 has joined #ruby
09:25
sidx64 has quit [Client Quit]
09:28
amar has quit [Remote host closed the connection]
09:30
amar has joined #ruby
09:30
sidx64 has joined #ruby
09:30
amar has quit [Remote host closed the connection]
09:30
amar has joined #ruby
09:30
clemens3 has joined #ruby
09:31
venmx has joined #ruby
09:32
sphenxes has joined #ruby
09:32
KeyJoo has joined #ruby
09:34
aupadhye has joined #ruby
09:35
aupadhye_ has joined #ruby
09:35
aupadhye has quit [Client Quit]
09:35
aupadhye_ is now known as aupadhye
09:35
chris349 has quit [Ping timeout: 240 seconds]
09:36
reber has quit [Remote host closed the connection]
09:38
vondruch has quit [Ping timeout: 240 seconds]
09:40
z4phod has joined #ruby
09:40
sidx64 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
09:42
nowhere_man has quit [Remote host closed the connection]
09:42
nowhere_man has joined #ruby
09:43
jameser has quit [Ping timeout: 260 seconds]
09:45
InfinityFye has joined #ruby
09:46
InfinityFye has left #ruby [#ruby]
09:47
karapetyan has quit [Remote host closed the connection]
09:48
jamesaxl has joined #ruby
09:48
clemens3 has quit [Ping timeout: 240 seconds]
09:49
ur5us has quit [Remote host closed the connection]
09:50
ur5us has joined #ruby
09:50
sidx64 has joined #ruby
09:50
alfiemax has joined #ruby
09:52
_antares_ has joined #ruby
09:52
ur5us has quit [Read error: No route to host]
09:53
roamingdog has joined #ruby
09:54
nowhere_man has quit [Ping timeout: 256 seconds]
09:56
ur5us has joined #ruby
09:57
_antares_ has quit [Ping timeout: 255 seconds]
09:58
roamingdog has quit [Ping timeout: 265 seconds]
09:58
ur5us has quit [Read error: No route to host]
09:58
ur5us has joined #ruby
09:58
ur5us has quit [Read error: Connection reset by peer]
09:59
ur5us has joined #ruby
10:00
clemens3 has joined #ruby
10:00
Puffball has joined #ruby
10:02
sidx64 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
10:03
mtkd has quit [Ping timeout: 240 seconds]
10:04
amar has quit [Remote host closed the connection]
10:04
mtkd has joined #ruby
10:04
blackmesa has joined #ruby
10:05
amar has joined #ruby
10:06
reber has joined #ruby
10:08
jottr has joined #ruby
10:09
sidx64 has joined #ruby
10:10
alfiemax has quit [Remote host closed the connection]
10:12
_antares_ has joined #ruby
10:13
AJA4350 has joined #ruby
10:15
nima_m has joined #ruby
10:16
alfiemax has joined #ruby
10:17
_antares_ has quit [Ping timeout: 276 seconds]
10:18
dionysus69 has quit [Ping timeout: 265 seconds]
10:20
Burgestrand has quit [Quit: Closing time!]
10:21
dionysus69 has joined #ruby
10:22
jottr has quit [Ping timeout: 256 seconds]
10:26
Flonk has quit [Ping timeout: 268 seconds]
10:29
ciscam has quit [Ping timeout: 256 seconds]
10:29
ciscam has joined #ruby
10:32
postmodern has quit [Quit: Leaving]
10:33
roshanavand1 has quit [Ping timeout: 260 seconds]
10:36
roshanavand has joined #ruby
10:42
roamingdog has joined #ruby
10:45
amar has quit [Ping timeout: 256 seconds]
10:47
karapetyan has joined #ruby
10:48
Asher has quit [Ping timeout: 276 seconds]
10:48
Flonk has joined #ruby
10:51
amelliaa has joined #ruby
10:52
karapetyan has quit [Ping timeout: 256 seconds]
10:54
dionysus69 has quit [Quit: dionysus69]
10:57
adlerdias has joined #ruby
10:57
dionysus69 has joined #ruby
10:58
venmx has quit [Ping timeout: 260 seconds]
10:59
blackmesa has quit [Ping timeout: 255 seconds]
11:01
drale2k_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
11:02
sidx64 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
11:03
drale2k_ has joined #ruby
11:03
drale2k_ has quit [Client Quit]
11:04
apparition47 has joined #ruby
11:04
sidx64 has joined #ruby
11:07
Flonk has quit [Ping timeout: 256 seconds]
11:08
Flonk has joined #ruby
11:09
ur5us has quit [Remote host closed the connection]
11:11
alfiemax has quit [Remote host closed the connection]
11:12
roshanavand has quit [Ping timeout: 264 seconds]
11:14
alfiemax has joined #ruby
11:18
alfiemax has quit [Ping timeout: 248 seconds]
11:23
rabajaj has quit [Ping timeout: 264 seconds]
11:27
suukim has quit [Quit: Konversation terminated!]
11:30
houhoulis has joined #ruby
11:32
venmx has joined #ruby
11:33
drale2k_ has joined #ruby
11:35
drale2k_ has quit [Client Quit]
11:37
meinside has joined #ruby
11:39
nowhere_man has joined #ruby
11:41
coderphive has joined #ruby
11:41
ldnunes has joined #ruby
11:41
ciscam has quit [Ping timeout: 264 seconds]
11:42
_antares_ has joined #ruby
11:42
ciscam has joined #ruby
11:44
<
dminuoso >
What's the least annoying way to transform strings of the shape "foo 1, 2, 3" into ["1", "2", "3"]
11:44
<
dminuoso >
I cant come up with a non-confusing one liner..
11:45
roamingdog has quit [Remote host closed the connection]
11:45
ohcibi has quit [Quit: No Ping reply in 180 seconds.]
11:45
roamingdog has joined #ruby
11:45
<
dminuoso >
>> "foo 1, 2, 34".scan(/\d+/)
11:45
roamingdog has quit [Remote host closed the connection]
11:45
<
dminuoso >
Silly me.
11:46
roamingdog has joined #ruby
11:46
ohcibi has joined #ruby
11:46
roamingdog has quit [Remote host closed the connection]
11:46
roamingdog has joined #ruby
11:47
_antares_ has quit [Ping timeout: 276 seconds]
11:47
roamingdog has quit [Remote host closed the connection]
11:47
roamingdog has joined #ruby
11:47
nowhere_man has quit [Ping timeout: 255 seconds]
11:48
roamingdog has quit [Remote host closed the connection]
11:54
drale2k_ has joined #ruby
11:56
coderphive has quit [Quit: coderphive]
12:00
karapetyan has joined #ruby
12:02
_antares_ has joined #ruby
12:04
za1b1tsu has quit [Ping timeout: 256 seconds]
12:04
karapetyan has quit [Ping timeout: 240 seconds]
12:05
Burgestrand has joined #ruby
12:06
_antares_ has quit [Ping timeout: 240 seconds]
12:06
za1b1tsu has joined #ruby
12:08
mtkd has quit [Ping timeout: 255 seconds]
12:08
mtkd has joined #ruby
12:15
tonini has quit [Quit: Connection closed for inactivity]
12:15
venmx has quit [Ping timeout: 276 seconds]
12:17
Cavallari has joined #ruby
12:17
Cavallari1 has joined #ruby
12:18
Doow has quit [Quit: Leaving]
12:19
drale2k_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
12:21
Cavallari has quit [Ping timeout: 256 seconds]
12:21
Cavallari1 is now known as Cavallari
12:22
_antares_ has joined #ruby
12:22
sidx64 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
12:23
_antares_ has quit [Remote host closed the connection]
12:23
_antares_ has joined #ruby
12:25
nima_m has quit [Quit: Connection closed for inactivity]
12:26
sidx64 has joined #ruby
12:32
alfiemax has joined #ruby
12:35
schleppel has quit [Ping timeout: 240 seconds]
12:35
sidx64 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
12:37
alfiemax has quit [Ping timeout: 276 seconds]
12:39
nayena has joined #ruby
12:39
nowhere_man has joined #ruby
12:39
sidx64 has joined #ruby
12:42
_antares_ has quit [Remote host closed the connection]
12:42
Mortomes|Work has quit [Ping timeout: 260 seconds]
12:43
Cavallari1 has joined #ruby
12:45
Cavallari has quit [Ping timeout: 260 seconds]
12:45
Cavallari1 is now known as Cavallari
12:47
drale2k_ has joined #ruby
12:49
Nussi has quit [Quit: WeeChat 2.1]
12:49
suukim has joined #ruby
12:49
mensvaga has quit [Quit: Leaving.]
12:51
schleppel has joined #ruby
12:52
_antares_ has joined #ruby
12:54
alfiemax has joined #ruby
12:56
sidx64 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
12:57
_antares_ has quit [Ping timeout: 265 seconds]
12:57
houhoulis has quit [Remote host closed the connection]
12:58
yohji has quit [Remote host closed the connection]
12:58
alfiemax has quit [Ping timeout: 240 seconds]
12:59
chocoelho has joined #ruby
13:00
sidx64 has joined #ruby
13:01
Asher has joined #ruby
13:03
ciscam has quit [Ping timeout: 256 seconds]
13:04
ciscam has joined #ruby
13:05
amar has joined #ruby
13:05
drale2k_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
13:07
suukim has quit [Remote host closed the connection]
13:08
Mike11 has joined #ruby
13:08
suukim has joined #ruby
13:08
Nussi has joined #ruby
13:09
conta has quit [Read error: Connection reset by peer]
13:09
ciscam has quit [Ping timeout: 260 seconds]
13:09
conta1 has joined #ruby
13:10
amar has quit [Ping timeout: 260 seconds]
13:10
nowhere_man has quit [Ping timeout: 240 seconds]
13:11
conta1 is now known as conta
13:12
_antares_ has joined #ruby
13:12
ciscam has joined #ruby
13:13
biberu has quit [Ping timeout: 240 seconds]
13:14
alfiemax has joined #ruby
13:17
_antares_ has quit [Ping timeout: 276 seconds]
13:17
gnufied has joined #ruby
13:19
alfiemax has quit [Ping timeout: 276 seconds]
13:20
Burgestrand has quit [Quit: Closing time!]
13:23
dcunit3d has joined #ruby
13:23
howdoi has quit [Quit: Connection closed for inactivity]
13:24
mohsen_1 has joined #ruby
13:27
n0m4d1c has joined #ruby
13:28
dcunit3d has quit [Ping timeout: 256 seconds]
13:30
mikecmpbll has quit [Ping timeout: 240 seconds]
13:31
GodFather__ has joined #ruby
13:32
GodFather__ has quit [Remote host closed the connection]
13:32
k0mpa has joined #ruby
13:33
drale2k_ has joined #ruby
13:33
Burgestrand has joined #ruby
13:37
dionysus69 has quit [Remote host closed the connection]
13:38
kapil___ has quit [Quit: Connection closed for inactivity]
13:39
drale2k_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
13:39
aupadhye has quit [Ping timeout: 260 seconds]
13:40
linduxed has quit [Ping timeout: 240 seconds]
13:42
mikecmpbll has joined #ruby
13:45
yohji has joined #ruby
13:45
nowhere_man has joined #ruby
13:48
karapetyan has joined #ruby
13:48
shinnya has joined #ruby
13:50
oleo has joined #ruby
13:51
memo1 has joined #ruby
13:51
conta has quit [Quit: conta]
13:52
conta has joined #ruby
13:53
karapetyan has quit [Ping timeout: 255 seconds]
13:53
Emmanuel_Chanel has quit [Read error: Connection reset by peer]
13:56
Emmanuel_Chanel has joined #ruby
13:56
Emmanuel_Chanel has quit [Max SendQ exceeded]
13:56
linduxed has joined #ruby
13:57
Emmanuel_Chanel has joined #ruby
13:58
adlerdias has quit [Quit: adlerdias]
13:59
memo1 has quit [Ping timeout: 256 seconds]
14:01
cyberg has joined #ruby
14:02
mikecmpb_ has joined #ruby
14:02
fisher has joined #ruby
14:02
mikecmpbll has quit [Ping timeout: 268 seconds]
14:02
Rapture has joined #ruby
14:04
dcunit3d has joined #ruby
14:05
blackmesa has joined #ruby
14:06
kmurphy4_ has joined #ruby
14:08
cschnei__ has quit [Remote host closed the connection]
14:08
drale2k_ has joined #ruby
14:09
amar has joined #ruby
14:09
amar has quit [Remote host closed the connection]
14:10
Burgestrand has quit [Quit: Closing time!]
14:10
kmurphy4_ has quit [Ping timeout: 256 seconds]
14:12
mtkd has quit [Ping timeout: 260 seconds]
14:13
memo1 has joined #ruby
14:13
mtkd has joined #ruby
14:14
kmurphy4 has joined #ruby
14:14
sagax has quit [Ping timeout: 248 seconds]
14:17
Burgestrand has joined #ruby
14:18
coderphive has joined #ruby
14:20
kapil___ has joined #ruby
14:23
sagax has joined #ruby
14:24
drale2k_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
14:32
memo1 has quit [Ping timeout: 268 seconds]
14:32
venmx has joined #ruby
14:32
dcunit3d has quit [Ping timeout: 256 seconds]
14:33
alfiemax has joined #ruby
14:35
sammi`_ has quit [Quit: Lost terminal]
14:37
alfiemax has quit [Ping timeout: 240 seconds]
14:38
samort7 has joined #ruby
14:39
sammi` has joined #ruby
14:40
gix- has quit [Ping timeout: 256 seconds]
14:41
grilix has joined #ruby
14:41
n0m4d1c has quit [Remote host closed the connection]
14:41
_antares_ has joined #ruby
14:42
karapetyan has joined #ruby
14:42
alfiemax has joined #ruby
14:42
mroutis has joined #ruby
14:44
chouhoulis has joined #ruby
14:44
chouhoulis has quit [Remote host closed the connection]
14:45
chouhoulis has joined #ruby
14:45
venmx has quit [Ping timeout: 276 seconds]
14:45
mtkd has joined #ruby
14:46
_antares_ has quit [Ping timeout: 255 seconds]
14:46
drale2k_ has joined #ruby
14:47
chocoelho has quit [Ping timeout: 260 seconds]
14:47
alfiemax has quit [Ping timeout: 264 seconds]
14:47
mroutis has quit [Ping timeout: 248 seconds]
14:47
fisher has quit [Ping timeout: 260 seconds]
14:47
CrazyEddy has quit [Remote host closed the connection]
14:47
alfiemax has joined #ruby
14:49
_antares_ has joined #ruby
14:49
_antares_ has quit [Remote host closed the connection]
14:51
gix has joined #ruby
14:56
apparition47 has quit [Quit: Bye]
14:56
gigetoo has quit [Ping timeout: 240 seconds]
14:57
ix has quit [Ping timeout: 240 seconds]
14:57
gigetoo has joined #ruby
14:57
sidx64 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
14:57
rippa has joined #ruby
14:58
apeiros has joined #ruby
15:00
_antares_ has joined #ruby
15:00
dcunit3d has joined #ruby
15:00
iceden has joined #ruby
15:01
schneider has quit [Ping timeout: 240 seconds]
15:02
sidx64 has joined #ruby
15:02
venmx has joined #ruby
15:02
regedit has joined #ruby
15:03
cschneid_ has joined #ruby
15:04
ccrow has joined #ruby
15:04
Cavallari has quit [Quit: Cavallari]
15:04
schneider has joined #ruby
15:04
_antares_ has quit [Ping timeout: 265 seconds]
15:05
govg has quit [Ping timeout: 264 seconds]
15:05
cadillac_ has quit [Ping timeout: 260 seconds]
15:06
cadillac_ has joined #ruby
15:07
GodFather has quit [Ping timeout: 240 seconds]
15:09
chocoelho has joined #ruby
15:11
Burgestrand has quit [Quit: Closing time!]
15:12
conta has quit [Ping timeout: 240 seconds]
15:13
shinnya has quit [Ping timeout: 255 seconds]
15:14
venmx has quit [Ping timeout: 240 seconds]
15:14
dc1 has joined #ruby
15:15
dcunit3d has quit [Ping timeout: 265 seconds]
15:15
cagomez has joined #ruby
15:15
cagomez has quit [Read error: Connection reset by peer]
15:15
schneider has quit [Ping timeout: 268 seconds]
15:15
cagomez has joined #ruby
15:15
memo1 has joined #ruby
15:15
vondruch has joined #ruby
15:16
orbyt_ has joined #ruby
15:18
guille-moe has quit [Remote host closed the connection]
15:18
grilix has quit [Ping timeout: 256 seconds]
15:19
caleBOT has quit [Remote host closed the connection]
15:19
caleBOT_ has quit [Remote host closed the connection]
15:20
GodFather has joined #ruby
15:20
_antares_ has joined #ruby
15:22
grilix has joined #ruby
15:22
vondruch has quit [Quit: vondruch]
15:22
guille-moe has joined #ruby
15:23
jokke1 has quit [Ping timeout: 240 seconds]
15:24
_antares_ has quit [Remote host closed the connection]
15:24
_antares_ has joined #ruby
15:24
caleBOT has joined #ruby
15:25
caleBOT_ has joined #ruby
15:27
aufi has quit [Ping timeout: 268 seconds]
15:28
mroutis has joined #ruby
15:28
jokke1 has joined #ruby
15:28
_antares_ has quit [Remote host closed the connection]
15:28
amar has joined #ruby
15:30
gnufied has quit [Ping timeout: 256 seconds]
15:31
Dbugger has joined #ruby
15:32
venmx has joined #ruby
15:36
Asher has quit [Ping timeout: 260 seconds]
15:37
jcarl43 has joined #ruby
15:37
ccrow has quit [Remote host closed the connection]
15:42
venmx has quit [Ping timeout: 256 seconds]
15:42
schneider has joined #ruby
15:43
venmx has joined #ruby
15:47
guille-moe has quit [Remote host closed the connection]
15:47
darkhanb has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
15:47
guille-moe has joined #ruby
15:47
vondruch has joined #ruby
15:49
roamingdog has joined #ruby
15:49
rabajaj has joined #ruby
15:50
venmx has quit [Ping timeout: 255 seconds]
15:50
AkyRhO_ has joined #ruby
15:51
venmx_ has joined #ruby
15:53
roamingdog has quit [Ping timeout: 256 seconds]
15:54
sidx64 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
15:55
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
15:55
alex`` has joined #ruby
15:56
weird_error has quit [Quit: weird_error]
15:56
rabajaj has quit [Remote host closed the connection]
15:56
rahul_bajaj has joined #ruby
16:00
sysvalve has quit [Quit: Leaving]
16:03
amar has quit [Remote host closed the connection]
16:04
chocoelho has quit [Quit: Konversation terminated!]
16:06
AkyRhO_ has quit [Ping timeout: 248 seconds]
16:08
safetypin has joined #ruby
16:11
jrich523 has joined #ruby
16:11
bga57 has quit [Ping timeout: 256 seconds]
16:12
<
jrich523 >
hey guys, trying to get my rake tests working (thor cli-template project) and it looks like the way the project is setup, its invoking the tests is like so out = `#{cmd}`
16:12
<
jrich523 >
and a cmd looks like
16:12
banisterfiend has joined #ruby
16:13
<
jrich523 >
"exe/SSTKCLI hello world #{@args}"
16:13
<
jrich523 >
this will not fly on windows
16:13
schneider has quit [Ping timeout: 248 seconds]
16:13
<
jrich523 >
i think i'd have to ram bundle exec ruby blah blah
16:13
<
jrich523 >
fairly new to this, so just wanted to make sure i wasnt about to do anything crazy
16:14
darkhanb has joined #ruby
16:15
bga57 has joined #ruby
16:17
guille-moe has quit [Quit: guille-moe]
16:17
guille-moe has joined #ruby
16:18
guille-moe has quit [Client Quit]
16:18
guille-moe has joined #ruby
16:21
TinkerT has joined #ruby
16:22
CrazyEddy has joined #ruby
16:24
yohji has quit [Remote host closed the connection]
16:25
banisterfiend has quit [Ping timeout: 268 seconds]
16:27
schneider has joined #ruby
16:29
CrazyEddy has quit [Ping timeout: 268 seconds]
16:30
chris349 has joined #ruby
16:30
dc1 has quit [Ping timeout: 260 seconds]
16:32
raynold has joined #ruby
16:33
qnaal has joined #ruby
16:33
gnufied has joined #ruby
16:34
schneider has quit [Ping timeout: 240 seconds]
16:36
RougeR has joined #ruby
16:36
RougeR has joined #ruby
16:36
RougeR has quit [Changing host]
16:37
qnaal has quit [Client Quit]
16:37
n0m4d1c has joined #ruby
16:38
kapil___ has quit [Quit: Connection closed for inactivity]
16:39
KeyJoo has quit [Ping timeout: 240 seconds]
16:40
venmx_ has quit [Remote host closed the connection]
16:41
Mike11 has quit [Quit: Leaving.]
16:43
nitric has joined #ruby
16:45
qnaal has joined #ruby
16:46
jrabe is now known as jrabe`
16:46
orbyt_ has joined #ruby
16:47
mlkkk has quit [Remote host closed the connection]
16:48
mtkd has quit [Ping timeout: 256 seconds]
16:49
za1b1tsu has quit [Ping timeout: 240 seconds]
16:50
Rapture has joined #ruby
16:50
mtkd has joined #ruby
16:50
sanscoeur has joined #ruby
16:52
nitric has quit [Read error: Connection reset by peer]
16:52
nitric_ has joined #ruby
16:52
ellcs1 has quit [Ping timeout: 256 seconds]
16:54
mtkd has quit [Client Quit]
16:55
tdy has quit [Quit: WeeChat 1.9.1]
16:56
gnufied has quit [Ping timeout: 255 seconds]
16:57
mtkd has joined #ruby
16:58
stairmast0r has quit [Quit: bye]
16:59
stairmast0r has joined #ruby
16:59
memo1 has quit [Quit: WeeChat 1.4]
17:00
memo1 has joined #ruby
17:00
alfiemax has quit [Remote host closed the connection]
17:00
pilne has joined #ruby
17:06
dc1 has joined #ruby
17:08
fisher has joined #ruby
17:10
fisher has quit [Client Quit]
17:11
guille-moe has quit [Ping timeout: 240 seconds]
17:11
dc1 has quit [Ping timeout: 256 seconds]
17:14
mtkd has joined #ruby
17:14
tdy has joined #ruby
17:16
ellcs has joined #ruby
17:16
anisha has quit [Quit: This computer has gone to sleep]
17:16
aupadhye has joined #ruby
17:17
gnufied has joined #ruby
17:19
cyberg has quit [Ping timeout: 248 seconds]
17:20
aupadhye has quit [Client Quit]
17:21
jrabe` has left #ruby [#ruby]
17:22
jenrzzz has joined #ruby
17:22
jenrzzz has joined #ruby
17:22
jenrzzz has quit [Changing host]
17:23
mikecmpb_ has quit [Quit: inabit. zz.]
17:24
ccrow has joined #ruby
17:24
cyberg has joined #ruby
17:26
za1b1tsu has joined #ruby
17:26
chocoelho has joined #ruby
17:26
AgentVenom has joined #ruby
17:29
amar has joined #ruby
17:30
grilix_ has joined #ruby
17:31
drale2k_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
17:33
grilix has quit [Ping timeout: 264 seconds]
17:34
amar has quit [Ping timeout: 276 seconds]
17:34
<
kenichi >
havenwood: nice post on `exception: false` methods
17:35
caleBOT_ has quit [Remote host closed the connection]
17:35
caleBOT has quit [Remote host closed the connection]
17:35
<
havenwood >
kenichi: thanks!
17:36
<
kenichi >
i've used the exception-less IO methods, nice to see it spreading
17:37
za1b1tsu has quit [Ping timeout: 255 seconds]
17:37
amar has joined #ruby
17:39
heftig has quit [Quit: heftig]
17:40
jrabe has joined #ruby
17:42
amar has quit [Ping timeout: 276 seconds]
17:45
heftig has joined #ruby
17:47
mikecmpbll has joined #ruby
17:49
\void has joined #ruby
17:51
<
jrich523 >
can someone explain some scoping stuff to me... im working off a thor cli-template, and i get an error about an uninit constant, which, to me makes sense, but im not sure how to fix it..
17:51
<
jrich523 >
thats whats triggering the error (its the template code, since im still in the process of testing and dont have it posted)
17:52
<
jrich523 >
there is a completer.rb file that has the class/method in it... but... it seems like the way they are calling it, it would need to be local to the CLI class
17:54
<
jrich523 >
they use that to join all the classes, but, i dont get the impression that it would then give it access to those class methods (Autoload A and B, B wont have access to A regardless of the load order?)
17:54
suukim has quit [Quit: Konversation terminated!]
17:56
memo1 has quit [Ping timeout: 255 seconds]
17:58
sameerynho has joined #ruby
17:58
za1b1tsu has joined #ruby
18:02
gnufied has quit [Ping timeout: 260 seconds]
18:06
Cavallari has joined #ruby
18:07
n0m4d1c has quit [Remote host closed the connection]
18:08
blackmesa has quit [Ping timeout: 265 seconds]
18:09
mtkd has joined #ruby
18:09
\void has quit [Quit: So long, and thanks for all the fish.]
18:09
ramfjord has joined #ruby
18:12
amar has joined #ruby
18:13
cschneid_ has quit [Remote host closed the connection]
18:15
banisterfiend has joined #ruby
18:16
qnaal has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
18:17
amar has quit [Ping timeout: 248 seconds]
18:17
eckhardt has joined #ruby
18:18
n0m4d1c has joined #ruby
18:18
amar has joined #ruby
18:18
jottr has joined #ruby
18:21
sauvin has quit [Read error: Connection reset by peer]
18:23
ryzokuken has joined #ruby
18:23
alfiemax has joined #ruby
18:24
<
tuskkk___ >
for the feature spec with rspec, why can't we create an entry using the model?
18:24
<
tuskkk___ >
how do we add fixtures for it?
18:27
blackmesa has joined #ruby
18:27
k0mpa has quit [Remote host closed the connection]
18:31
cschneid_ has joined #ruby
18:33
contradictioned has quit [Ping timeout: 256 seconds]
18:33
Asher has joined #ruby
18:34
contradictioned has joined #ruby
18:40
roamingdog has joined #ruby
18:42
CrazyEddy has joined #ruby
18:52
roamingdog has quit [Remote host closed the connection]
18:52
roamingdog has joined #ruby
18:53
dviola has joined #ruby
18:53
roamingdog has quit [Remote host closed the connection]
18:53
roamingdog has joined #ruby
18:55
schneider has joined #ruby
18:57
blackmesa has quit [Quit: WeeChat 2.1]
18:59
kmurphy4 has quit [Quit: kmurphy4]
19:00
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
19:01
TvL2386_ has joined #ruby
19:02
alfiemax has quit [Remote host closed the connection]
19:03
mondz` has joined #ruby
19:03
TvL2386 has quit [Ping timeout: 256 seconds]
19:04
alfiemax has joined #ruby
19:06
mondz has quit [Ping timeout: 260 seconds]
19:07
amatas has quit [Quit: amatas]
19:07
<
TomyWork >
does delayed_jobs' "myobject.delay.mymethod" thingy support multiple parameters to the method?
19:07
dc1 has joined #ruby
19:09
<
TomyWork >
i've only ever seen it used with single parameters and i'm trying to figure out why the jobs from this really old and unmaintained thing called puppet-dashboard fail regularly.
19:09
alfiemax has quit [Ping timeout: 256 seconds]
19:10
chouhoul_ has joined #ruby
19:12
dc1 has quit [Ping timeout: 256 seconds]
19:13
chouhoulis has quit [Ping timeout: 240 seconds]
19:16
<
TomyWork >
the source code doesn't read that way, but it's also high-level magic, so i could be wrong :)
19:16
<
jrich523 >
err its your method
19:16
<
jrich523 >
you'd define what it takes?
19:24
ramfjord has quit [Ping timeout: 260 seconds]
19:25
ramfjord has joined #ruby
19:26
blackmesa has joined #ruby
19:30
ramfjord has quit [Ping timeout: 260 seconds]
19:35
dc1 has joined #ruby
19:38
ramfjord has joined #ruby
19:39
za1b1tsu has quit [Ping timeout: 260 seconds]
19:41
chouhoul_ has quit [Remote host closed the connection]
19:42
chouhoulis has joined #ruby
19:42
nitric has joined #ruby
19:43
ramfjord has quit [Ping timeout: 276 seconds]
19:44
<
schneider >
is there a gem that can clone git projects using ssh key but does not require 'git' binary?
19:44
orbyt_ has joined #ruby
19:44
ramfjord has joined #ruby
19:44
nitric_ has quit [Ping timeout: 240 seconds]
19:45
<
schneider >
gem 'ruby-git' seems to be ok but it realy annoys me because it uses system git
19:46
roamingdog has quit [Remote host closed the connection]
19:48
ramfjord has quit [Ping timeout: 256 seconds]
19:49
SeepingN has joined #ruby
19:50
ramfjord has joined #ruby
19:50
jenrzzz has quit [Ping timeout: 264 seconds]
19:51
KeyJoo has joined #ruby
19:53
jenrzzz has joined #ruby
19:53
za1b1tsu has joined #ruby
19:53
<
havenwood >
schaary: rugged
19:54
<
havenwood >
oops, MT
19:55
ramfjord has quit [Ping timeout: 268 seconds]
19:56
ramfjord has joined #ruby
19:56
<
schneider >
thanks havenwood! I'll take a look
19:59
n0m4d1c has quit [Remote host closed the connection]
20:00
minimalism has joined #ruby
20:00
n0m4d1c has joined #ruby
20:00
jottr has quit [Ping timeout: 268 seconds]
20:02
caleBOT has joined #ruby
20:02
caleBOT_ has joined #ruby
20:04
n0m4d1c has quit [Ping timeout: 248 seconds]
20:09
dc1 has quit [Ping timeout: 276 seconds]
20:11
Nawn has joined #ruby
20:13
alfiemax has joined #ruby
20:14
Nawn has quit [Client Quit]
20:15
Nawn has joined #ruby
20:15
Nawn has quit [Client Quit]
20:16
Nawn has joined #ruby
20:19
Nawn has quit [Client Quit]
20:20
Nawn has joined #ruby
20:21
amelliaa has quit [Quit: -]
20:22
plexigras has quit [Ping timeout: 276 seconds]
20:23
sammi` has quit [Read error: Connection reset by peer]
20:24
sammi` has joined #ruby
20:26
kmurphy4 has joined #ruby
20:27
graft has quit [Ping timeout: 255 seconds]
20:27
memo1 has joined #ruby
20:28
Nawn has quit [Quit: Peace out]
20:28
Nawn has joined #ruby
20:29
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
20:29
sammi` has quit [Read error: Connection reset by peer]
20:29
sammi` has joined #ruby
20:29
jottr has joined #ruby
20:30
jenrzzz_ has joined #ruby
20:31
ccrow has quit [Quit: Ex-Chat]
20:33
jenrzzz has quit [Ping timeout: 268 seconds]
20:34
sammi` has quit [Read error: Connection reset by peer]
20:34
sammi` has joined #ruby
20:35
contradictioned has quit [Ping timeout: 240 seconds]
20:35
jottr_ has joined #ruby
20:36
mlkkk has joined #ruby
20:36
jottr has quit [Ping timeout: 240 seconds]
20:36
alfiemax has quit [Ping timeout: 264 seconds]
20:37
schleppel has quit [Quit: Konversation terminated!]
20:39
sammi` has joined #ruby
20:39
sammi` has quit [Read error: Connection reset by peer]
20:39
joro_ has joined #ruby
20:39
contradictioned has joined #ruby
20:41
karapetyan has quit [Remote host closed the connection]
20:42
ellcs has quit [Ping timeout: 240 seconds]
20:44
sammi` has quit [Read error: Connection reset by peer]
20:44
sammi` has joined #ruby
20:46
contradictioned has quit [Ping timeout: 256 seconds]
20:47
jamesaxl has quit [Ping timeout: 268 seconds]
20:48
nfsnobody has quit [Ping timeout: 240 seconds]
20:49
sammi` has quit [Read error: Connection reset by peer]
20:49
sammi` has joined #ruby
20:51
TomyWork has quit [Ping timeout: 240 seconds]
20:51
nfsnobody has joined #ruby
20:52
contradictioned has joined #ruby
20:53
tag has joined #ruby
20:54
sammi` has quit [Read error: Connection reset by peer]
20:54
sammi` has joined #ruby
20:56
contradictioned has quit [Ping timeout: 256 seconds]
20:57
venmx has joined #ruby
20:58
ellcs has joined #ruby
20:58
jottr_ is now known as jottr
20:59
sammi` has quit [Read error: Connection reset by peer]
20:59
sammi` has joined #ruby
20:59
Cavallari has quit [Quit: Cavallari]
20:59
caleBOT_ has quit [Remote host closed the connection]
20:59
caleBOT has quit [Remote host closed the connection]
21:00
Zaab1t has quit [Quit: Zaab1t]
21:01
joro_ has quit [Ping timeout: 268 seconds]
21:02
contradictioned has joined #ruby
21:02
fyrril has quit [Quit: Leaving]
21:03
venmx has quit [Ping timeout: 240 seconds]
21:04
sammi` has quit [Read error: Connection reset by peer]
21:04
sammi` has joined #ruby
21:07
contradictioned has quit [Ping timeout: 256 seconds]
21:07
ur5us has joined #ruby
21:09
sammi` has quit [Read error: Connection reset by peer]
21:09
sammi` has joined #ruby
21:10
venmx has joined #ruby
21:12
contradictioned has joined #ruby
21:14
sammi` has quit [Read error: Connection reset by peer]
21:14
sammi` has joined #ruby
21:15
karapetyan has joined #ruby
21:16
contradictioned has quit [Ping timeout: 256 seconds]
21:17
ldnunes has quit [Quit: Leaving]
21:19
sammi` has quit [Read error: Connection reset by peer]
21:19
sammi` has joined #ruby
21:20
schneider has quit [Ping timeout: 240 seconds]
21:22
venmx has quit [Remote host closed the connection]
21:22
cyberg has quit [Ping timeout: 260 seconds]
21:22
contradictioned has joined #ruby
21:22
schneider has joined #ruby
21:24
sammi` has joined #ruby
21:24
sammi` has quit [Read error: Connection reset by peer]
21:25
dionysus69 has joined #ruby
21:27
za1b1tsu has quit [Ping timeout: 240 seconds]
21:27
contradictioned has quit [Ping timeout: 256 seconds]
21:28
schneider has quit [Ping timeout: 248 seconds]
21:28
contradictioned has joined #ruby
21:28
schneider has joined #ruby
21:29
sammi` has joined #ruby
21:30
Dbugger has quit [Quit: Leaving]
21:30
n0m4d1c has joined #ruby
21:32
jamesaxl has joined #ruby
21:32
eckhardt has quit [Read error: Connection reset by peer]
21:33
eckhardt has joined #ruby
21:33
schneider has quit [Ping timeout: 240 seconds]
21:34
sammi` has quit [Read error: Connection reset by peer]
21:34
sammi` has joined #ruby
21:35
TomyLobo has joined #ruby
21:35
cyberg has joined #ruby
21:38
schneider has joined #ruby
21:38
clemens3 has quit [Ping timeout: 240 seconds]
21:38
ellcs has quit [Ping timeout: 248 seconds]
21:38
grilix_ has quit [Ping timeout: 260 seconds]
21:39
sammi` has quit [Read error: Connection reset by peer]
21:39
sammi` has joined #ruby
21:41
n0m4d1c has quit [Remote host closed the connection]
21:41
n0m4d1c has joined #ruby
21:43
Nawn has quit [Read error: Connection reset by peer]
21:43
schneider has quit [Ping timeout: 264 seconds]
21:44
sammi` has quit [Read error: Connection reset by peer]
21:44
sammi` has joined #ruby
21:44
ur5us has quit [Remote host closed the connection]
21:46
n0m4d1c has quit [Ping timeout: 256 seconds]
21:47
schneider has joined #ruby
21:48
ghoti has quit [Read error: Connection reset by peer]
21:51
shinnya has joined #ruby
21:52
jamesaxl has quit [Ping timeout: 260 seconds]
21:52
schneider has quit [Ping timeout: 268 seconds]
21:52
jamesaxl has joined #ruby
21:54
sammi` has quit [Read error: Connection reset by peer]
21:54
sammi` has joined #ruby
21:54
reu_ has quit [Ping timeout: 256 seconds]
21:56
schneider has joined #ruby
21:57
cschneid_ has quit []
21:57
ellcs has joined #ruby
21:59
sammi` has quit [Read error: Connection reset by peer]
21:59
sammi` has joined #ruby
21:59
mlkkk has quit [Remote host closed the connection]
22:01
schneider has quit [Ping timeout: 240 seconds]
22:06
schneider has joined #ruby
22:09
_antares_ has joined #ruby
22:10
sshock has joined #ruby
22:10
roamingdog has joined #ruby
22:11
schneider has quit [Ping timeout: 256 seconds]
22:12
alfiemax has joined #ruby
22:14
jottr has quit [Ping timeout: 268 seconds]
22:14
sammi` has quit [Read error: Connection reset by peer]
22:14
sammi` has joined #ruby
22:14
mohsen_1 has quit [Quit: Connection closed for inactivity]
22:14
reber has quit [Read error: Connection reset by peer]
22:14
_antares_ has quit [Ping timeout: 276 seconds]
22:15
roamingdog has quit [Ping timeout: 256 seconds]
22:15
schneider has joined #ruby
22:16
coderphive has quit [Quit: coderphive]
22:16
reu has joined #ruby
22:19
sanscoeu_ has joined #ruby
22:20
schneider has quit [Ping timeout: 265 seconds]
22:23
sanscoeur has quit [Ping timeout: 256 seconds]
22:24
sanscoeu_ has quit [Ping timeout: 248 seconds]
22:24
jottr has joined #ruby
22:24
schneider has joined #ruby
22:25
KeyJoo has quit [Remote host closed the connection]
22:26
p0p0pr37 has quit [Read error: Connection reset by peer]
22:26
p0p0pr37 has joined #ruby
22:26
p0p0pr37 has joined #ruby
22:26
p0p0pr37 has quit [Changing host]
22:28
caleBOT has joined #ruby
22:28
memo1 has quit [Ping timeout: 265 seconds]
22:29
sammi` has joined #ruby
22:29
schneider has quit [Ping timeout: 240 seconds]
22:29
ccrow has joined #ruby
22:30
sammi` has quit [Read error: Connection reset by peer]
22:31
ellcs has left #ruby [#ruby]
22:32
caleBOT has quit [Ping timeout: 240 seconds]
22:34
schneider has joined #ruby
22:34
sammi` has joined #ruby
22:35
sammi` has quit [Read error: Connection reset by peer]
22:36
caleBOT has joined #ruby
22:36
caleBOT_ has joined #ruby
22:39
schneider has quit [Ping timeout: 260 seconds]
22:39
cadillac_ has quit [Ping timeout: 260 seconds]
22:39
sammi` has joined #ruby
22:39
cadillac_ has joined #ruby
22:40
sammi` has quit [Read error: Connection reset by peer]
22:43
schneider has joined #ruby
22:44
sammi` has joined #ruby
22:44
d_kam has quit [Ping timeout: 240 seconds]
22:45
sammi` has quit [Read error: Connection reset by peer]
22:45
alfiemax has quit [Ping timeout: 240 seconds]
22:46
n0m4d1c has joined #ruby
22:47
banisterfiend has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
22:48
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
22:48
schneider has quit [Ping timeout: 268 seconds]
22:49
tipyn has joined #ruby
22:49
sammi` has joined #ruby
22:50
sammi` has quit [Read error: Connection reset by peer]
22:51
chouhoul_ has joined #ruby
22:51
roamingdog has joined #ruby
22:52
schneider has joined #ruby
22:54
sammi` has joined #ruby
22:54
chouhoulis has quit [Ping timeout: 260 seconds]
22:55
memo1 has joined #ruby
22:55
chouhoul_ has quit [Ping timeout: 240 seconds]
22:55
sammi` has quit [Read error: Connection reset by peer]
22:57
caleBOT has quit [Remote host closed the connection]
22:57
caleBOT_ has quit [Read error: Connection reset by peer]
22:58
eckhardt has joined #ruby
22:58
schneider has quit [Ping timeout: 265 seconds]
22:59
sammi` has joined #ruby
23:00
sammi` has quit [Read error: Connection reset by peer]
23:01
dc1 has joined #ruby
23:02
schneider has joined #ruby
23:04
sammi` has joined #ruby
23:05
sammi` has quit [Read error: Connection reset by peer]
23:05
sshock has left #ruby [#ruby]
23:07
schneider has quit [Ping timeout: 265 seconds]
23:07
ccrow has quit [Read error: Connection reset by peer]
23:08
orbyt_ has joined #ruby
23:09
sammi` has joined #ruby
23:10
sammi` has quit [Read error: Connection reset by peer]
23:10
ccrow has joined #ruby
23:10
blackmesa1 has joined #ruby
23:11
schneider has joined #ruby
23:11
jottr has quit [Ping timeout: 240 seconds]
23:13
blackmesa has quit [Ping timeout: 255 seconds]
23:14
sammi` has joined #ruby
23:15
sammi` has quit [Read error: Connection reset by peer]
23:16
schneider has quit [Ping timeout: 248 seconds]
23:19
ccrow has quit [Quit: Ex-Chat]
23:19
blackmesa1 has quit [Ping timeout: 240 seconds]
23:20
schneider has joined #ruby
23:22
memo1 has quit [Ping timeout: 255 seconds]
23:24
sammi` has joined #ruby
23:25
schneider has quit [Ping timeout: 240 seconds]
23:25
sammi` has quit [Read error: Connection reset by peer]
23:26
n0m4d1c_ has joined #ruby
23:26
apeiros has quit [Ping timeout: 265 seconds]
23:28
caleBOT has joined #ruby
23:28
caleBOT_ has joined #ruby
23:29
sammi` has joined #ruby
23:29
n0m4d1c has quit [Ping timeout: 276 seconds]
23:30
schneider has joined #ruby
23:30
sammi` has quit [Read error: Connection reset by peer]
23:32
amar has quit [Remote host closed the connection]
23:34
sammi` has joined #ruby
23:34
schneider has quit [Ping timeout: 240 seconds]
23:35
sammi` has quit [Read error: Connection reset by peer]
23:38
_antares_ has joined #ruby
23:39
sammi` has joined #ruby
23:39
schneider has joined #ruby
23:39
tipyn has quit [Quit: Leaving...]
23:39
darkhanb has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
23:39
n0m4d1c_ has quit [Remote host closed the connection]
23:39
jottr has joined #ruby
23:40
sammi` has quit [Read error: Connection reset by peer]
23:40
n0m4d1c has joined #ruby
23:40
caleBOT_ has quit [Remote host closed the connection]
23:40
caleBOT has quit [Remote host closed the connection]
23:41
caleBOT_ has joined #ruby
23:41
caleBOT has joined #ruby
23:42
ccrow has joined #ruby
23:43
_antares_ has quit [Ping timeout: 255 seconds]
23:44
sammi` has joined #ruby
23:44
jottr has quit [Ping timeout: 240 seconds]
23:44
schneider has quit [Ping timeout: 264 seconds]
23:45
n0m4d1c has quit [Ping timeout: 265 seconds]
23:45
sammi` has quit [Read error: Connection reset by peer]
23:45
jamesaxl has quit [Quit: WeeChat 2.1]
23:48
ur5us has joined #ruby
23:48
regedit has quit [Quit: Connection closed for inactivity]
23:48
schneider has joined #ruby
23:49
sammi` has joined #ruby
23:50
sammi` has quit [Read error: Connection reset by peer]
23:53
schneider has quit [Ping timeout: 264 seconds]
23:54
sammi` has joined #ruby
23:55
sammi` has quit [Read error: Connection reset by peer]
23:55
d_kam has joined #ruby
23:58
schneider has joined #ruby
23:58
chocoelho has quit [Ping timeout: 276 seconds]
23:59
sammi` has joined #ruby
23:59
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]