havenwood changed the topic of #ruby to: Rules & more: https://ruby-community.com | Ruby 2.5.1, 2.4.4, 2.3.7, 2.6.0-preview2: https://www.ruby-lang.org | Paste 4+ lines of text to https://gist.github.com | Rails questions? Ask in #RubyOnRails | Books: https://goo.gl/wpGhoQ | Logs: https://irclog.whitequark.org/ruby
akaiiro has joined #ruby
kliq has quit [Read error: Connection reset by peer]
emilford has quit [Ping timeout: 268 seconds]
karapetyan has quit [Remote host closed the connection]
spencer has quit [Read error: Connection reset by peer]
spencer has joined #ruby
ur5us has joined #ruby
sameerynho has quit [Ping timeout: 255 seconds]
white_lilies has joined #ruby
ur5us has quit [Ping timeout: 245 seconds]
ramfjord has quit [Ping timeout: 248 seconds]
AJA4350 has quit [Quit: AJA4350]
white_lilies has quit [Ping timeout: 245 seconds]
omth has quit [Ping timeout: 245 seconds]
<yaiyaichu> Hi all. I hope you guys don't mind if I bother you with a question :) . I'm trying to run my ruby program (a web scraper) as a cronjob with the whenever gem. My cron job command cds into the directory with the Gemfile and runs the script with bundle exec. When the scheduled job runs, bundler says it cannot find the gem ffi in any of the sources. Any thoughts on why that happens? - The cronjob is run with
<yaiyaichu> my user. Also, I use rbenv.
<yaiyaichu> Please let me know if you need any additional info, and I'll gladly provide it.
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
omth has joined #ruby
yaiyaichu has quit [Read error: Connection reset by peer]
yaiyaichu has joined #ruby
omth_ has joined #ruby
omth has quit [Ping timeout: 256 seconds]
<Zarthus> yaiyaichu: Is it reproducable without cron?
<Zarthus> cron intentionally has basically no environment, maybe you'd need set some environment variables yourself so that it's really in sync with your user.
pabs has quit [Ping timeout: 264 seconds]
pabs has joined #ruby
gizmore has joined #ruby
pabs has quit [Ping timeout: 240 seconds]
pabs has joined #ruby
gizmore|2 has quit [Ping timeout: 265 seconds]
segy has quit [Quit: ZNC - http://znc.in]
apeiros has joined #ruby
segy has joined #ruby
omth_ has quit [Read error: Connection reset by peer]
omth_ has joined #ruby
kmurphy4 has quit [Quit: kmurphy4]
karapetyan has joined #ruby
Es0teric has joined #ruby
beefjoe has joined #ruby
gizmore has quit [Remote host closed the connection]
karapetyan has quit [Ping timeout: 240 seconds]
orbyt_ has joined #ruby
desperek has quit [Quit: xoxo]
pabs has quit [Ping timeout: 245 seconds]
pabs has joined #ruby
akaiiro has quit [Remote host closed the connection]
houhoulis has joined #ruby
akaiiro has joined #ruby
yaiyaichu has quit [Read error: Connection reset by peer]
yaiyaichu has joined #ruby
cgfbee has quit [Ping timeout: 260 seconds]
kmurphy4 has joined #ruby
yaiyaichu has quit [Read error: Connection reset by peer]
coffeecupp has joined #ruby
yaiyaichu has joined #ruby
agent_white has joined #ruby
segy has quit [Quit: ZNC - http://znc.in]
segy has joined #ruby
spencer has quit [Quit: Textual IRC Client: www.textualapp.com]
nicht has quit [Ping timeout: 256 seconds]
quarterfront has joined #ruby
coffeecupp has quit [Ping timeout: 240 seconds]
coffeecupp has joined #ruby
edymonchi77 has joined #ruby
Dimik has quit [Ping timeout: 264 seconds]
coffeecupp has quit [Client Quit]
ur5us has joined #ruby
edymonchi77 has quit [Quit: Now if you will excuse me, I have a giant ball of oil to throw out my window]
ur5us has quit [Ping timeout: 260 seconds]
apeiros has quit [Ping timeout: 260 seconds]
t0xik has joined #ruby
beefjoe has quit [Remote host closed the connection]
Jiao has joined #ruby
<Jiao> Still learning here.......
<Jiao> I'm stuck....
<Jiao> .....so I'm suppose to create an instance of the following Person class, set its name attribute to any value you like, and use its instance variable to complete the greeting method.
<Jiao> class Person
<Jiao> attr_accessor :name
<Jiao> def greeting
<Jiao> # @name
<Jiao> puts "hi, my name is #{??}"
<Jiao> end
<Jiao> end
<Jiao> some_person = ??
<Jiao> some_person.name = ??
<Jiao> some_person.??
<Jiao> ....what am I suppose to do here...
<Jiao> I'm guessing the first ?? is @name
<Jiao> ....but what about the some_person ??? Is that some_person = Person
<Jiao> ?
<Jiao> .......and what's the some_person.name and some.person.??
cjohnson has joined #ruby
tdy1 has quit [Ping timeout: 240 seconds]
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
shinnya has joined #ruby
yaiyaichu has quit [Quit: leaving]
cadillac_ has quit [Quit: I quit]
cadillac_ has joined #ruby
<Jiao> help?
<elomatreb> attr_accessor implicitly defines methods for you, namely the getter `name` (some_person.name), and the setter `name=` (some_person.name = ...)
<Jiao> Can I put something like some_person.name = "My_Name"
braincrash has quit [Quit: bye bye]
<elomatreb> Yes. This will set the @name instance variable for you
<Jiao> For 'some_person'....I made that equate to 'Person'
<Jiao> .............I'm not really sure but my code isn't running
sytherax has joined #ruby
<Jiao> ...the last line...... some_person.??
<Jiao> should that be... some_person.Person
<Jiao> ???
orbyt_ has joined #ruby
<Jiao> ???
braincrash has joined #ruby
sytherax has quit [Remote host closed the connection]
sytherax has joined #ruby
<elomatreb> Oh, yeah. You
<elomatreb> *You're never actually creating an instance in your code
<elomatreb> `some_person = Person.new` will probably get you what you need
sytherax has quit [Remote host closed the connection]
karapetyan has joined #ruby
tdy1 has joined #ruby
sytherax has joined #ruby
RougeR has quit [Ping timeout: 245 seconds]
fraktor has joined #ruby
pskosinski has quit [Ping timeout: 265 seconds]
<fraktor> I just set up a module using 'bundle install', but it gives me the error 'permission denied @ rb_sysopen' with a file that was installed earlier by rubygems. It looks like the permissions are out of whack. How can I fix this and make sure that it doesn't happen again?
karapetyan has quit [Ping timeout: 276 seconds]
<elomatreb> Did you use sudo? That's generally the way to mess up permissions
jamesaxl has quit [Quit: WeeChat 2.1]
<fraktor> I don't think so. If I did, how can I un-mess it up?
cyberg has quit [Remote host closed the connection]
<elomatreb> It really depends on where your files ended up, if it's in a system directory such as /usr I'd probably delete them and reinstall with the proper arguments, if it's in your home directory something else has gone wrong
<elomatreb> You can tell gem to install files for your current user only, with the --user-install argument
<fraktor> That would be the issue. Thanks!
<elomatreb> Alternatively the method concerning bundler that is most guaranteed to work is to vendor the gems into your local project (like e.g. npm does it), with the `--path=vendor` argument
pskosinski has joined #ruby
gix has joined #ruby
gix- has quit [Ping timeout: 256 seconds]
<Jiao> Why is it some_person = Person.new ????
chamar has joined #ruby
fraktor has quit [Quit: WeeChat 2.0.1]
<elomatreb> Person is a class, .new creates an instance of a class. Read up on the class-instance relationship, this is something basic you will need to understand to understand most other things
podlech has joined #ruby
sytherax has quit [Remote host closed the connection]
sytherax has joined #ruby
<Jiao> Thanks :)
<Jiao> that helps out alot
<Jiao> I'm guessing I can find the class-instance relationship thing in the ruby guide?
<elomatreb> It's not really specific to Ruby (although there are Ruby specifics), it's a core principle of the programming dogma that Ruby and many other languages subscribe to, Object-Oriented Programming
podlech has quit [Quit: WeeChat 2.1]
<Jiao> I see..
apparition has joined #ruby
<Jiao> any good resource for that?
akaiiro has quit [Ping timeout: 256 seconds]
<elomatreb> There are some books linked in the topic, I think some of the ones in the first section go over this
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
headius has quit [Ping timeout: 268 seconds]
sytherax has quit [Remote host closed the connection]
sytherax has joined #ruby
akaiiro has joined #ruby
Danielss89 has quit [Quit: Bye]
sytherax has quit [Remote host closed the connection]
<Jiao> .....what are the title of the books?
konsolebox has joined #ruby
sytherax has joined #ruby
sytherax has quit [Ping timeout: 245 seconds]
<elomatreb> !books
<elomatreb> mph. https://goo.gl/wpGhoQ
apeiros has joined #ruby
Anthony_Bourdain has quit [Remote host closed the connection]
sytherax has joined #ruby
sytherax has quit [Ping timeout: 264 seconds]
Es0teric has quit [Quit: Computer has gone to sleep.]
sytherax has joined #ruby
konsolebox has quit [Ping timeout: 248 seconds]
sytherax has quit [Ping timeout: 240 seconds]
nicht has joined #ruby
harrycs has joined #ruby
harrycs has quit [Client Quit]
konsolebox has joined #ruby
akaiiro has quit [Remote host closed the connection]
clemens3 has joined #ruby
jud has quit [Quit: Leaving]
karapetyan has joined #ruby
clemens3_ has joined #ruby
karapetyan has quit [Ping timeout: 265 seconds]
sytherax has joined #ruby
aeontech has joined #ruby
houhoulis has quit [Remote host closed the connection]
solocshaw has joined #ruby
rippa has joined #ruby
nahra has quit [Remote host closed the connection]
solocshaw has quit [Ping timeout: 240 seconds]
Anthony_Bourdain has joined #ruby
Esa_ has quit []
Es0teric has joined #ruby
coffeecupp has joined #ruby
DoubleMalt has joined #ruby
dionysus69 has joined #ruby
Es0teric has quit [Quit: Computer has gone to sleep.]
DoubleMalt has quit [Ping timeout: 260 seconds]
ciscam has quit [Ping timeout: 265 seconds]
ciscam has joined #ruby
sytherax has quit [Remote host closed the connection]
sytherax has joined #ruby
quarterfront has quit [Remote host closed the connection]
TinkerT has quit [Read error: Connection reset by peer]
apparition has quit [Quit: Bye]
TinkerT has joined #ruby
ta_ has joined #ruby
sytherax has quit [Ping timeout: 256 seconds]
ta_ has quit [Ping timeout: 240 seconds]
kmurphy4 has quit [Quit: kmurphy4]
kapil___ has joined #ruby
coffeecupp has quit [Ping timeout: 256 seconds]
coffeecupp has joined #ruby
reber has joined #ruby
coffeecu_ has joined #ruby
dionysus69 has quit [Ping timeout: 260 seconds]
coffeecu_ has quit [Client Quit]
fs0ciety_ has joined #ruby
sytherax has joined #ruby
marianedinis has joined #ruby
marianedinis has quit [Remote host closed the connection]
sytherax has quit [Remote host closed the connection]
sytherax has joined #ruby
cadillac_ has quit [Ping timeout: 265 seconds]
cadillac_ has joined #ruby
baweaver_away is now known as baweaver
dviola has quit [Quit: WeeChat 2.1]
aloy has quit [Ping timeout: 245 seconds]
aloy has joined #ruby
dionysus69 has joined #ruby
karapetyan has joined #ruby
karapetyan has quit [Ping timeout: 240 seconds]
coffeecupp has quit [Quit: WeeChat 2.2-dev]
Kestrel-029 has joined #ruby
nicht has quit [Ping timeout: 245 seconds]
<elomatreb> baweaver: Regarding your #succ tweet: I don't think that's a version-specific thing, it treats the last (\d+).(\d+) as a fraction
<elomatreb> >> "0.9".succ
<ruby[bot]> elomatreb: # => "1.0" (https://eval.in/1018245)
<baweaver> Reply away :)
<elomatreb> Don't have a public twitter account anymore
<baweaver> I don't pretend to know all the tricks :P
za1b1tsu has joined #ruby
<elomatreb> I was just curious if they had really special-cased version-like strings
venmx has joined #ruby
<baweaver> >> '1.9.9'.succ
<ruby[bot]> baweaver: # => "2.0.0" (https://eval.in/1018246)
<baweaver> Hrm
<baweaver> >> '1.9.9.9.9.9.9'.succ
<ruby[bot]> baweaver: # => "2.0.0.0.0.0.0" (https://eval.in/1018247)
<baweaver> ....hehehehe
<elomatreb> mh
<baweaver> [1, *([9]*100)].join('.').succ
<baweaver> >> [1, *([9]*100)].join('.').succ
<ruby[bot]> baweaver: # => "2.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 ...check link for more (https://eval.in/1018248)
<baweaver> hehehe
<elomatreb> a VERY Major release
<elomatreb> :)
<baweaver> I wonder how that actually works
<baweaver> asm>> [1, *([9]*100)].join('.').succ
<ruby[bot]> baweaver: I have disassembled your code, the result is at https://eval.in/1018249
<baweaver> Eh, I'll poke it later.
<elomatreb> The examples in the docs are pretty wild too
<elomatreb> >> "<<koala>>".succ
<ruby[bot]> elomatreb: # => "<<koalb>>" (https://eval.in/1018250)
venmx has quit [Ping timeout: 260 seconds]
braindead_ has joined #ruby
heftig_ has joined #ruby
heftig has quit [Ping timeout: 276 seconds]
ndrst has quit [Ping timeout: 260 seconds]
ndrst has joined #ruby
ndrst is now known as Guest33352
donofrio has quit [Remote host closed the connection]
Junaos has quit [Quit: ZNC - http://znc.in]
schleppel has joined #ruby
VladGh_ has joined #ruby
VladGh has quit [Ping timeout: 245 seconds]
sytherax has quit [Remote host closed the connection]
pabs has quit [Ping timeout: 268 seconds]
pabs has joined #ruby
sytherax has joined #ruby
soniya29 has joined #ruby
sphenxes has joined #ruby
sytherax has quit [Remote host closed the connection]
sytherax has joined #ruby
snickers has joined #ruby
dionysus69 has quit [Quit: dionysus69]
sytherax has quit [Remote host closed the connection]
sytherax has joined #ruby
mtkd has joined #ruby
RougeR has joined #ruby
sytherax has quit [Remote host closed the connection]
sytherax has joined #ruby
nowhere_man has joined #ruby
sytherax has quit [Remote host closed the connection]
sytherax has joined #ruby
sameerynho has joined #ruby
\void has quit [Quit: So long, and thanks for all the fish.]
sytherax has quit [Remote host closed the connection]
sytherax has joined #ruby
minimalism is now known as tty
Ethan has quit [Quit: ZNC 1.6.6+deb1 - http://znc.in]
Ethan has joined #ruby
tty has quit [Quit: tty]
tty has joined #ruby
amar has joined #ruby
aeontech has quit [Quit: aeontech]
Kestrel-029 has quit [Read error: Connection reset by peer]
soniya29 has quit [Quit: Leaving]
conta has joined #ruby
Nicmavr has joined #ruby
Nicmavr is now known as Guest5969
face has quit [Ping timeout: 240 seconds]
megamos has joined #ruby
dhollin3 has joined #ruby
conta has quit [Quit: conta]
TomyLobo2 has joined #ruby
dhollinger has quit [Ping timeout: 264 seconds]
megamos has quit [Quit: Leaving]
sytherax has quit [Remote host closed the connection]
sytherax has joined #ruby
blackmesa has joined #ruby
Es0teric has joined #ruby
FernandoBasso has joined #ruby
sytherax has quit [Remote host closed the connection]
sytherax has joined #ruby
Junaos has joined #ruby
ur5us has joined #ruby
blackmesa has quit [Ping timeout: 245 seconds]
mikecmpbll has joined #ruby
sytherax has quit [Remote host closed the connection]
sytherax has joined #ruby
Junaos has quit [Quit: ZNC - http://znc.in]
pabs has quit [Ping timeout: 264 seconds]
pabs has joined #ruby
karapetyan has joined #ruby
Guest5969 has quit [Quit: ZNC 1.7.0 - https://znc.in]
Junaos has joined #ruby
karapetyan has quit [Ping timeout: 248 seconds]
sytherax has quit [Remote host closed the connection]
ta_ has joined #ruby
armyriad has joined #ruby
sytherax has joined #ruby
drigger has joined #ruby
blackmesa has joined #ruby
<drigger> Apologies for being a bit OT but does anyone know how I could see the options that a Ruby installed via Rbenv was built with?
za1b1tsu has quit [Ping timeout: 255 seconds]
sytherax has quit [Remote host closed the connection]
sytherax has joined #ruby
<apeiros> drigger: seems perfectly on-topic ;-) sadly I have no idea.
blackmesa has quit [Client Quit]
<drigger> Well, that' something,
sytherax has quit [Remote host closed the connection]
darkhanb has joined #ruby
sytherax has joined #ruby
Es0teric has quit [Quit: Computer has gone to sleep.]
mikecmpbll has quit [Quit: inabit. zz.]
ur5us has quit [Remote host closed the connection]
ta_ has quit [Quit: Leaving...]
sytherax has quit [Remote host closed the connection]
sytherax has joined #ruby
biberu has joined #ruby
TCZ has joined #ruby
TCZ has quit [Quit: Leaving]
conta has joined #ruby
psychicist__ has joined #ruby
__chamar__ has joined #ruby
chamar has quit [Ping timeout: 248 seconds]
sytherax has quit [Remote host closed the connection]
drigger has quit [Quit: Page closed]
sytherax has joined #ruby
sytherax has quit [Remote host closed the connection]
sytherax has joined #ruby
sytherax has quit [Remote host closed the connection]
<Radar> drigg... and gone
AJA4350 has joined #ruby
sytherax has joined #ruby
sytherax has quit [Remote host closed the connection]
sepp2k has joined #ruby
sytherax has joined #ruby
sytherax has quit [Remote host closed the connection]
Shkiperman has joined #ruby
sytherax has joined #ruby
sytherax has quit [Remote host closed the connection]
mtkd has quit [Ping timeout: 260 seconds]
postmodern has quit [Quit: Leaving]
sytherax has joined #ruby
quobo has joined #ruby
conta has quit [Quit: conta]
pabs has quit [Ping timeout: 264 seconds]
pabs has joined #ruby
sytherax has quit [Remote host closed the connection]
desperek has joined #ruby
sytherax has joined #ruby
Zaab1t has joined #ruby
mtkd has joined #ruby
tty has quit [Quit: tty]
sameerynho has quit [Ping timeout: 245 seconds]
samosaphile has joined #ruby
sytherax has quit [Remote host closed the connection]
redlegion has quit [Remote host closed the connection]
redlegion has joined #ruby
cyberg has joined #ruby
shinnya has quit [Ping timeout: 245 seconds]
ciscam has quit [Ping timeout: 240 seconds]
mostlybadfly has joined #ruby
ciscam has joined #ruby
amatas has joined #ruby
sytherax has joined #ruby
sytherax has quit [Remote host closed the connection]
amatas has quit [Ping timeout: 264 seconds]
snickers has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
karapetyan has joined #ruby
ramfjord has joined #ruby
karapetyan has quit [Ping timeout: 260 seconds]
ramfjord has quit [Ping timeout: 264 seconds]
arand has quit [Ping timeout: 264 seconds]
_whitelogger has joined #ruby
sytherax has joined #ruby
herbmillerjr has joined #ruby
arand has joined #ruby
sytherax has quit [Remote host closed the connection]
sytherax has joined #ruby
sytherax has quit [Remote host closed the connection]
Mia has quit [Read error: Connection reset by peer]
sytherax has joined #ruby
karapetyan has joined #ruby
sytherax has quit [Remote host closed the connection]
jamesaxl has joined #ruby
amatas has joined #ruby
ramfjord has joined #ruby
sytherax has joined #ruby
ramfjord has quit [Ping timeout: 264 seconds]
mtkd has quit []
conta has joined #ruby
amatas has quit [Quit: amatas]
conta has quit [Client Quit]
conta has joined #ruby
sytherax has quit [Remote host closed the connection]
BTRE has quit [Read error: Connection reset by peer]
ciscam has quit [Ping timeout: 264 seconds]
ciscam has joined #ruby
sytherax has joined #ruby
emilford has joined #ruby
RougeR has quit [Ping timeout: 245 seconds]
quobo has quit [Quit: Connection closed for inactivity]
schneider has joined #ruby
amar has quit [Remote host closed the connection]
amar has joined #ruby
conta has quit [Quit: conta]
sytherax has quit [Remote host closed the connection]
__chamar__ has quit [Ping timeout: 268 seconds]
sytherax has joined #ruby
_chamar_ has joined #ruby
amar has quit [Ping timeout: 256 seconds]
zapata_ has joined #ruby
zapata has quit [Ping timeout: 256 seconds]
snickers has joined #ruby
plexigras has joined #ruby
Shkiperman has quit [Quit: Page closed]
mtkd has joined #ruby
jxweng has joined #ruby
sytherax has quit [Remote host closed the connection]
sytherax has joined #ruby
aceruser has joined #ruby
jxweng has quit [Client Quit]
DLSteve has joined #ruby
mroutis has joined #ruby
<mroutis> hi, rubyist, I'm trying to solve a codechef problem with ruby, it works but hits the time limit, anyone willing to help improving the performance of the code?
<mroutis> here's my first solution, https://www.codechef.com/viewsolution/18834503
<mroutis> it's "ruby" enough, I guess... it almost reads like the problem description
za1b1tsu has joined #ruby
dhollin3 has quit [Ping timeout: 240 seconds]
sytherax has quit [Remote host closed the connection]
dhollin3 has joined #ruby
sytherax has joined #ruby
<mroutis> and here's the second one, where I improved the input paring and memory usage https://www.codechef.com/viewsolution/18858717
bipul has quit [Changing host]
bipul has joined #ruby
<mroutis> I've read that the `with_index` method duplicates the objects in place, so I'm plannig to get rid of that part
DLSteve has quit [Quit: All rise, the honorable DLSteve has left the channel.]
DLSteve has joined #ruby
goop has joined #ruby
karapetyan has quit [Remote host closed the connection]
<mroutis> out of ideas, in this submission I optimized the constraint check and it stills gives me time limit exceeded: https://www.codechef.com/viewsolution/18858831
apparition has joined #ruby
beefjoe has joined #ruby
karapetyan has joined #ruby
karapetyan has quit [Remote host closed the connection]
face has joined #ruby
konsolebox has quit [Ping timeout: 260 seconds]
za1b1tsu has quit [Quit: WeeChat 2.1]
konsolebox has joined #ruby
goop has left #ruby [#ruby]
sytherax has quit [Remote host closed the connection]
crimsontr has joined #ruby
sytherax has joined #ruby
FernandoBasso has quit [Quit: Leaving]
mtkd has quit []
emilford has quit [Ping timeout: 245 seconds]
crimsontr has quit [Ping timeout: 255 seconds]
mroutis has quit [Ping timeout: 264 seconds]
banisterfiend has joined #ruby
sytherax has quit [Remote host closed the connection]
mzo has joined #ruby
emilford has joined #ruby
sytherax has joined #ruby
jamesaxl has quit [Ping timeout: 256 seconds]
jamesaxl has joined #ruby
jready has joined #ruby
konsolebox has quit [Ping timeout: 240 seconds]
apparition has quit [Quit: Bye]
akaiiro has joined #ruby
mtkd has joined #ruby
emilford has quit [Ping timeout: 245 seconds]
def_jam has joined #ruby
schneider has quit [Ping timeout: 240 seconds]
crimsontr has joined #ruby
eblip has quit [Ping timeout: 268 seconds]
DLSteve has quit [Quit: All rise, the honorable DLSteve has left the channel.]
eb0t has quit [Ping timeout: 268 seconds]
schneider has joined #ruby
crimsontr_ has joined #ruby
crimsontr_ has quit [Client Quit]
jrafanie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dionysus69 has joined #ruby
sytherax has quit [Remote host closed the connection]
Mia has joined #ruby
Mia has joined #ruby
Mia has quit [Changing host]
crimsontr has quit [Ping timeout: 276 seconds]
konsolebox has joined #ruby
jinie has quit [Ping timeout: 240 seconds]
crimsontr_ has joined #ruby
za1b1tsu has joined #ruby
conta has joined #ruby
jinie has joined #ruby
karapetyan has joined #ruby
crimsontr_ has quit [Client Quit]
BTRE has joined #ruby
conta has quit [Client Quit]
karapetyan has quit [Ping timeout: 256 seconds]
_chamar_ has quit [Quit: Leaving]
mtkd has quit []
tdy1 has quit [Quit: WeeChat 1.9.1]
t0xik has quit [Quit: Connection closed for inactivity]
nertzy has quit [Ping timeout: 268 seconds]
Puffball has joined #ruby
nicht has joined #ruby
nicht_ has joined #ruby
desperek has quit [Ping timeout: 260 seconds]
nicht_ has quit [Remote host closed the connection]
pabs has quit [Ping timeout: 256 seconds]
pabs has joined #ruby
lele has quit [Ping timeout: 245 seconds]
konsolebox has quit [Ping timeout: 240 seconds]
karapetyan has joined #ruby
konsolebox has joined #ruby
thadtheman has quit [Remote host closed the connection]
planigan has quit [Ping timeout: 264 seconds]
karapetyan has quit [Ping timeout: 268 seconds]
lele has joined #ruby
mtkd has joined #ruby
emilford has joined #ruby
emilford has quit [Ping timeout: 260 seconds]
amar has joined #ruby
karapetyan has joined #ruby
Dimik has joined #ruby
reber has left #ruby ["Leaving"]
Kestrel-029 has joined #ruby
BTRE has quit [Read error: Connection reset by peer]
BTRE has joined #ruby
howdoi has joined #ruby
jready has quit [Remote host closed the connection]
mtkd has quit []
beefjoe has quit [Remote host closed the connection]
banisterfiend has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mzo has quit [Ping timeout: 264 seconds]
mikecmpbll has joined #ruby
karapetyan has quit [Remote host closed the connection]
mzo has joined #ruby
karapetyan has joined #ruby
bathtub_shark has joined #ruby
desperek has joined #ruby
thebetrayer has quit [Ping timeout: 240 seconds]
AJA4350 has quit [Remote host closed the connection]
AJA4350 has joined #ruby
ramfjord has joined #ruby
mroutis has joined #ruby
za1b1tsu has quit [Quit: WeeChat 2.1]
Es0teric has joined #ruby
pabs has quit [Ping timeout: 240 seconds]
pabs has joined #ruby
ramfjord has quit [Ping timeout: 265 seconds]
jinie has quit [Quit: ZNC 1.6.1 - http://znc.in]
jinie has joined #ruby
conta has joined #ruby
nythalcrow has joined #ruby
venmx has joined #ruby
Azure has quit [Ping timeout: 276 seconds]
pabs has quit [Ping timeout: 245 seconds]
pabs has joined #ruby
karapetyan has quit [Remote host closed the connection]
chussenot has joined #ruby
Azure has joined #ruby
planigan has joined #ruby
eelster has joined #ruby
BlopMonster has quit [Ping timeout: 240 seconds]
thebetrayer has joined #ruby
andrewray has joined #ruby
planigan has quit [Ping timeout: 264 seconds]
schneider has quit [Ping timeout: 260 seconds]
fmcgeough has joined #ruby
nicht has quit [Ping timeout: 255 seconds]
sameerynho has joined #ruby
pabs has quit [Ping timeout: 265 seconds]
pabs has joined #ruby
schneider has joined #ruby
GodFather has joined #ruby
planigan has joined #ruby
chussenot has quit [Quit: chussenot]
sameerynho has quit [Ping timeout: 256 seconds]
schneider has quit [Ping timeout: 264 seconds]
schneider has joined #ruby
jrafanie has joined #ruby
schneider has quit [Ping timeout: 245 seconds]
schneider has joined #ruby
BlopMonster has joined #ruby
schneider has quit [Ping timeout: 245 seconds]
eb0t has joined #ruby
def_jam is now known as eblip
BlopMonster has quit [Ping timeout: 248 seconds]
fmcgeough has quit [Quit: fmcgeough]
thebetrayer has quit [Ping timeout: 276 seconds]
andrewray has quit [Quit: andrewray]
herbmillerjr has quit [Quit: Konversation terminated!]
Dbugger has joined #ruby
GodFather has quit [Ping timeout: 260 seconds]
andrewray has joined #ruby
BlopMonster has joined #ruby
akaiiro has quit [Remote host closed the connection]
cseder has joined #ruby
dionysus70 has joined #ruby
kt has quit [Ping timeout: 240 seconds]
karapetyan has joined #ruby
psychicist__ has quit [Quit: leaving]
dionysus69 has quit [Ping timeout: 260 seconds]
dionysus70 is now known as dionysus69
karapetyan has quit [Ping timeout: 256 seconds]
dviola has joined #ruby
mroutis has quit [Ping timeout: 260 seconds]
BlopMonster has quit [Ping timeout: 240 seconds]
cadillac_ has quit [Read error: Connection reset by peer]
nythalcrow has quit [Quit: This computer has gone to sleep]
cadillac_ has joined #ruby
thebetrayer has joined #ruby
jrafanie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
nythalcrow has joined #ruby
herbmillerjr has joined #ruby
iraklis has joined #ruby
eelster has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
nertzy has joined #ruby
conta has quit [Ping timeout: 260 seconds]
<cyclonis> anyone running ruby on freebsd and if so where you able to get gems working
Kestrel-029 has quit [Read error: Connection reset by peer]
conta has joined #ruby
Nicmavr has joined #ruby
Nicmavr is now known as Guest66394
<cyclonis> never mind i figured it out
BlopMonster has joined #ruby
nythalcrow has quit [Quit: This computer has gone to sleep]
iraklis has quit [Quit: Page closed]
emilford has joined #ruby
DoubleMalt has joined #ruby
DoubleMalt has quit [Read error: Connection reset by peer]
nfk has joined #ruby
nythalcrow has joined #ruby
biberu has quit []
jottr has joined #ruby
conta has quit [Quit: conta]
karapetyan has joined #ruby
ramfjord has joined #ruby
hanmac has quit [Quit: Leaving.]
karapetyan has quit [Ping timeout: 240 seconds]
archedice has joined #ruby
mzo has quit [Ping timeout: 276 seconds]
archedice has quit [Client Quit]
archedice has joined #ruby
armyriad has quit [Quit: Leaving]
jottr has quit [Ping timeout: 260 seconds]
Zaab1t has quit [Quit: Zaab1t]
cadillac_ has quit [Ping timeout: 276 seconds]
nowhere_man has quit [Ping timeout: 264 seconds]
emilford has quit [Ping timeout: 276 seconds]
synstack has quit [Read error: Connection reset by peer]
emilford has joined #ruby
ramfjord has quit [Ping timeout: 240 seconds]
Guest66394 has quit [Quit: ZNC 1.7.0 - https://znc.in]
sepp2k has quit [Read error: Connection reset by peer]
emilford has quit [Ping timeout: 268 seconds]
Es0teric has quit [Quit: Computer has gone to sleep.]
dionysus69 has quit [Ping timeout: 256 seconds]
Azure has quit [Ping timeout: 276 seconds]
Azure|dc has joined #ruby
eelster has joined #ruby
kapil___ has quit [Quit: Connection closed for inactivity]
kmurphy4 has joined #ruby
cadillac_ has joined #ruby
yokel has quit [Remote host closed the connection]
yokel has joined #ruby
sphenxes has quit [Remote host closed the connection]
andrewray has quit [Quit: andrewray]
jrafanie has joined #ruby
andrewray has joined #ruby
ur5us has joined #ruby
houhoulis has joined #ruby
nfk has quit [Ping timeout: 240 seconds]
GodFather has joined #ruby
venmx has quit [Ping timeout: 255 seconds]
karapetyan has joined #ruby
ellcs has joined #ruby
lytol has quit [Remote host closed the connection]
jready has joined #ruby
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
plexigras has quit [Ping timeout: 260 seconds]
mikecmpbll has quit [Quit: inabit. zz.]
RougeR has joined #ruby
mikecmpbll has joined #ruby
armyriad has joined #ruby
nfk has joined #ruby
nowhere_man has joined #ruby
amar has quit [Remote host closed the connection]
amar has joined #ruby
venmx has joined #ruby
amar has quit [Ping timeout: 265 seconds]
jrafanie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<wkoszek> havenwood: During out last discussion you mentioned Ruby can be statically compiled?
<wkoszek> I'm looking around and I can't seem to see people doing that.
banisterfiend has joined #ruby
venmx has quit [Ping timeout: 264 seconds]
banisterfiend has quit [Client Quit]
* wkoszek found gem-compile to pre-compile ruby gems; trying it out on 'json' extension
braindead_ has quit [Quit: Page closed]
Dbugger has quit [Remote host closed the connection]
cyberg has quit [Ping timeout: 268 seconds]
cyberg has joined #ruby
eelster has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
crimsontr has joined #ruby
crimsontr has quit [Client Quit]
jready has quit [Remote host closed the connection]
orbyt_ has joined #ruby
venmx has joined #ruby
zapata_ is now known as zapata
darkhanb has quit [Ping timeout: 240 seconds]
houhoulis has quit [Remote host closed the connection]
eelster has joined #ruby
BlopMonster has quit [Ping timeout: 264 seconds]
banisterfiend has joined #ruby
ellcs has quit [Ping timeout: 240 seconds]
tty has joined #ruby
RougeR has quit [Ping timeout: 240 seconds]
banisterfiend has quit [Read error: Connection reset by peer]
amar has joined #ruby
amar has quit [Ping timeout: 240 seconds]
andrewray has quit [Quit: andrewray]
t0xik has joined #ruby
BlopMonster has joined #ruby
RougeR has joined #ruby
raynold has joined #ruby
jrafanie has joined #ruby
clemens3 has quit [Ping timeout: 240 seconds]
clemens3_ has quit [Ping timeout: 276 seconds]
abhi56rai has joined #ruby
abhi56rai has quit [Client Quit]
eelster has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
karapetyan has quit [Remote host closed the connection]
mrBen2k2k2k_ has joined #ruby
jrafanie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jrafanie has joined #ruby
karapetyan has joined #ruby
snickers has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
apeiros has quit [Ping timeout: 265 seconds]
jrafanie has quit [Ping timeout: 260 seconds]
pabs has quit [Ping timeout: 256 seconds]
desperek has quit [Quit: xoxo]
pabs has joined #ruby
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
shinnya has joined #ruby
thebetrayer has quit [Ping timeout: 260 seconds]
gr33n7007h has quit [Quit: WeeChat 2.1]
BlopMonster has quit [Ping timeout: 264 seconds]
gr33n7007h has joined #ruby
gr33n7007h is now known as al2o3-cr
kmurphy4 has quit [Quit: kmurphy4]
kmurphy4 has joined #ruby
kmurphy4 has quit [Client Quit]
nfk has quit [Quit: Try memory.free_dirty_pages=true in about:config]
eelster has joined #ruby
dipnlik has joined #ruby
kmurphy4 has joined #ruby
nemphilis has joined #ruby
nemphilis has quit [Client Quit]
Azure|dc has quit [Ping timeout: 256 seconds]
henoc has joined #ruby
kmurphy4 has quit [Client Quit]
<henoc> hello friends
<henoc> how can I use this project? https://github.com/taskrabbit/makara
akaiiro has joined #ruby
<henoc> sorry for the newbie question
<henoc> I'd try to create rails new MYPROJECT and my database.yml is ok!
mikecmpbll has quit [Quit: inabit. zz.]
<henoc> wheren I try *rails dbconsole* and to insert my password, everything is also ok
<henoc> *when
cdr255 has joined #ruby
<henoc> but I can't see sockets open for balancing my database
<henoc> doe anybody here that can help me with it?
<henoc> does anybody here that can help me with it?
ramfjord has joined #ruby
ramfjord has quit [Ping timeout: 256 seconds]
BlopMonster has joined #ruby
ramfjord has joined #ruby
schleppel has quit [Read error: Connection reset by peer]
venmx has quit [Ping timeout: 260 seconds]
Xiti` has quit [Quit: Xiti`]
Xiti has joined #ruby
<henoc> does anybody here that can help me with it?
j416 has quit [Ping timeout: 245 seconds]
<henoc> thank you in advance :-D
BlopMonster has quit [Ping timeout: 264 seconds]
j416 has joined #ruby
karapetyan has quit []
jrafanie has joined #ruby