jhass changed the topic of #ruby to: Welcome new users migrating from #ruby-lang! || Rules & more: http://ruby-community.com || Ruby 2.2.2; 2.1.6; 2.0.0-p645: https://ruby-lang.org || Paste >3 lines of text on https://gist.github.com || log @ http://irclog.whitequark.org/ruby/
dseitz has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
dimasg has quit [Ping timeout: 272 seconds]
lordkryss has quit [Quit: Connection closed for inactivity]
hahuang65 has joined #ruby
dimasg has joined #ruby
bb010g has joined #ruby
kazoo has joined #ruby
Guest78802 has joined #ruby
Alina-malina has quit [Read error: Connection reset by peer]
dimasg has quit [Ping timeout: 244 seconds]
troulouliou_dev has quit [Remote host closed the connection]
hahuang65 has quit [Ping timeout: 260 seconds]
Ilyas has quit [Read error: Connection reset by peer]
omegamike has joined #ruby
kazoo has quit [Changing host]
kazoo has joined #ruby
<shevy> and more! if I remember correctly, php had about 660 or so
<shevy> php has a lot of spaghetti design
christiandsg has joined #ruby
EllisTAA has joined #ruby
bmurt has quit []
omegamike has quit [Ping timeout: 240 seconds]
sharpmachine has quit [Remote host closed the connection]
tubulife- has joined #ruby
lannonbr has joined #ruby
<diegoviola> shevy: what do you mean spaghetti design?
<shevy> try to follow its design
<shevy> it's a spaghetti
<diegoviola> shevy: do you have any data to prove your point?
<shevy> look at it?
bato has quit [Quit: Page closed]
<diegoviola> shevy: you mean the PHP implementation codebase?
<shevy> I meant php
phutchins has quit [Ping timeout: 244 seconds]
<diegoviola> that's vague
kirun has quit [Quit: Client exiting]
<shevy> it's perfectly complete. If you do not know php, get to learn it: https://secure.php.net/
nolbuk has joined #ruby
<diegoviola> who said I don't know it
<shevy> ah so you know it
<shevy> then why do you ask?
nobitanobi has joined #ruby
tubulife- has quit [Ping timeout: 246 seconds]
<diegoviola> shevy: you said that php code is spaghetti, I asked you what code is spaghetti exactly
<shevy> I did not say that "php code is spaghetti" - I wrote that php has a lot of spaghetti design
<diegoviola> shevy: ok sorry then
<diegoviola> shevy: I realize Ruby is a nicer language
prestorium has joined #ruby
<shevy> I think projects with a head lead often work much better, perl back in the days, python, matz, linux kernel
<shevy> shoes when _why was around
<shevy> I struggled immensely to write an IRC bot in php back when I used php
ts310 has joined #ruby
dimasg has joined #ruby
hahuang65 has joined #ruby
bruno- has quit [Ping timeout: 246 seconds]
<shevy> in ruby the same was easier. I had more help from others but eventually finished with the IRC bot
<shevy> and DanFredriksen is about to embark on a new journey
<diegoviola> shevy: yes I also prefer to write ruby code
<tabakhase> Hi there, so i made some progress in the last 24hours :P, but now im landing with a few ?? that i could use some input on:
alienaut has quit [Remote host closed the connection]
NeverDie has joined #ruby
<tabakhase> does one Gemfile without bundeling? is that "usual"? do i putt a app.rb for this and create a rake taget -- or do i put stuff like the looLogic into my lib/ stuff to?
<tabakhase> if so, can i split/glue those together for a "app" and "analizer" part? (i consume logfile and alayze a little + stdout)
railswebdev has joined #ruby
<shevy> I think bundler introduced those Gemfile files
<tabakhase> im aware that those are very rogth design questions with not a "correct" answer without knowing my full story, but even I dont know it yet :P - im still in that understanding phase of what is even what :P
arooni-mobile has joined #ruby
hahuang65 has quit [Ping timeout: 244 seconds]
alfajor has quit [Quit: Leaving]
<DanFredriksen> shevy: yes :3. Ruby on rails seems to be well founded. Perfect for web applications. But python will also be useful outside the web.
culturelabs has quit []
<shevy> I don't use rails
culturelabs has joined #ruby
<DanFredriksen> you dn't really have to know that much. Basic arithmetics, flow control, print and database queries, and you're set.
<tabakhase> one way gems make it kinda look like for libs only (like a dll would be to c) - but at the same time i have gems that are actually executables, is that just the main class? or some special start rake? or what the deleo for this stuff?
houhoulis has joined #ruby
valetudo has joined #ruby
<shevy> tabakhase I have no idea about bundler and gemfiles, but I have some ideas about gems. the "executables" are just put into the bin/ directory of the respective gem at hand
amitchellbullard has quit []
<apeiros> tabakhase: you get a gem with an executable by adding a `bin` dir, put file in there, chmod it to be executable, and add it in the gemspec
<shevy> the idea is that you could "gem install name", and often enough there will also be a bin/name file, which then provides that commandline invokation for it. like "name --help"
amitchellbullard has joined #ruby
christiandsg has quit [Remote host closed the connection]
nsuke has joined #ruby
<apeiros> spec.executables is the relevant gemspec directive
<apeiros> *spec.executables=
<tabakhase> shevy my "start" is a gem init or so, this put be a bin with "setup" and "console" (one beeing the bundler install call, the other a terminal loading the lib beforehand (irb thingy)
<shevy> ohhh cool, I was unaware of .executables=
<tabakhase> s//this put me a /bin/"
hj2007 has joined #ruby
<nofxx> anyone using gitlab-ci ? all running but runner doesn't run. It's paradoxical.
<nofxx> hehe it's running but doesn't start any job
<shevy> tabakhase I have absolutely no idea what bundler does, I settled for plain old .gemspec
swgillespie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<shevy> it sounds very confusing from reading your description :D
<tabakhase> like my bin/start right now is a "#!/bin/bash bundle exec rake start" and i have a rake for "ruby -I lib app.rb"
<shevy> in the simplest case, the bin/foo script just delegates towards some .rb file in the lib/* subdirectory of that gem
<apeiros> tabakhase: your shebang should be `#!/usr/bin/env ruby`
<tabakhase> and yay its very confusing for me too ;D i feel like i have 3 diffrent "methods" mixed in there or so...
<apeiros> when installing it with rubygems, the shebang will be overridden anyway.
<nofxx> tabakhase, usually you'll see inside bin/file just two lines, the shebang as apeiros said and something like YourLib::CLI.start(ARGV)
<nofxx> or CLI.new .. whatever
<nofxx> or thor
<apeiros> yepp, YourLib::Cli.run(ARGV) is my preferred method
devdazed has quit [Quit: Computer has gone to sleep.]
<apeiros> and you'd also usually have require 'your_lib/cli' in that executable file ;-)
<nofxx> apeiros, yeah.. I use #run everywhere hehe
<nofxx> apeiros, ops, true.. 3 lines
<shevy> <3 #run
<apeiros> nofxx: we should use .call 0:-)
<tabakhase> and me beeing unsure what is the one i actually need does not make it easyer i know ;F
<shevy> in the beginning there was light
<apeiros> tabakhase: IMO forget about bundler and Gemfile for the start
<nofxx> apeiros, shevy one thing I'm using for this .gemspec Gemfile thing is .gemspec on has require, no development_dependency.. let them only on Gemfile. It works better imho
<shevy> then came rubygems, and then came bundler
<nofxx> .gemfile only has depency() no development_dependency()*
<apeiros> they're tools to add later. they make certain things easier (bundler & Gemfile belong together, though current rubygems can do stuff with Gemfile too by now)
<shevy> actually, setup.rb came before rubygems... but nobody seems to use it these days except for me :(
<nofxx> shevy, long time no see
<nofxx> too pythonish =D
<apeiros> shevy: yeah, setup.rb got supplanted by rubygems with 1.9 having it bundled
tejasmanohar has quit [Quit: WeeChat 1.1.1]
user1138 has joined #ruby
<tabakhase> apeiros forgett about bundler? that seemed to be the sweetest of all the parts till now...
<shevy> it's probably also the most complicated one to understand for you right now :P
zrl has quit []
<apeiros> tabakhase: the only thing it offers you over plain rubygems is isolation. that is, if you have multiple versions of a gem installed, ensure that only the version listed in Gemfile.lock is used.
<shevy> you could read its docu though: http://bundler.io/#getting-started
<apeiros> and that's most likely irrelevant at this point.
<nofxx> wait, you should NOT push .lock on gems!
<apeiros> also I'm think rubygems can do that too by now, not sure though.
<nofxx> only the Gemfile, use it for dev gems as I said.. works very fine tabakhase
shock_one has joined #ruby
dimasg has quit [Ping timeout: 264 seconds]
<tabakhase> i can fire a vargrant, install bundler, bundler instal; rake exec start (ruby -I lib app.rb) and its working including "my own lib" (app.rb is my starter, but also doing more management by now that should get moved into "my lib" and i can put others libs in my gemfile and get them installed and such...
zrl has joined #ruby
<nofxx> tabakhase, on .gemspec: only the #add_dependency , on Gemfile: gem 'spec', gem whatever for DEV. And add Gemfile.lock to gitignore.
<banister> apeiros we're both dutch (or similar to dutch like swiss or german or sth, all the same diff (just a bunch of fluffy haired europeans)) i think it's about time we slept
<apeiros> nofxx: there's add_development_dependency
<nofxx> apeiros, imho it works better those on Gemfile, so you can even use git version and whatnot
<nofxx> Gemfile has `gemspec` and dev gems
<tabakhase> i have a gemspec for my lib too, but it has lot of copypasted junk i didnt looked up yet
<nofxx> apeiros, env vars for CI, change some lib version for instance
Ox0dea has joined #ruby
<nofxx> tabakhase, we are > 20min talking about your gemspec and you didn't knew it existed?
mistermocha has joined #ruby
<nofxx> its where you should but the executables that were mentioned
<nofxx> gem.executables config*
<tabakhase> " spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }" --- what shipped by ?i belive? bundler --init
<shevy> you can use a .gemspec file for building a .gem of that project
shock_one has quit [Ping timeout: 272 seconds]
hahuang65 has joined #ruby
Limix has quit [Ping timeout: 240 seconds]
<tabakhase> nofxx and i was well aware of it ;-) - ive just never touched ruby, but im +5y in dev in general
<tabakhase> just need to understand a few things how ruby wants it things organized
<apeiros> tabakhase: guides.rubygems.org
<apeiros> all you need to start. and then move on to bundler to get additional goodies.
Limix has joined #ruby
maletor has joined #ruby
EllisTAA has quit [Quit: EllisTAA]
<tabakhase> ive been to hola.gem yep ;D
hahuang65 has quit [Ping timeout: 265 seconds]
<nofxx> tabakhase, hehe, cool. It's pretty simple... it all comes from the .gemspec (how to make your project a .gem)
mistermocha has quit [Ping timeout: 256 seconds]
<Ox0dea> DanFredriksen: Are you still considering learning Ruby?
dgutierrez1287 has joined #ruby
EllisTAA has joined #ruby
EllisTAA has quit [Client Quit]
<nofxx> tabakhase, check out too the Rakefile for bundler: require 'bundler/gem_tasks' .. You'll get all handy tasks like gem build
<DanFredriksen> Ox0dea: I'll give it a look. Right now I just gotta finish my last php project ever. I'm sick of it.
<tabakhase> skipped over the "ADDING AN EXECUTABLE" part, that then also kinda clears up the "providers" in the bin dir
EllisTAA has joined #ruby
EllisTAA has quit [Client Quit]
<tabakhase> so my bin/irb "could" but not "is" used when someone would install the gem
<Ox0dea> How'd you get a `bin/irb`?
<shevy> he puts one there!
<shevy> tabakhase's irb implementation: loop { 'hello from hase' }
<tabakhase> bin/irb -> bundle exec rake irb -> another bin/console that i actually #!/usr/bin/env ruby; require bundler/setup; require myLib
Hackbinary has joined #ruby
workmad3 has joined #ruby
<Ox0dea> Erm... why doesn't the default `bin/console` suffice?
dgutierrez1287 has quit [Remote host closed the connection]
<tabakhase> EOL is my lib/myLib.rb has a start method that is most of my app, but not the actuall call --- app.rb is myLib.run -- and i add a bin/ for that in my gemspec as executable
centrx has joined #ruby
<tabakhase> or is that app.rb in the root a broken think and should be a main.rb in lib? - or _everything_ packed in the lib and "tell the user to always rake it" / use the run binary / install and use executable
<tabakhase> does that sound like my understanding is going the right way? ;D
hahuang65 has joined #ruby
<Ox0dea> Not entirely. :/
ruby-lang661 has joined #ruby
ruby-prudi has joined #ruby
<tabakhase> just overconfused by the split of gem install to run a executable -- to gems i load that are just libs - and how ill be two at the same time or so...
workmad3 has quit [Ping timeout: 244 seconds]
petems has quit []
petems has joined #ruby
<ruby-prudi> Hello! What are the disadvanteges of turbolinks in rails app?
<Ox0dea> tabakhase: To be clear, you want to distribute an executable that the user can run without having to install your thing?
Limix has quit [Quit: Limix]
spastorino has quit []
lexun has joined #ruby
spastorino has joined #ruby
<tabakhase> Ox0dea i guess not - but i belive i want it there to start it directly from source on my dev or now?
ruby-lang661 has quit [Ping timeout: 246 seconds]
rubie has joined #ruby
hahuang65 has quit [Ping timeout: 252 seconds]
amystephen has joined #ruby
<Ox0dea> tabakhase: Your code goes in lib/, your executable in bin/, and you add it to spec.executables. Your users will be able to run your thing like any other program after `gem install thing`.
leafybasil has quit [Remote host closed the connection]
sharpmachine has joined #ruby
<Ox0dea> As for experimenting with your thing in development, the default `bin/console` is set up to load your thing and drop you into `irb` when you say `bundle console`.
<ruby-prudi> Why turbolinks is not good for client-side view rendering?
<Bish> is there a cool way to have something node.js like in ruby?
<Ox0dea> Bish: Please elaborate.
<Bish> im developing a single page application in angular, and need something for my backend
<tabakhase> so app.rb goes into bin not root, not lib/ --- NetBeans want my "starter" to be in lib, while the lib is there no "run" call is issued (lib/main.rb?) 1/2
<Bish> i love ruby, and would like to use it as backend, i tried sinatra, and ruby from scratch with unicorn, but im not happy with those
<tabakhase> but to actually run it i use the bin/rake task, so its not a real issue thing, just confused 2/2
<Ox0dea> Ah, you've tethered yourself to an IDE, then. :/
<tabakhase> running that inside my vargrant anyway (curl on win7 (puke))
mandarinkin has quit [Quit: Leaving]
rubie has quit [Ping timeout: 265 seconds]
<tabakhase> also for redis and such, so no issue as sayd, its just "diffrent from what i see elsewhere"
<Bish> Ox0dea, i love the way nodejs does it, but i would prefer ruby
havenwood has joined #ruby
orbitalo has quit [Remote host closed the connection]
orbitalo has joined #ruby
dorei has quit []
<tabakhase> ill slim down and reorganize my blob a bit and see where i get, thank you all so far for the help, cleared up some things =) ill be back ;P
maletor has quit [Quit: Computer has gone to sleep.]
amystephen has quit [Quit: amystephen]
dseitz has joined #ruby
fullofcaffeine has joined #ruby
tno has quit [Remote host closed the connection]
eggoez has quit [Ping timeout: 240 seconds]
davedev24 has quit [Ping timeout: 244 seconds]
troulouliou_dev has joined #ruby
hahuang65 has joined #ruby
eggoez has joined #ruby
jottr has joined #ruby
michael_mbp has quit [Excess Flood]
juanpablo_ has joined #ruby
mjuszczak has joined #ruby
hahuang65 has quit [Ping timeout: 246 seconds]
michael_mbp has joined #ruby
Agoldfish has quit [Quit: G'Bye]
texasmade has quit [Ping timeout: 244 seconds]
jottr has quit [Ping timeout: 246 seconds]
decaff has joined #ruby
iateadonut has joined #ruby
juanpablo_ has quit [Ping timeout: 250 seconds]
hahuang65 has joined #ruby
decaff has quit [Ping timeout: 240 seconds]
nullsides has quit [Quit: leaving]
despai has quit [Quit: This computer has gone to sleep]
jbw has quit [Ping timeout: 260 seconds]
jbw has joined #ruby
mjuszczak has quit []
segy has quit [Quit: ZNC - http://znc.in]
ramblinpeck has quit []
ramblinpeck has joined #ruby
hahuang65 has quit [Ping timeout: 250 seconds]
radgeRayden has joined #ruby
nickfausnight has quit []
nickfausnight has joined #ruby
texasmade has joined #ruby
iateadonut has quit [Ping timeout: 265 seconds]
RegulationD has joined #ruby
havenwood has quit [Ping timeout: 252 seconds]
stardiviner has joined #ruby
robbyoconnor has quit [Remote host closed the connection]
hanmac has quit [Ping timeout: 246 seconds]
RegulationD has quit [Ping timeout: 244 seconds]
hanmac has joined #ruby
segy has joined #ruby
troter___ has quit []
robbyoconnor has joined #ruby
troter___ has joined #ruby
Stratege__ has joined #ruby
swgillespie has joined #ruby
Stratege has quit [Ping timeout: 250 seconds]
fullofcaffeine has quit [Remote host closed the connection]
[H]unt3r has quit [Quit: Leaving]
mistermocha has joined #ruby
Westerbly_ has joined #ruby
radgeRayden has quit [Ping timeout: 265 seconds]
atomical has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
chipotle has quit [Excess Flood]
tjohnson has quit [Quit: Connection closed for inactivity]
omegamike has joined #ruby
j4cknewt has joined #ruby
havenwood has joined #ruby
mistermocha has quit [Ping timeout: 244 seconds]
sdothum has joined #ruby
Channel6 has joined #ruby
vdamewood has joined #ruby
omegamike has quit [Ping timeout: 255 seconds]
orbitalo has quit [Remote host closed the connection]
j4cknewt has quit [Ping timeout: 256 seconds]
chipotle has joined #ruby
AdamMeghji has quit []
AdamMeghji has joined #ruby
hahuang65 has joined #ruby
tubulife- has joined #ruby
<bmcginty> Bish: are you talking about asynchronous processing of requests?
havenwood has quit [Read error: Connection reset by peer]
hahuang65 has quit [Ping timeout: 272 seconds]
psy_ has quit [Ping timeout: 240 seconds]
tubulife- has quit [Ping timeout: 272 seconds]
<Ox0dea> Bish: Or is it that you like your functions to look like they've been Hadouken'd?
bmurt has joined #ruby
havenwood has joined #ruby
kies^ has joined #ruby
<tabakhase> is it correct that with the "spec.files = `git ls-files -z`" part my gemball also has stuff like my gitignore with it? (i mean its obvious why it is, but is it supposed to be like that?
<tabakhase> or am i better of with smth like "gem.files = Dir['Rakefile', '{bin,lib,man,test,spec}/**/*', 'README*', 'LICENSE*'] & `git ls-files -z`.split("\0")"
_blizzy_ has quit [Ping timeout: 240 seconds]
cytoskeletor has joined #ruby
<Ox0dea> tabakhase: It's rather easy to argue the case that everything you've committed is something you'd want other potential developers to have access to.
maletor has joined #ruby
jottr has joined #ruby
hahuang65 has joined #ruby
railswebdev has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
havenwood has quit [Read error: Connection reset by peer]
JohnFord has joined #ruby
JohnFord has quit [Client Quit]
tejasmanohar has joined #ruby
havenwood has joined #ruby
iwaffles has quit [Quit: iwaffles]
jottr has quit [Ping timeout: 240 seconds]
willywos has joined #ruby
hahuang65 has quit [Ping timeout: 260 seconds]
texasmade has quit [Ping timeout: 246 seconds]
cytoskeletor has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
railswebdev has joined #ruby
Mendenhall has joined #ruby
diegoviola has quit [Ping timeout: 260 seconds]
symm- has quit [Ping timeout: 264 seconds]
EllisTAA has joined #ruby
diego1 has joined #ruby
hahuang65 has joined #ruby
konsolebox has joined #ruby
<tabakhase> Ox0dea so i rather take all? - it was coplayinging about two bash files then, two of those are fine to be replaced by rakes, but one "dev tool" is not -- another bash script in the root was okay doe --
chinmay_dd has joined #ruby
<tabakhase> so should i have "exe" for the executables i ship and keep "bin" to my actual added bin to develop or so? (mounting it into vagrand with chmods)
christiandsg has joined #ruby
workmad3 has joined #ruby
durazno has joined #ruby
durazno is now known as Kalov
diego1 has quit [Ping timeout: 246 seconds]
<tabakhase> hm, forgett what i sayd, git fooled me
scpike has joined #ruby
yfeldblum has quit [Ping timeout: 244 seconds]
arooni-mobile has quit [Ping timeout: 246 seconds]
PhantomS_ has joined #ruby
shinnya has joined #ruby
yfeldblum has joined #ruby
havenwood has quit [Quit: Textual IRC Client: www.textualapp.com]
Vile` has quit [Ping timeout: 244 seconds]
workmad3 has quit [Ping timeout: 246 seconds]
PhantomSpank has quit [Ping timeout: 255 seconds]
Vile` has joined #ruby
christiandsg has quit [Remote host closed the connection]
lexun has quit [Remote host closed the connection]
cytoskeletor has joined #ruby
yeticry_ has quit [Ping timeout: 264 seconds]
hololeap has quit [Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/]
braincrash has quit [Quit: bye bye]
hahuang65 has quit [Ping timeout: 240 seconds]
yeticry has joined #ruby
icebourg has joined #ruby
kies^ has quit [Quit: baaaaiiiiiiiiiii~]
weemsledeux has joined #ruby
texasmade has joined #ruby
braincrash has joined #ruby
f0ster has quit [Ping timeout: 244 seconds]
eilkahn has quit [Remote host closed the connection]
mistermocha has joined #ruby
kies^ has joined #ruby
hahuang65 has joined #ruby
bronson has joined #ruby
chinmay_dd has quit [Quit: See ya!]
mistermocha has quit [Ping timeout: 260 seconds]
yeticry has quit [Ping timeout: 246 seconds]
fullofcaffeine has joined #ruby
yeticry has joined #ruby
DanFredriksen has quit [Read error: Connection reset by peer]
swgillespie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
j4cknewt has joined #ruby
bronson has quit [Ping timeout: 246 seconds]
webguynow has quit [Ping timeout: 250 seconds]
portiad has joined #ruby
yqt has quit [Ping timeout: 255 seconds]
michael_mbp has quit [Excess Flood]
juanpablo_ has joined #ruby
hahuang65 has quit [Ping timeout: 240 seconds]
portiad has quit [Remote host closed the connection]
maletor has quit [Quit: Computer has gone to sleep.]
yeticry has quit [Ping timeout: 272 seconds]
michael_mbp has joined #ruby
decaff has joined #ruby
yeticry has joined #ruby
juanpablo_ has quit [Ping timeout: 272 seconds]
dgutierrez1287 has joined #ruby
nettoweb has joined #ruby
decaff has quit [Ping timeout: 244 seconds]
willywos_ has joined #ruby
darkf has joined #ruby
centrx has quit [Quit: 'Get out, you and all the people who follow you!' Then he went out from Pharaoh in hot anger.]
lexun has joined #ruby
hahuang65 has joined #ruby
baweaver has joined #ruby
dgutierrez1287 has quit [Ping timeout: 256 seconds]
ecksit has joined #ruby
willywos has quit [Ping timeout: 246 seconds]
nettoweb_ has joined #ruby
JoshGlzBrk has joined #ruby
dopie has joined #ruby
PaulCapestany has quit [Ping timeout: 256 seconds]
hahuang65 has quit [Ping timeout: 244 seconds]
Ox0dea has quit [Read error: No route to host]
michael_mbp has quit [Excess Flood]
nettoweb has quit [Ping timeout: 244 seconds]
prestorium has quit [Ping timeout: 246 seconds]
howdoi_ has joined #ruby
duncannz has joined #ruby
duncannz has quit [Max SendQ exceeded]
duncannz has joined #ruby
duncannz has quit [Max SendQ exceeded]
michael_mbp has joined #ruby
cytoskeletor has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
danielpclark has joined #ruby
chinmay_dd has joined #ruby
gix has quit [Ping timeout: 256 seconds]
willywos_ is now known as willywos
nobitanobi has quit [Remote host closed the connection]
nettoweb_ has quit [Ping timeout: 260 seconds]
nettoweb has joined #ruby
neektza has quit []
neektza has joined #ruby
gix has joined #ruby
psy_ has joined #ruby
hahuang65 has joined #ruby
Mendenhall has quit [Ping timeout: 252 seconds]
omegamike has joined #ruby
ecksit has quit [Quit: Textual IRC Client: www.textualapp.com]
bmurt has quit []
tejasmanohar has left #ruby ["WeeChat 1.1.1"]
nettoweb has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
nettoweb has joined #ruby
xxneolithicxx has quit [Ping timeout: 255 seconds]
hahuang65 has quit [Ping timeout: 255 seconds]
nettoweb has quit [Client Quit]
xxneolithicxx has joined #ruby
xxneolithicxx has quit [Max SendQ exceeded]
omegamike has quit [Ping timeout: 246 seconds]
nettoweb has joined #ruby
nettoweb has quit [Client Quit]
tubulife- has joined #ruby
baweaver has quit [Remote host closed the connection]
rbowlby has joined #ruby
jack_rabbit has joined #ruby
Kalov has quit []
rflot has quit []
tubulife- has quit [Ping timeout: 252 seconds]
rflot has joined #ruby
Averna has quit [Quit: Ex-Chat]
NodeBoy has joined #ruby
<NodeBoy> hi
musl has quit [Quit: WeeChat 1.1.1]
hahuang65 has joined #ruby
[k- has joined #ruby
<NodeBoy> dog>cat. cat are evil unloyal creature
mistermocha has joined #ruby
sevenseacat has joined #ruby
texasmade has quit [Ping timeout: 255 seconds]
hahuang65 has quit [Ping timeout: 272 seconds]
havenwood has joined #ruby
decaff has joined #ruby
arescorpio has quit [Quit: Leaving.]
rbowlby has quit [Remote host closed the connection]
arup_r has joined #ruby
musl has joined #ruby
Rickmasta has joined #ruby
mistermocha has quit [Ping timeout: 240 seconds]
Zedi has joined #ruby
hahuang65 has joined #ruby
Channel6 has quit [Remote host closed the connection]
leat3 has quit [Remote host closed the connection]
leat3 has joined #ruby
Ox0dea has joined #ruby
<Ox0dea> NodeBoy: You begged the question twice there.
<NodeBoy> whats up?
<NodeBoy> i begged a question?
<Ox0dea> Twice.
<NodeBoy> do you mean i asked a question?
<Ox0dea> I do not.
Rickmasta has quit [Ping timeout: 250 seconds]
alfajor has joined #ruby
<NodeBoy> what exactly do you mean by begging a question?
<NodeBoy> what context?
<NodeBoy> what question did i beg?
<[k-> cats > dogs
<NodeBoy> this is too little info for me to work with
Rickmasta has joined #ruby
<Ox0dea> NodeBoy: I'm afraid you don't seem to possess a solid understanding of the phrase.
<NodeBoy> I know what begging a question means
<NodeBoy> I'm asking you what question my behaviour begged
lavros has joined #ruby
<Ox0dea> It's nothing to do with your behavior.
<[k-> I think he meant that you should explain
<NodeBoy> well maybe he should stop being a cryptic faggot and say it
<NodeBoy> i asked him multiple times
<NodeBoy> what context
<Ox0dea> The truth of your comparison relies on the presumption that evil is inherently "lesser", and that loyalty is necessarily "good".
<NodeBoy> or what behaviour
<NodeBoy> well there were a lot of question that could had been begged from that statement
<Ox0dea> No, just the two.
<NodeBoy> one would be "why did you post that here". another would be "what do you mean dogs are better?"
hahuang65 has quit [Ping timeout: 246 seconds]
<NodeBoy> and theres possibly more
<NodeBoy> maybe "who are you?". "why are you here"
<Zedi> Can’t we just snack on some Beggin’ Strips and be nice?
<NodeBoy> but if you leave it up to me to decide, then i cannot satisfy you. i needed more info
<Ox0dea> You really ought to go off and learn what it actually means to beg the question.
<NodeBoy> Ox0dea:you really ought to stop wasting time by not being a cryptic faggot
<NodeBoy> thanks
<bmcginty> Zedi: Nom. Thanks. And no bacon here to speak of.
<NodeBoy> and when i said dogs > cats. i mean i like them better
<NodeBoy> there is nothing better or worse
<NodeBoy> in the animal world. these are just animals lol
<[k-> Begging the Question is a fallacy in which the premises include the claim that the conclusion is true or (directly or indirectly) assume that the conclusion is true.
<NodeBoy> but some animals are better at certain things
<NodeBoy> than others
<bmcginty> NodeBoy: Do you have...erm...a ruby question or comment, or something of the sort?
<NodeBoy> bmcginty: that could be a question my behaviour begged as wellw
<NodeBoy> if you think about it
<tabakhase> run from inside my repo the executable form of my gem thing starts just fine --- but when im "somewhere else" bundler fails discovering the gemfile - something is the wrong way around...
<NodeBoy> i just dont like when idiots try to act smart but leave the main piece of their question/statement out
<Zedi> I’ve been here less than 10 minutes, and I’m certainly wondering why I wouldn’t leave.
<[k-> petitio principii 
<NodeBoy> just to work around and use bigger words/better phrases
<Zedi> Just to fill in you guys who like sniping at each other.
<NodeBoy> dont ask me stupid questions then
<NodeBoy> thank you
<[k-> Ox0dea is a fun and intelligent guy.
<Ox0dea> Am not!
<NodeBoy> well maybe he should show that side
<NodeBoy> first impressions
<[k-> You are the one who refused to look up the question.
<NodeBoy> the begging the question thing again?
<[k-> You just blow up the matter
<NodeBoy> hes the idiot who was asking cryptic questions
<NodeBoy> theres too many questions that my behaviour begged
<NodeBoy> to select from
<Zedi> Don’t beg the question, send it a message.
<NodeBoy> so you had to pick one
<NodeBoy> date the question
<NodeBoy> marry the question
<NodeBoy> have kids with the question
<[k-> Begging the question means assuming the conclusion of an argument—a type of circular reasoning. This is an informal fallacy where someone includes the conclusion they are attempting to prove in the initial premise of their argument
<NodeBoy> make little semi colons and colons
<Ox0dea> NodeBoy: Please read [k-'s kindly attempts to educate you.
<NodeBoy> Ox0dea: please shoot yourself
<NodeBoy> thank you
<Nilium> That seems uncalled for.
<Ox0dea> I don't mind.
<NodeBoy> okay
<NodeBoy> good
fullofcaffeine has quit [Remote host closed the connection]
<NodeBoy> cause i'm totally evading a Kline right now
<NodeBoy> haha
<NodeBoy> oh shit
NodeBoy has left #ruby [#ruby]
<[k-> Rule number 2.1 and 2.2:
<Nilium> Is that how script kiddies make themselves feel important these days? O_o
<[k-> Be polite, considerate and inclusive. Treat others with respect.¶Before you ask a question, make sure you did your due diligence
nolbuk has quit [Remote host closed the connection]
<Ox0dea> [k-: Sick pilcrow. :)
<[k-> I was expecting a newline
<Ox0dea> IRC would not have obliged you.
<Nilium> Should've used the § symbol
<Nilium> I DEMAND YOU READ THE RULES, §2.1 AND §2.2, OR BE JUDGED.
fullofcaffeine has joined #ruby
<[k-> I unexpectedly do not have the section sign on my keyboard
<[k-> meh
<Nilium> If you're on OS X, you can use Opt+6
jottr has joined #ruby
<Nilium> Assuming American layout anyway, not sure how it gets reordered for other layouts.
<[k-> I am on android
<Nilium> Should be available on the symbols keyboard. I remember finding it at one point.
keen__________31 has joined #ruby
<[k-> google keyboard?
* Ox0dea knew [k- used the stock keyboard without having to ask. :P
<[k-> I'm not using the stock keyboard
keen__________30 has quit [Ping timeout: 240 seconds]
<[k-> asus keyboard looked horrible
sdothum has quit [Quit: ZNC - 1.6.0 - http://znc.in]
<Ox0dea> Oh, right. I just consider Google Keyboard to be "stock".
<[k-> I'm not on the nexus so not stock :p
jottr has quit [Ping timeout: 246 seconds]
charliesome has quit [Quit: zzz]
<bmcginty> I'm looking at RubyVM, or trying to, to get a feel for Ruby's internals. RubyVM.methods isn't showing me anything that Object doesn't have, and I'm slightly confused as to why.
<Ox0dea> >> RubyVM.methods - Module.instance_methods # bmcginty
<ruboto> Ox0dea # => [:stat, :allocate, :superclass] (https://eval.in/405911)
<tabakhase> magical Dir.chdir File.expand_path('../..', __FILE__) fixed my gemFile lookup, but now i also get a "fatal: Not a git repository (or any of the parent directories): .git" thrown and have no idea where from & what for :P
johnMcLain has joined #ruby
<Ox0dea> >> RubyVM.constants # This is more interesting.
<ruboto> Ox0dea # => [:Env, :OPTS, :INSTRUCTION_NAMES, :DEFAULT_PARAMS, :InstructionSequence] (https://eval.in/405912)
hj2007 has quit [Read error: Connection reset by peer]
<bmcginty> Ox0dea: Thanks.
eggoez has quit [Ping timeout: 252 seconds]
<Ox0dea> Sure thing.
<[k-> didn't you teach me methods(false)
<tabakhase> git error only shows up when using that "global binary"...
<Ox0dea> I might've done.
<tabakhase> and there is no git in this (appart from a ignore and attributes)
workmad3 has joined #ruby
martinium has quit [Quit: Leaving]
<Ox0dea> tabakhase: Perhaps NetBeans is mucking about in places it oughtn't?
<tabakhase> na, im inside my vagrant, NB is out of busssines there...
fullofcaffeine has quit [Remote host closed the connection]
<Ox0dea> I think you must be inadvertently fighting with Bundler. :P
<[k-> isn't stat, allocate and superclass from Class
<Ox0dea> stat isn't.
<Ox0dea> You're right that I should've just used `methods(false)`.
maletor has joined #ruby
railswebdev has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<Ox0dea> Method subtraction is something of a bad habit of mine.
MatthewsFace has joined #ruby
<[k-> >> RubyVM.methods false
<Ox0dea> It's more versatile, so I tend to always reach for it even when it isn't optimal. :/
<ruboto> [k- # => [:stat] (https://eval.in/405913)
<[k-> :o
Hackbinary has quit [Remote host closed the connection]
eggoez has joined #ruby
<tabakhase> cd libsrc; $ GlobalBin -> testoutput; cd /somwehere/else; $ GlobalBin -> **git error message** testoutput - not making any sense at all :F
<Ox0dea> >> RubyVM.stat # What the hell are these magic numbers?
<ruboto> Ox0dea # => {:global_method_state=>133, :global_constant_state=>842, :class_serial=>5708} (https://eval.in/405914)
<Ox0dea> The bytecode interpreter is a state machine?!
weemsledeux has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
leat3 has quit [Ping timeout: 246 seconds]
<[k-> please wait while I digest the information on Wikipedia
workmad3 has quit [Ping timeout: 244 seconds]
Rickmasta has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Soda has quit [Remote host closed the connection]
<[k-> I failed :/
mrsolow has quit []
rubie has joined #ruby
<tabakhase> when you find a thing, and hoped it better where not like this... https://github.com/bundler/bundler/issues/2039#issuecomment-8959585
mrsolow has joined #ruby
<tabakhase> "The error message is not coming from bundler but from git itself. The errors are coming from git commands executing inside of gemspecs. Almost always the command is git ls-files."
existensil has quit [Quit: WeeChat 0.4.2]
<Ox0dea> tabakhase: How come you're trying to build your gem outside of its root directory?
fullofcaffeine has joined #ruby
<tabakhase> so my neat "spec.files = `git ls-files -z`" on the input -- is *** me on the other end of the gem..
lala has quit [Quit: Connection closed for inactivity]
<ElSif> neat does not always mean good...
<tabakhase> Ox0dea seems bundler/rake does some kind of micro-build every time the executable is used
<ElSif> i didnt realize that was being done by people and my immediate reaction is 'why'?
<tabakhase> spec.files = `git ls-files -z` i wonder if that works as a spec.files = `if [ -d .git ]; then; git ls-files -z; else echo ""; fi` or so...
rubie has quit [Ping timeout: 265 seconds]
lannonbr has quit [Quit: WeeChat 1.2]
<Ox0dea> tabakhase: Oh, dear.
<tabakhase> spec.files = `if [ -d .git ]; then git ls-files -z; else echo ""; fi`.split("\x0").reject { |f| f.match(%r{^(features)/}) }
<Ox0dea> Yikes.
<tabakhase> does as expected
lxsameer has joined #ruby
<ElSif> lol cause why write it in ruby when you could write it in bash inside ruby?
<Ox0dea> ^
<Ox0dea> spec.files = `...` if File.exist?('.git')
<Ox0dea> Still gross, though.
decaff has quit [Remote host closed the connection]
hahuang65 has joined #ruby
existensil has joined #ruby
MatthewsFace has quit [Ping timeout: 244 seconds]
MatthewsFace has joined #ruby
sharpmachine has quit [Remote host closed the connection]
<tabakhase> kinda seeing what it does its super broken there anyway, but thats another storry...
existensil has quit [Client Quit]
<tabakhase> that Dir.chdir File.expand_path('../..', __FILE__) is still bumping me doe... it "fixes" my binarys as in now they find there gemfiles and such
kies^ has quit [Ping timeout: 246 seconds]
<tabakhase> but if thats a litteral chdir, that "global install, call anywhere, write /read files in current directory" kinda fails away
hahuang65 has quit [Ping timeout: 246 seconds]
riotjones has joined #ruby
<Ox0dea> tabakhase: Have you experimented with actually installing your gem?
<tabakhase> yep thats what im doing right now and how those issues showed up =)
Rickmasta has joined #ruby
<Ox0dea> Well, how come you need to install it from an unrelated directory?
<Ox0dea> tabakhase: `git ls-files` shouldn't fail as long as it's being run from somewhere within the directory in which you're developing your gem.
riotjones has quit [Ping timeout: 265 seconds]
<tabakhase> hm? missunderstanding... i mean the install puts it in your bin right, so you can call it from anywhere afterwards
fullofcaffeine has quit [Remote host closed the connection]
j4cknewt has quit [Remote host closed the connection]
<Ox0dea> Yes, as long as you've properly constructed your .gemspec.
juanpablo_ has joined #ruby
<tabakhase> now saying i tell it "logfile ./log.log" and my startScript actually does the chdir, the log file will end up inside the users gem archive -- and "not where he is right now" as expected
icebourg has quit []
armyriad has joined #ruby
ScriptGeek has quit [Quit: Leaving.]
JoshGlzBrk has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Rickmasta has quit [Read error: Connection reset by peer]
<Ox0dea> tabakhase: So you're doing the chdir simply to appease `require`?
Rickmasta has joined #ruby
juanpablo_ has quit [Ping timeout: 256 seconds]
<tabakhase> no, my requires are fine (what is as i guess thanks to the $LOAD_PATH magic to add lib/ in my gemspec)
<tabakhase> im doing it for my Gemfile to satisfy bundlers Bundler.setup
alfajor has quit [Quit: Leaving]
rbowlby has joined #ruby
mistermocha has joined #ruby
<tabakhase> hm or not...
<tabakhase> seems there is more not working as expected then
existensil has joined #ruby
mistermocha has quit [Ping timeout: 240 seconds]
Rickmast_ has joined #ruby
_blizzy_ has joined #ruby
Alina-malina has joined #ruby
Rickmasta has quit [Ping timeout: 244 seconds]
emdub_ has quit [Ping timeout: 240 seconds]
hahuang65 has joined #ruby
nolbuk has joined #ruby
Rickmasta has joined #ruby
lala has joined #ruby
tmtwd has quit [Ping timeout: 264 seconds]
_blizzy_ has quit [Ping timeout: 244 seconds]
Rickmast_ has quit [Ping timeout: 244 seconds]
EllisTAA has quit [Quit: EllisTAA]
<tabakhase> hmpf fustrating... some parts it seems to remove a lot of work, and on others it adds a bunch of wtf´s ;D
ruby-prudi has quit [Ping timeout: 246 seconds]
emdub has joined #ruby
EllisTAA has joined #ruby
EllisTAA has quit [Client Quit]
EllisTAA has joined #ruby
lexun has quit [Remote host closed the connection]
<bnagy> why are you even depending on git, I don't get it
PhantomS_ has quit [Remote host closed the connection]
<bnagy> if you don't want to use spec.files properly just Dir['**/*'].reject {|i| i.include? 'git'} or something
omegamike has joined #ruby
yardenbar has joined #ruby
willywos has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
linuxboytoo has quit [Remote host closed the connection]
Alayde has quit [Ping timeout: 240 seconds]
<bnagy> I'm also kind of o_0 at chdir and at messing with $LOAD_PATH
hashrocket has quit [Quit: Connection closed for inactivity]
linuxboytoo has joined #ruby
<bnagy> obviously my gems are too old fashioned
j4cknewt has joined #ruby
Rickmast_ has joined #ruby
omegamike has quit [Ping timeout: 252 seconds]
baweaver has joined #ruby
goldfax has joined #ruby
portiad has joined #ruby
Rickmasta has quit [Ping timeout: 252 seconds]
linuxboytoo has quit [Ping timeout: 244 seconds]
lexun has joined #ruby
portiad has left #ruby [#ruby]
<tabakhase> im just getting mad when after an hour i still dont understand whats going on there -with the chance 99% me not even doing it wrong, but trying the wrong thing... -- like my bundler stuff is working perfectly todo a simple bundle install on the GIT tree - but at the same time it breaks everything when poping to "an actual gem" ;D
hahuang65 has quit [Ping timeout: 260 seconds]
<tabakhase> not rly important for now, its a oneman thing that if at all will go on the hub and be used by 4 other people also in a devEnv running my vagrant box with my own provisioner anyway
tubulife- has joined #ruby
kahuna_ has joined #ruby
<tabakhase> BUT you know... BUT... if i learn fancy new stuff, than pls fancy...
baweaver has quit [Ping timeout: 240 seconds]
djbkd has quit [Remote host closed the connection]
havenwood has quit [Ping timeout: 265 seconds]
RegulationD has joined #ruby
djbkd has joined #ruby
linuxboytoo has joined #ruby
lessless has joined #ruby
dseitz has quit [Quit: Textual IRC Client: www.textualapp.com]
tubulife- has quit [Ping timeout: 244 seconds]
ss_much has quit []
ss_much has joined #ruby
RegulationD has quit [Ping timeout: 244 seconds]
g0rx_ has quit []
g0rx_ has joined #ruby
vcoinminer has quit [Ping timeout: 256 seconds]
antlong has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
pepperbreath has left #ruby [#ruby]
vcoinminer has joined #ruby
amclain has quit [Quit: Leaving]
antlong has joined #ruby
hahuang65 has joined #ruby
linuxboytoo has quit [Remote host closed the connection]
decaff has joined #ruby
linuxboytoo has joined #ruby
decaff has quit [Read error: Connection reset by peer]
decaff has joined #ruby
safeforge has joined #ruby
decaff_ has joined #ruby
decaff has quit [Read error: Connection reset by peer]
hahuang65 has quit [Ping timeout: 260 seconds]
linuxboytoo has quit [Ping timeout: 244 seconds]
decaff_ has quit [Read error: Connection reset by peer]
decaff has joined #ruby
riotjones has joined #ruby
decaff has quit [Read error: Connection reset by peer]
decaff has joined #ruby
decaff has quit [Read error: Connection reset by peer]
decaff has joined #ruby
fullofcaffeine has joined #ruby
riotjones has quit [Ping timeout: 240 seconds]
tmtwd has joined #ruby
tmtwd has quit [Read error: Connection reset by peer]
decaff has quit [Read error: Connection reset by peer]
decaff has joined #ruby
elia has joined #ruby
decaff has quit [Read error: Connection reset by peer]
decaff has joined #ruby
zemmihates has quit []
decaff has quit [Read error: Connection reset by peer]
zemmihates has joined #ruby
decaff has joined #ruby
tmtwd has joined #ruby
decaff has quit [Read error: Connection reset by peer]
decaff_ has joined #ruby
decaff_ has quit [Read error: Connection reset by peer]
dgutierrez1287 has joined #ruby
decaff has joined #ruby
maletor has quit [Quit: Computer has gone to sleep.]
mistermocha has joined #ruby
decaff has quit [Read error: Connection reset by peer]
ts310 has quit [Ping timeout: 255 seconds]
decaff has joined #ruby
[k- has quit [Ping timeout: 250 seconds]
tmtwd has quit [Ping timeout: 246 seconds]
decaff has quit [Read error: Connection reset by peer]
elia has quit [Quit: Computer has gone to sleep.]
decaff has joined #ruby
dgutierrez1287 has quit [Ping timeout: 246 seconds]
Mendenhall has joined #ruby
decaff has quit [Read error: Connection reset by peer]
decaff has joined #ruby
shpoont has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
decaff has quit [Read error: Connection reset by peer]
mistermocha has quit [Ping timeout: 264 seconds]
decaff has joined #ruby
hahuang65 has joined #ruby
EllisTAA has quit [Quit: EllisTAA]
bigkevmcd has quit [Quit: Outta here...]
decaff has quit [Read error: Connection reset by peer]
decaff_ has joined #ruby
usershell has joined #ruby
decaff_ has quit [Read error: Connection reset by peer]
decaff has joined #ruby
rbowlby has quit [Remote host closed the connection]
EllisTAA has joined #ruby
workmad3 has joined #ruby
decaff has quit [Read error: Connection reset by peer]
malconis has joined #ruby
elia has joined #ruby
j4cknewt has quit [Remote host closed the connection]
rbowlby has joined #ruby
jottr has joined #ruby
hahuang65 has quit [Ping timeout: 246 seconds]
decaff has joined #ruby
decaff has quit [Read error: Connection reset by peer]
heidar has quit []
heidar has joined #ruby
decaff has joined #ruby
workmad3 has quit [Ping timeout: 265 seconds]
hahuang65 has joined #ruby
last_staff has joined #ruby
chinmay_dd has quit [Ping timeout: 265 seconds]
last_staff has quit [Client Quit]
safeforge has quit [Remote host closed the connection]
decaff has quit [Read error: Connection reset by peer]
decaff_ has joined #ruby
jottr has quit [Ping timeout: 250 seconds]
Westerbly__ has joined #ruby
decaff_ has quit [Read error: Connection reset by peer]
malconis has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
_blizzy_ has joined #ruby
safeforge has joined #ruby
decaff has joined #ruby
Qladstone has joined #ruby
decaff has quit [Read error: Connection reset by peer]
antlong has quit [Quit: Textual IRC Client: www.textualapp.com]
decaff has joined #ruby
lexun_ has joined #ruby
Westerbly_ has quit [Ping timeout: 265 seconds]
<tabakhase> i belive i figured it out...
decaff has quit [Read error: Connection reset by peer]
agilenav has joined #ruby
decaff has joined #ruby
_blizzy_ has quit [Read error: Connection reset by peer]
lexun has quit [Ping timeout: 265 seconds]
<tabakhase> bundle install - to setup DEV, gem build *.gemspec - to build gem OR bundle exec rake install - to gem&install
decaff has quit [Read error: Connection reset by peer]
fullofcaffeine has quit [Remote host closed the connection]
decaff_ has joined #ruby
j4cknewt has joined #ruby
_blizzy_ has joined #ruby
decaff_ has quit [Read error: Connection reset by peer]
user1138 has quit [Ping timeout: 255 seconds]
Rollabunna has joined #ruby
decaff has joined #ruby
hahuang65 has quit [Ping timeout: 240 seconds]
lexun_ has quit [Remote host closed the connection]
maletor has joined #ruby
MatthewsFace has quit [Remote host closed the connection]
nolbuk has quit [Ping timeout: 260 seconds]
decaff has quit [Read error: Connection reset by peer]
decaff_ has joined #ruby
decaff_ has quit [Read error: Connection reset by peer]
lexun has joined #ruby
decaff has joined #ruby
fullofcaffeine has joined #ruby
Jackneill has joined #ruby
decaff_ has joined #ruby
decaff has quit [Read error: Connection reset by peer]
decaff_ has quit [Read error: Connection reset by peer]
decaff has joined #ruby
baweaver has joined #ruby
decaff has quit [Read error: Connection reset by peer]
fullofcaffeine has quit [Ping timeout: 252 seconds]
decaff has joined #ruby
juanpablo_ has joined #ruby
decaff has quit [Read error: Connection reset by peer]
yfeldblum has quit [Read error: Connection reset by peer]
decaff has joined #ruby
yfeldblum has joined #ruby
decaff has quit [Read error: Connection reset by peer]
Ilyas has joined #ruby
decaff has joined #ruby
juanpablo_ has quit [Ping timeout: 244 seconds]
qiukun has joined #ruby
yfeldblu_ has joined #ruby
cb_ has joined #ruby
Ox0dea has quit [Read error: No route to host]
decaff has quit [Read error: Connection reset by peer]
decaff has joined #ruby
pepperbreath has joined #ruby
yfeldblum has quit [Ping timeout: 252 seconds]
decaff has quit [Read error: Connection reset by peer]
hahuang65 has joined #ruby
decaff has joined #ruby
yfeldblum has joined #ruby
agilenav has quit []
howdoi_ has quit [Quit: Connection closed for inactivity]
decaff has quit [Read error: Connection reset by peer]
decaff_ has joined #ruby
GriffinHeart has joined #ruby
Rickmast_ has quit [Ping timeout: 255 seconds]
decaff_ has quit [Read error: Connection reset by peer]
yfeldblu_ has quit [Ping timeout: 250 seconds]
baweaver has quit [Remote host closed the connection]
qiukun has quit [Ping timeout: 250 seconds]
decaff has joined #ruby
decaff has quit [Read error: Connection reset by peer]
decaff_ has joined #ruby
Rickmasta has joined #ruby
decaff_ has quit [Read error: Connection reset by peer]
yeticry has quit [Ping timeout: 256 seconds]
Rickmast_ has joined #ruby
yeticry has joined #ruby
decaff has joined #ruby
mark06 has joined #ruby
hahuang65 has quit [Ping timeout: 244 seconds]
decaff_ has joined #ruby
railswebdev has joined #ruby
decaff has quit [Read error: Connection reset by peer]
elia has quit [Read error: Connection reset by peer]
elia has joined #ruby
ts310 has joined #ruby
Rickmasta has quit [Ping timeout: 272 seconds]
decaff_ has quit [Read error: Connection reset by peer]
decaff has joined #ruby
maletor has quit [Quit: Computer has gone to sleep.]
slydrive has joined #ruby
safeforge has quit [Remote host closed the connection]
slydrive has quit [Client Quit]
stardiviner has quit [Ping timeout: 272 seconds]
decaff_ has joined #ruby
leat3 has joined #ruby
eGGsha has joined #ruby
stardiviner has joined #ruby
decaff_ has quit [Read error: Connection reset by peer]
ts310 has quit [Ping timeout: 260 seconds]
decaff_ has joined #ruby
decaff has quit [Ping timeout: 260 seconds]
lexun has quit [Remote host closed the connection]
fgo has joined #ruby
decaff has joined #ruby
Kalov has joined #ruby
nobitanobi has joined #ruby
decaff_ has quit [Read error: Connection reset by peer]
dlousy has joined #ruby
acke has joined #ruby
decaff has quit [Read error: Connection reset by peer]
tvw has joined #ruby
_ht has joined #ruby
decaff has joined #ruby
dlousy has quit [Client Quit]
stardiviner has quit [Ping timeout: 240 seconds]
PhantomSpank has joined #ruby
omegamike has joined #ruby
GriffinHeart has quit [Ping timeout: 255 seconds]
decaff has quit [Read error: Connection reset by peer]
decaff has joined #ruby
ElSif has quit [Ping timeout: 244 seconds]
decaff has quit [Read error: Connection reset by peer]
safeforge has joined #ruby
decaff has joined #ruby
ElSif has joined #ruby
decaff has quit [Read error: Connection reset by peer]
eGGsha has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
PhantomSpank has quit [Ping timeout: 244 seconds]
hahuang65 has joined #ruby
decaff has joined #ruby
GriffinHeart has joined #ruby
decaff_ has joined #ruby
omegamike has quit [Ping timeout: 244 seconds]
decaff has quit [Read error: Connection reset by peer]
qiukun has joined #ruby
<qiukun> how would you write a NxN loop in ruby?
<qiukun> i mean for i <= 1..n for j <= j..n
lexun has joined #ruby
tubulife- has joined #ruby
decaff_ has quit [Read error: Connection reset by peer]
decaff has joined #ruby
decaff has quit [Read error: Connection reset by peer]
hahuang65 has quit [Ping timeout: 265 seconds]
<bnagy> each over ranges
decaff has joined #ruby
<bnagy> or upto, if you prefer
wildroman2 has joined #ruby
lexun has quit [Remote host closed the connection]
decaff has quit [Read error: Connection reset by peer]
<qiukun> after swift and ruby opposite on range notation
decaff has joined #ruby
Mendenhall has quit [Ping timeout: 246 seconds]
<qiukun> i wish all the langs could accept [a, b) things
tubulife- has quit [Ping timeout: 244 seconds]
EllisTAA has quit [Quit: EllisTAA]
decaff has quit [Read error: Connection reset by peer]
decaff has joined #ruby
lessless has quit [Ping timeout: 240 seconds]
Mendenhall has joined #ruby
decaff has quit [Read error: Connection reset by peer]
decaff has joined #ruby
Rickmast_ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
bradleyprice has quit [Remote host closed the connection]
decaff has quit [Read error: Connection reset by peer]
decaff has joined #ruby
krz has joined #ruby
decaff has quit [Read error: Connection reset by peer]
lexun has joined #ruby
nobitanobi has quit [Remote host closed the connection]
decaff has joined #ruby
hahuang65 has joined #ruby
decaff has quit [Read error: Connection reset by peer]
decaff_ has joined #ruby
atmosx has joined #ruby
decaff_ has quit [Read error: Connection reset by peer]
decaff has joined #ruby
j4cknewt has quit [Remote host closed the connection]
fluffet has left #ruby [#ruby]
decaff has quit [Read error: Connection reset by peer]
decaff_ has joined #ruby
hahuang65 has quit [Ping timeout: 246 seconds]
stardiviner has joined #ruby
decaff_ has quit [Read error: Connection reset by peer]
decaff has joined #ruby
duncannz has joined #ruby
codecop has joined #ruby
decaff has quit [Read error: Connection reset by peer]
duncannz has quit [Max SendQ exceeded]
decaff has joined #ruby
duncannz has joined #ruby
hahuang65 has joined #ruby
duncannz has quit [Max SendQ exceeded]
duncannz has joined #ruby
duncannz has quit [Max SendQ exceeded]
decaff has quit [Read error: Connection reset by peer]
atmosx_ has joined #ruby
decaff has joined #ruby
duncannz has joined #ruby
duncannz has quit [Max SendQ exceeded]
qiukun has quit [Quit: qiukun]
duncannz has joined #ruby
decaff has quit [Read error: Connection reset by peer]
decaff has joined #ruby
GriffinHeart has quit [Ping timeout: 246 seconds]
decaff has quit [Read error: Connection reset by peer]
decaff has joined #ruby
atmosx has quit [Ping timeout: 250 seconds]
hahuang65 has quit [Ping timeout: 244 seconds]
kahuna_ has quit [Quit: Lost terminal]
decaff has quit [Read error: Connection reset by peer]
dfockler has joined #ruby
decaff has joined #ruby
bahar has quit [Ping timeout: 264 seconds]
[k- has joined #ruby
SCHAAP137 has joined #ruby
allomov has joined #ruby
decaff has quit [Read error: Connection reset by peer]
decaff has joined #ruby
Averna has joined #ruby
NeverDie has quit [Quit: I'm off to sleep. ZZZzzz…]
decaff_ has joined #ruby
k3asd` has joined #ruby
_blizzy_ has quit [Ping timeout: 265 seconds]
decaff has quit [Read error: Connection reset by peer]
dfockler has quit [Ping timeout: 265 seconds]
atmosx_ has quit [Quit: Lost in trance]
decaff has joined #ruby
texasmade has joined #ruby
hahuang65 has joined #ruby
vimz has quit [Ping timeout: 264 seconds]
decaff has quit [Read error: Connection reset by peer]
decaff has joined #ruby
djbkd has quit [Remote host closed the connection]
decaff_ has quit [Ping timeout: 244 seconds]
freeUmo has joined #ruby
eGGsha has joined #ruby
polyrob has quit [Ping timeout: 256 seconds]
GarethAdams has quit [Ping timeout: 256 seconds]
decaff has quit [Read error: Connection reset by peer]
decaff has joined #ruby
decaff has quit [Remote host closed the connection]
hahuang65 has quit [Ping timeout: 260 seconds]
decaff has joined #ruby
rbowlby has quit [Remote host closed the connection]
djbkd has joined #ruby
eGGsha has quit [Client Quit]
arup_r has quit [Ping timeout: 252 seconds]
decaff has quit [Read error: Connection reset by peer]
decaff_ has joined #ruby
polyrob has joined #ruby
peteykun has joined #ruby
peteykun has left #ruby [#ruby]
GarethAdams has joined #ruby
decaff_ has quit [Read error: Connection reset by peer]
decaff has joined #ruby
workmad3 has joined #ruby
decaff has quit [Remote host closed the connection]
sinkensabe has joined #ruby
decaff has joined #ruby
decaff has quit [Read error: Connection reset by peer]
decaff has joined #ruby
mistermocha has joined #ruby
fgo has quit [Ping timeout: 244 seconds]
workmad3 has quit [Ping timeout: 246 seconds]
decaff has quit [Read error: Connection reset by peer]
decaff has joined #ruby
eGGsha has joined #ruby
fgo has joined #ruby
rubie has joined #ruby
decaff has quit [Read error: Connection reset by peer]
decaff_ has joined #ruby
djbkd has quit [Remote host closed the connection]
hahuang65 has joined #ruby
decaff_ has quit [Read error: Connection reset by peer]
decaff has joined #ruby
mistermocha has quit [Ping timeout: 244 seconds]
decaff_ has joined #ruby
Trynemjoel has quit [Ping timeout: 256 seconds]
decaff has quit [Read error: Connection reset by peer]
rubie has quit [Ping timeout: 265 seconds]
xkickflip has joined #ruby
Trynemjoel has joined #ruby
TheHodge has joined #ruby
ScriptGeek has joined #ruby
jottr has joined #ruby
decaff_ has quit [Ping timeout: 244 seconds]
hahuang65 has quit [Ping timeout: 240 seconds]
yaw has joined #ruby
Qladstone has quit [Read error: Connection reset by peer]
jottr has quit [Ping timeout: 252 seconds]
Qladstone has joined #ruby
Qladstone has quit [Client Quit]
PhantomSpank has joined #ruby
stopbyte has quit [Ping timeout: 244 seconds]
stopbyte has joined #ruby
GriffinHeart has joined #ruby
sarkyniin has joined #ruby
Mendenhall has quit [Ping timeout: 244 seconds]
dgutierrez1287 has joined #ruby
allomov has quit [Remote host closed the connection]
allomov has joined #ruby
juanpablo_ has joined #ruby
Mon_Ouie has joined #ruby
acke has quit [Remote host closed the connection]
acke has joined #ruby
timonv has joined #ruby
dgutierrez1287 has quit [Ping timeout: 260 seconds]
acke has quit [Remote host closed the connection]
j4cknewt has joined #ruby
Trynemjoel has quit [Ping timeout: 240 seconds]
juanpablo_ has quit [Ping timeout: 265 seconds]
elia has quit [Quit: Computer has gone to sleep.]
Vile` has quit [Ping timeout: 260 seconds]
allomov has quit [Remote host closed the connection]
eGGsha has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
blackmes1 has joined #ruby
<[k-> i found the section sign on google keyboard!
Vile` has joined #ruby
j4cknewt has quit [Ping timeout: 246 seconds]
fgo has quit [Ping timeout: 260 seconds]
Trynemjoel has joined #ruby
k3asd` has quit [Ping timeout: 244 seconds]
Muhannad has joined #ruby
dotix has joined #ruby
hahuang65 has joined #ruby
IanV0rn2341 has joined #ruby
hololeap has joined #ruby
djbkd has joined #ruby
Trynemjoel has quit [Ping timeout: 240 seconds]
sarkyniin has quit [Ping timeout: 244 seconds]
Trynemjoel has joined #ruby
craysiii has quit [Quit: craysiii]
djbkd has quit [Ping timeout: 244 seconds]
hahuang65 has quit [Ping timeout: 244 seconds]
antgel has joined #ruby
jschmid has joined #ruby
ht__ has joined #ruby
eGGsha has joined #ruby
hahuang65 has joined #ruby
blackmesa has joined #ruby
blackmes1 has quit [Ping timeout: 250 seconds]
hahuang65 has quit [Ping timeout: 264 seconds]
omegamike has joined #ruby
railswebdev has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
bronson has joined #ruby
lordkryss has joined #ruby
troulouliou_dev has quit [Quit: Leaving]
railswebdev has joined #ruby
svdb64 has joined #ruby
svdb64 has quit [Changing host]
svdb64 has joined #ruby
bronson has quit [Ping timeout: 244 seconds]
stamina has joined #ruby
omegamike has quit [Ping timeout: 240 seconds]
IanV0rn2341 has quit []
tubulife- has joined #ruby
acke has joined #ruby
Lildirt has quit [Remote host closed the connection]
usershell has quit [Remote host closed the connection]
nichtdiebohne has joined #ruby
tubulife- has quit [Ping timeout: 244 seconds]
safeforge has quit [Remote host closed the connection]
dotix has quit [Quit: Leaving]
dotix has joined #ruby
mistermocha has joined #ruby
Zedi has quit [Read error: Connection reset by peer]
Lildirt has joined #ruby
Zedi has joined #ruby
dotix has quit [Quit: Leaving]
apfeluser has joined #ruby
mistermocha has quit [Ping timeout: 244 seconds]
jottr has joined #ruby
hahuang65 has joined #ruby
marr has joined #ruby
banister has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
lkba_ has joined #ruby
cornerma1 has joined #ruby
nofxx has quit [Ping timeout: 244 seconds]
lkba has quit [Ping timeout: 240 seconds]
lexun has quit []
jottr has quit [Ping timeout: 244 seconds]
sevenseacat has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
hahuang65 has quit [Ping timeout: 272 seconds]
cornerman has quit [Ping timeout: 272 seconds]
cornerma1 is now known as cornerman
yaw has quit [Ping timeout: 264 seconds]
Blaguvest has quit []
Kilo`byte has quit [Ping timeout: 264 seconds]
GriffinHeart has quit [Remote host closed the connection]
RegulationD has joined #ruby
banister has joined #ruby
acke has quit [Remote host closed the connection]
fgo has joined #ruby
danielpclark has quit [Ping timeout: 244 seconds]
hahuang65 has joined #ruby
Kilo`byte has joined #ruby
RegulationD has quit [Ping timeout: 265 seconds]
roolo_ has joined #ruby
Hounddog has joined #ruby
texasmade has quit [Ping timeout: 250 seconds]
fgo has quit [Ping timeout: 256 seconds]
yardenbar has quit [Quit: Leaving]
shpoont has joined #ruby
roolo has quit [Ping timeout: 240 seconds]
freeUmo has quit [Ping timeout: 244 seconds]
slackbotgz has joined #ruby
unshadow has joined #ruby
hahuang65 has quit [Ping timeout: 250 seconds]
codecop has quit [Remote host closed the connection]
troulouliou_dev has joined #ruby
Hounddog has quit [Read error: Connection reset by peer]
<unshadow> Hi guys, I'm trying to use this gem: https://github.com/freibuis/active_directory , but something dosn't makes sense, how does the settings from ::Base.setup() would be reused in ::User ?
psy_ has quit [Ping timeout: 240 seconds]
tvw has quit []
tvw has joined #ruby
railsraider has joined #ruby
arup_r has joined #ruby
danielpclark has joined #ruby
Trynemjoel has quit [Ping timeout: 256 seconds]
Guest59236 has joined #ruby
<apeiros> unshadow: by globally using the same setup
workmad3 has joined #ruby
blackmesa has quit [Ping timeout: 244 seconds]
gizmore has joined #ruby
<unshadow> apeiros: so it sets "setup" as a global var and just passes it over to the other calls ?
Trynemjoel has joined #ruby
houhoulis has quit [Remote host closed the connection]
freeUmo has joined #ruby
<apeiros> you don't need to pass global state.
hahuang65 has joined #ruby
<[k-> class Base uses persistent class variables
<[k-> (that remains until the program stops)
workmad3 has quit [Ping timeout: 255 seconds]
psy_ has joined #ruby
<[k-> the indentation looks...fancy
hahuang65 has quit [Ping timeout: 246 seconds]
<[k-> oh, and class variables persist in subclasses
tylersmith has quit [Ping timeout: 246 seconds]
<[k-> so its like a global variable for the Base and it's subclasses
hololeap has quit [Ping timeout: 250 seconds]
psy_ has quit [Max SendQ exceeded]
Igorshp has joined #ruby
blackmesa has joined #ruby
psy_ has joined #ruby
blackmes1 has joined #ruby
psy_ has quit [Max SendQ exceeded]
robbyoconnor has quit [Ping timeout: 264 seconds]
blackmesa has quit [Ping timeout: 252 seconds]
mark06 has left #ruby ["http://pidgin.renatosilva.me - Pidgin++"]
weemsledeux has joined #ruby
blackmes1 has quit [Ping timeout: 240 seconds]
FernandoBasso has joined #ruby
Zedi has quit [Read error: Connection reset by peer]
sarkyniin has joined #ruby
<unshadow> Oh... I see, thanks guys :)
cornerman has quit [Quit: leaving]
FernandoBasso has quit [Client Quit]
Zedi has joined #ruby
psy_ has joined #ruby
Trynemjoel has quit [Ping timeout: 240 seconds]
stamina has quit [Quit: WeeChat 1.2]
psy_ has quit [Max SendQ exceeded]
blackmes1 has joined #ruby
psy_ has joined #ruby
ht__ has quit [Quit: Konversation terminated!]
Trynemjoel has joined #ruby
mistermocha has joined #ruby
hahuang65 has joined #ruby
juanpablo_ has joined #ruby
fgo has joined #ruby
mistermocha has quit [Ping timeout: 272 seconds]
FernandoBasso has joined #ruby
juanpablo_ has quit [Ping timeout: 252 seconds]
ndrei has quit [Ping timeout: 240 seconds]
Igorshp has quit [Remote host closed the connection]
hahuang65 has quit [Ping timeout: 246 seconds]
mhib has joined #ruby
freeUmo has quit [Remote host closed the connection]
psy_ has quit [Ping timeout: 240 seconds]
sinkensabe has quit [Remote host closed the connection]
Soda has joined #ruby
Trynemjoel has quit [Ping timeout: 256 seconds]
Papierkorb has joined #ruby
iateadonut has joined #ruby
yaw has joined #ruby
psy_ has joined #ruby
jottr has joined #ruby
yaw has quit [Max SendQ exceeded]
leat3 has quit [Ping timeout: 272 seconds]
Trynemjoel has joined #ruby
svdb64 has quit [Quit: WeeChat 1.2]
leat3 has joined #ruby
Mon_Ouie has quit [Ping timeout: 264 seconds]
hahuang65 has joined #ruby
_whitelogger__ has joined #ruby
coderkevin_ has joined #ruby
fgo has quit [Ping timeout: 244 seconds]
ramblinpeck_ has joined #ruby
krz has quit [Quit: WeeChat 1.2]
opalraav1 has joined #ruby
kalleth_ has joined #ruby
Ilyas_ has joined #ruby
Ray`_ has joined #ruby
ajaiswal_ has joined #ruby
jaredrhine_ has joined #ruby
hoelzro_ has joined #ruby
heftig_ has joined #ruby
tvl has joined #ruby
thang_ has joined #ruby
vpereira_ has joined #ruby
ledestin has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
sepp2k2 has joined #ruby
infinite1tate has joined #ruby
brandon has joined #ruby
leat3 has quit [Remote host closed the connection]
yo61_ has joined #ruby
Heero_ has joined #ruby
leat3 has joined #ruby
brandon is now known as Guest90444
cornerman has quit [Client Quit]
cornerman has joined #ruby
sepp2k has quit [Ping timeout: 255 seconds]
hahuang65 has joined #ruby
blackmes1 has quit [Ping timeout: 246 seconds]
omegahm|BNC has joined #ruby
dr_Poggs has joined #ruby
dfoolz_ has joined #ruby
constantinexvi has joined #ruby
twistedpixels_ has joined #ruby
Trynemjoel2 has joined #ruby
mhf^ has joined #ruby
lele` has joined #ruby
elektronaut_ has joined #ruby
riotjone_ has joined #ruby
Trieste_ has joined #ruby
mgorbach_ has joined #ruby
blackmes1 has joined #ruby
Matadoer_ has joined #ruby
bougyman_ has joined #ruby
cliffstah_ has joined #ruby
jonee has joined #ruby
duckson_ has joined #ruby
JaTochNietDan_ has joined #ruby
yosafbridge` has joined #ruby
Trynemjoel has quit [*.net *.split]
Zedi has quit [*.net *.split]
weemsledeux has quit [*.net *.split]
eGGsha has quit [*.net *.split]
timonv has quit [*.net *.split]
Ilyas has quit [*.net *.split]
zemmihates has quit [*.net *.split]
keen__________31 has quit [*.net *.split]
nickfausnight has quit [*.net *.split]
ramblinpeck has quit [*.net *.split]
amitchellbullard has quit [*.net *.split]
valetudo has quit [*.net *.split]
bb010g has quit [*.net *.split]
Guest78802 has quit [*.net *.split]
nalley has quit [*.net *.split]
sepp2k1 has quit [*.net *.split]
serivich has quit [*.net *.split]
Hobogrammer_ has quit [*.net *.split]
ajaiswal has quit [*.net *.split]
Trieste has quit [*.net *.split]
lele has quit [*.net *.split]
akitada has quit [*.net *.split]
HashNuke has quit [*.net *.split]
yo61 has quit [*.net *.split]
coderkevin has quit [*.net *.split]
fella7s has quit [*.net *.split]
Brainling has quit [*.net *.split]
dfoolz has quit [*.net *.split]
mhf has quit [*.net *.split]
alekst_ has quit [*.net *.split]
bestie has quit [*.net *.split]
dmoe has quit [*.net *.split]
ggherdov has quit [*.net *.split]
codeitagile has quit [*.net *.split]
JaTochNietDan has quit [*.net *.split]
Heero has quit [*.net *.split]
machty has quit [*.net *.split]
kapowaz has quit [*.net *.split]
mkosaki has quit [*.net *.split]
adambeynon has quit [*.net *.split]
n1ftyn8_ has quit [*.net *.split]
maZtah has quit [*.net *.split]
halfdan has quit [*.net *.split]
bcavileer has quit [*.net *.split]
djbender has quit [*.net *.split]
MiracleBlue has quit [*.net *.split]
bweston92 has quit [*.net *.split]
__main__ has quit [*.net *.split]
hemanth has quit [*.net *.split]
thang has quit [*.net *.split]
ribbons has quit [*.net *.split]
heftig has quit [*.net *.split]
hectortrope has quit [*.net *.split]
nemesit|znc has quit [*.net *.split]
tuor has quit [*.net *.split]
cliffstah has quit [*.net *.split]
bauruine has quit [*.net *.split]
chris2 has quit [*.net *.split]
[spoiler] has quit [*.net *.split]
constantinexvi_ has quit [*.net *.split]
Guest46239 has quit [*.net *.split]
tobiasvl has quit [*.net *.split]
kalleth has quit [*.net *.split]
mgorbach has quit [*.net *.split]
yosafbridge has quit [*.net *.split]
kiki_lamb has quit [*.net *.split]
jaredrhine has quit [*.net *.split]
x3cion has quit [*.net *.split]
soahccc has quit [*.net *.split]
phrozen7- has quit [*.net *.split]
infinitestate has quit [*.net *.split]
papercode has quit [*.net *.split]
twistedpixels has quit [*.net *.split]
Ray` has quit [*.net *.split]
eregon has quit [*.net *.split]
Matadoer has quit [*.net *.split]
SuperTux88 has quit [*.net *.split]
opalraava has quit [*.net *.split]
hoelzro has quit [*.net *.split]
oddmunds has quit [*.net *.split]
duckson has quit [*.net *.split]
vpereira has quit [*.net *.split]
cgrieger^away has quit [*.net *.split]
omegahm has quit [*.net *.split]
pawz has quit [*.net *.split]
heyimwill has quit [*.net *.split]
krasnus has quit [*.net *.split]
bougyman has quit [*.net *.split]
tobyx_ has quit [*.net *.split]
drPoggs has quit [*.net *.split]
elektronaut has quit [*.net *.split]
_whitelogger_ has quit [*.net *.split]
klingeldraht has quit [*.net *.split]
mgorbach_ is now known as mgorbach
omegahm|BNC is now known as omegahm
cliffstah_ is now known as cliffstah
tvl is now known as tobiasvl
JaTochNietDan_ is now known as JaTochNietDan
Trieste_ is now known as Trieste
ggherdov_ has joined #ruby
serivichi has quit [Ping timeout: 265 seconds]
sdothum has joined #ruby
_main_ has joined #ruby
nickfausnight_ is now known as nickfausnight
adambeynon_ is now known as adambeynon
jottr has quit [Quit: WeeChat 1.2]
djbender_ is now known as djbender
ramblinpeck_ is now known as ramblinpeck
cgrieger^away has joined #ruby
MiracleBlue_ is now known as MiracleBlue
railsraider has quit [Ping timeout: 260 seconds]
bcavileer_ is now known as bcavileer
hahuang65 has quit [Ping timeout: 244 seconds]
serivichi has joined #ruby
x3cion has joined #ruby
amitchellbullard has joined #ruby
kiki_lamb has joined #ruby
coderkevin_ is now known as coderkevin
yo61_ is now known as yo61
Heero_ is now known as Heero
kapowaz_ is now known as kapowaz
n1ftyn8__ is now known as n1ftyn8_
riotjone_ has quit [Ping timeout: 246 seconds]
bb010g_ is now known as bb010g
HashNuke_ is now known as HashNuke
opalraav1 is now known as opalraava
pawz has joined #ruby
_main_ is now known as __main__
unshadow has quit [Quit: leaving]
maZtah_ is now known as maZtah
quimrstorres has joined #ruby
michael_mbp has quit [Excess Flood]
tuor has joined #ruby
sinkensabe has joined #ruby
leat3 has quit [Remote host closed the connection]
leat3 has joined #ruby
despai has joined #ruby
timonv has joined #ruby
tubulife- has joined #ruby
keen__________31 has joined #ruby
hectortrope has joined #ruby
ggherdov_ is now known as ggherdov
oddmunds has joined #ruby
prestorium has joined #ruby
[spoiler] has joined #ruby
papercode has joined #ruby
chris2 has joined #ruby
danielpclark has quit [Ping timeout: 246 seconds]
dgutierrez1287 has joined #ruby
halfdan has joined #ruby
bestie has joined #ruby
dmoe has joined #ruby
Mon_Ouie has joined #ruby
prestorium has quit [Client Quit]
zemmihates has joined #ruby
Guest78802 has joined #ruby
alekst_ has joined #ruby
codeitagile has joined #ruby
michael_mbp has joined #ruby
_blizzy_ has joined #ruby
tubulife- has quit [Ping timeout: 244 seconds]
akitada has joined #ruby
machty has joined #ruby
allomov has joined #ruby
dgutierrez1287 has quit [Ping timeout: 240 seconds]
cornerman has quit [Quit: WeeChat 1.1.1]
cornerman has joined #ruby
railswebdev has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
gizmore has quit [Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/]
nfk has joined #ruby
nemesit|znc has joined #ruby
soahccc has joined #ruby
_blizzy_ has quit [Read error: Connection reset by peer]
leat3 has quit [Remote host closed the connection]
leat3 has joined #ruby
bruno- has joined #ruby
Trynemjoel2 has quit [Ping timeout: 256 seconds]
phrozen77 has joined #ruby
_blizzy_ has joined #ruby
quimrstorres has quit [Ping timeout: 244 seconds]
bauruine has joined #ruby
dorei has joined #ruby
Trynemjoel has joined #ruby
SuperTux88 has joined #ruby
bruno- has quit [Ping timeout: 240 seconds]
danielpclark has joined #ruby
bruno- has joined #ruby
FernandoBasso has quit [Remote host closed the connection]
CloCkWeRX has joined #ruby
hahuang65 has joined #ruby
Trynemjoel has quit [Ping timeout: 256 seconds]
leat3 has quit [Remote host closed the connection]
bruno- has quit [Ping timeout: 265 seconds]
leat3 has joined #ruby
davedev24 has joined #ruby
FernandoBasso has joined #ruby
Mon_Ouie has quit [Ping timeout: 244 seconds]
TheHodge has quit [Quit: Connection closed for inactivity]
kalleth_ is now known as kalleth
mistermocha has joined #ruby
Trynemjoel has joined #ruby
ArchRogem has joined #ruby
mistermocha has quit [Ping timeout: 244 seconds]
sonOfRa has quit [Remote host closed the connection]
leafybasil has joined #ruby
sonOfRa has joined #ruby
railsraider has joined #ruby
Trynemjoel has quit [Ping timeout: 256 seconds]
blackmes1 has quit [Ping timeout: 246 seconds]
ndrei has joined #ruby
danielpclark has quit [Ping timeout: 250 seconds]
Ropeney has joined #ruby
Trynemjoel has joined #ruby
jonee has quit [Ping timeout: 255 seconds]
leat3 has quit [Remote host closed the connection]
leat3 has joined #ruby
hahuang65 has quit [Ping timeout: 255 seconds]
lennae has joined #ruby
tvw has quit []
kirun has joined #ruby
Trynemjoel has quit [Ping timeout: 256 seconds]
shpoont has quit [Read error: Connection reset by peer]
shpoont has joined #ruby
serivichi has quit [Ping timeout: 265 seconds]
omegamike has joined #ruby
omegamike has quit [Remote host closed the connection]
ybian has joined #ruby
omegamike has joined #ruby
fgo has joined #ruby
Trynemjoel has joined #ruby
omegamike has quit [Remote host closed the connection]
workmad3 has joined #ruby
[k-_ has joined #ruby
vimz has joined #ruby
fgo has quit [Ping timeout: 246 seconds]
moredhel has quit [Read error: Connection reset by peer]
svdb64 has joined #ruby
krz has joined #ruby
danielpclark has joined #ruby
svdb64 has quit [Client Quit]
moredhel has joined #ruby
timonv has quit [Ping timeout: 272 seconds]
symm- has joined #ruby
rubie has joined #ruby
postmodern has quit [Quit: Leaving]
workmad3 has quit [Ping timeout: 264 seconds]
cb_ has quit [Remote host closed the connection]
Trynemjoel has quit [Ping timeout: 256 seconds]
Billias has quit [Ping timeout: 246 seconds]
michael_mbp has quit [Excess Flood]
hahuang65 has joined #ruby
michael_mbp has joined #ruby
Igorshp has joined #ruby
Trynemjoel has joined #ruby
rubie has quit [Ping timeout: 265 seconds]
decaff has joined #ruby
yfeldblum has quit [Ping timeout: 244 seconds]
hahuang65 has quit [Ping timeout: 244 seconds]
johnMcLain has quit [Quit: johnMcLain]
decaff has quit [Ping timeout: 240 seconds]
svdb64 has joined #ruby
jonee has joined #ruby
umo has joined #ruby
svdb64 has quit [Client Quit]
svdb64 has joined #ruby
<shevy> hmm to "alias" a class Bar to Foo, I can just do: Bar = Foo ?
jonee has quit [Ping timeout: 255 seconds]
<[k-_> im not sure that would work
<apeiros> it does
<apeiros> a class is an object
<apeiros> Bar.name will still return "Foo", though.
allcentury has joined #ruby
hahuang65 has joined #ruby
krasnus has joined #ruby
<shevy> hmm
<shevy> I found a semi-duplicated class in old code, trying to unify the behaviour into one class but retain the old name to call it as well
yaw has joined #ruby
yaw has left #ruby [#ruby]
heftig_ is now known as heftig
juanpablo_ has joined #ruby
svdb64 has quit [Quit: WeeChat 1.2]
svdb64 has joined #ruby
vdamewood has quit [Quit: Life beckons.]
juanpablo_ has quit [Ping timeout: 255 seconds]
hahuang65 has quit [Ping timeout: 256 seconds]
Bloodshot has joined #ruby
lkba has joined #ruby
ddv has quit [Ping timeout: 256 seconds]
lkba_ has quit [Ping timeout: 264 seconds]
leat3 has quit [Remote host closed the connection]
leat3 has joined #ruby
jonee has joined #ruby
railswebdev has joined #ruby
sinkensabe has quit [Remote host closed the connection]
fumihiro_ has joined #ruby
al2o3-cr has quit [Quit: WeeChat 1.2]
patrickanth0ny has quit [Ping timeout: 244 seconds]
al2o3-cr has joined #ruby
ddv has joined #ruby
hahuang65 has joined #ruby
vickleton has joined #ruby
lessless has joined #ruby
heyimwill has joined #ruby
konsolebox has quit [Quit: Leaving]
hahuang65 has quit [Ping timeout: 272 seconds]
leat3 has quit [Remote host closed the connection]
fantazo has joined #ruby
leat3 has joined #ruby
Ropeney has quit [Quit: Textual IRC Client: www.textualapp.com]
bruno- has joined #ruby
banister has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
banister has joined #ruby
leat3 has quit [Ping timeout: 244 seconds]
amystephen has joined #ruby
leat3 has joined #ruby
bruno- has quit [Ping timeout: 244 seconds]
ajaiswal_ is now known as ajaiswal
Rollabunna has quit [Remote host closed the connection]
fumihiro_ is now known as xfumihiro
Rollabunna has joined #ruby
leat3 has quit [Remote host closed the connection]
leat3 has joined #ruby
konsolebox has joined #ruby
Soda has quit [Remote host closed the connection]
lkba has quit [Remote host closed the connection]
freerobby has joined #ruby
fgo has joined #ruby
Rollabun_ has joined #ruby
Rollabu__ has joined #ruby
hahuang65 has joined #ruby
tubulife- has joined #ruby
SCHAAP137 has quit [Read error: Connection reset by peer]
svdb64 has quit [Quit: WeeChat 1.2]
Rollabunna has quit [Ping timeout: 252 seconds]
Rollabunna has joined #ruby
Rollabun_ has quit [Ping timeout: 244 seconds]
svdb64 has joined #ruby
fgo has quit [Ping timeout: 264 seconds]
linuxboytoo has joined #ruby
leat3 has quit [Remote host closed the connection]
konsolebox has quit [Remote host closed the connection]
cb_ has joined #ruby
leat3 has joined #ruby
tubulife- has quit [Ping timeout: 244 seconds]
Rollabu__ has quit [Ping timeout: 244 seconds]
pontiki has joined #ruby
hahuang65 has quit [Ping timeout: 244 seconds]
tvw has joined #ruby
svdb64 has quit [Client Quit]
svdb64 has joined #ruby
linuxboytoo has quit [Remote host closed the connection]
linuxboytoo has joined #ruby
cb_ has quit [Ping timeout: 256 seconds]
havenwood has joined #ruby
linuxboytoo has quit [Ping timeout: 244 seconds]
x3cion has quit [Read error: Connection reset by peer]
stantonnet has joined #ruby
jschmid has quit [Remote host closed the connection]
Billias_ has joined #ruby
Billias_ is now known as Billias
x3cion has joined #ruby
banister has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
BigRonnieRon has joined #ruby
bubbys has quit [Ping timeout: 265 seconds]
hahuang65 has joined #ruby
chinmay_dd has joined #ruby
bronson has joined #ruby
leat3 has quit [Ping timeout: 272 seconds]
leat3 has joined #ruby
bubbys has joined #ruby
omegamike has joined #ruby
hahuang65 has quit [Ping timeout: 265 seconds]
bronson has quit [Ping timeout: 250 seconds]
lapide_viridi has joined #ruby
freerobby has quit [Quit: Leaving.]
mleung has joined #ruby
jack_rabbit has quit [Ping timeout: 246 seconds]
tvw has quit []
krz has quit [Ping timeout: 240 seconds]
omegamike has quit [Remote host closed the connection]
omegamike has joined #ruby
howdoi_ has joined #ruby
iateadonut has quit [Ping timeout: 264 seconds]
ndrei has quit [Ping timeout: 240 seconds]
guest920 has joined #ruby
lapide_viridi has quit [Quit: Leaving]
poguez_ has joined #ruby
autrilla has quit [Quit: Connection closed for inactivity]
rubie has joined #ruby
leat3 has quit [Remote host closed the connection]
Trynemjoel has quit [Ping timeout: 256 seconds]
leat3 has joined #ruby
Rollabunna has quit [Read error: Connection reset by peer]
wildroman2 has quit [Remote host closed the connection]
Rollabunna has joined #ruby
hahuang65 has joined #ruby
jonee has quit [Ping timeout: 272 seconds]
Billias_ has joined #ruby
Billias has quit [Ping timeout: 246 seconds]
Billias_ is now known as Billias
ddv has quit [Changing host]
ddv has joined #ruby
RegulationD has joined #ruby
juanpablo_ has joined #ruby
rubie has quit [Ping timeout: 265 seconds]
Trynemjoel has joined #ruby
timonv has joined #ruby
RegulationD has quit [Ping timeout: 264 seconds]
mistermocha has joined #ruby
juanpablo_ has quit [Ping timeout: 246 seconds]
lordkryss has quit [Quit: Connection closed for inactivity]
hahuang65 has quit [Ping timeout: 240 seconds]
pontiki has quit [Quit: ERC Version 5.3 (IRC client for Emacs)]
leat3 has quit [Remote host closed the connection]
leat3 has joined #ruby
timonv has quit [Ping timeout: 250 seconds]
workmad3 has joined #ruby
eregon_ is now known as eregon
ArchRogem has quit [Quit: Textual IRC Client: www.textualapp.com]
Igorshp has quit [Remote host closed the connection]
Igorshp has joined #ruby
mistermocha has quit [Ping timeout: 246 seconds]
jonee has joined #ruby
workmad3 has quit [Ping timeout: 252 seconds]
Rollabunna has quit [Remote host closed the connection]
Rollabunna has joined #ruby
ndrei has joined #ruby
Igorshp_ has joined #ruby
Igorshp has quit [Ping timeout: 250 seconds]
symm- has quit [Ping timeout: 256 seconds]
x3cion has quit [Remote host closed the connection]
x3cion has joined #ruby
decaff has joined #ruby
yardenbar has joined #ruby
christiandsg has joined #ruby
christiandsg has quit [Remote host closed the connection]
bruno- has joined #ruby
mleung has quit [Quit: mleung]
danielpclark has quit [Ping timeout: 260 seconds]
decaff has quit [Ping timeout: 244 seconds]
lxsameer has quit [Quit: Leaving]
systemd0wn has quit [Remote host closed the connection]
cb_ has joined #ruby
bruno- has quit [Ping timeout: 240 seconds]
Ilyas_ has quit [Read error: Connection reset by peer]
systemd0wn has joined #ruby
Ilyas_ has joined #ruby
ndrei has quit [Ping timeout: 246 seconds]
bruno- has joined #ruby
konsolebox has joined #ruby
hahuang65 has joined #ruby
cb_ has quit [Ping timeout: 260 seconds]
omegamike has quit [Remote host closed the connection]
christiandsg has joined #ruby
bruno- has quit [Ping timeout: 255 seconds]
hahuang65 has quit [Ping timeout: 250 seconds]
hanmac has quit [Ping timeout: 246 seconds]
bruno- has joined #ruby
danielpclark has joined #ruby
spider-mario has joined #ruby
bruno- has quit [Ping timeout: 244 seconds]
ych_ has joined #ruby
bruno- has joined #ruby
bruno- is now known as Guest25057
sarkyniin has quit [Ping timeout: 244 seconds]
apfeluser has quit [Quit: Leaving]
timonv has joined #ruby
<roolo_> Hey guys
<roolo_> Is there some tool to compile just contents of files together according to some system variables?
usershell has joined #ruby
gix has quit [Ping timeout: 240 seconds]
hahuang65 has joined #ruby
Bloodshot has quit [Ping timeout: 244 seconds]
dseitz has joined #ruby
Guest25057 has quit [Ping timeout: 246 seconds]
guest920 has quit [Remote host closed the connection]
gix has joined #ruby
sarkyniin has joined #ruby
sankaber has joined #ruby
hahuang65 has quit [Ping timeout: 244 seconds]
umo has quit [Ping timeout: 272 seconds]
railswebdev has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
pandaant has joined #ruby
roolo_ has quit [Quit: Leaving...]
roolo has joined #ruby
apfeluser has joined #ruby
PhantomSpank has quit [Remote host closed the connection]
<havenwood> roolo: Say more about what you're trying to do?
allcentury has quit [Ping timeout: 250 seconds]
<havenwood> roolo: What do you mean by compile? How do env vars come into it?
<roolo> havenwood: I wan't to create documentation for our projects (probably markdown). Some informations/addresses differs according to envinronment (stage/production/dev) I want something what will enable me to control what will be in resulting file
<roolo> havenwood: I am not sure, but this seems at least as a good start http://files.nothingisreal.com/software/gpp/gpp.html
SCHAAP137 has joined #ruby
<roolo> havenwood: If I'll not find something what works I'll probably use erb :)
Rickmasta has joined #ruby
Igorshp_ has quit [Remote host closed the connection]
sepp2k2 has quit [Read error: Connection reset by peer]
Igorshp has joined #ruby
Igorshp_ has joined #ruby
Igorshp has quit [Read error: Connection reset by peer]
Igorshp_ has quit [Remote host closed the connection]
Igorshp has joined #ruby
andywojo has joined #ruby
usershell has quit [Ping timeout: 264 seconds]
<shevy> I shall be using this as the coding motto for ruby: http://teom.org/wp-content/uploads/2012/04/18960821-300x300.jpg
<shevy> it somehow reminds me of havenwood
last_staff has joined #ruby
usershell has joined #ruby
<havenwood> shevy: That's what I give them in the Winter when then ask why there's no code. ;)
sankaber has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<havenwood> shevy: No, I jest. CODE ALL THE WINTER! \o/
tubulife- has joined #ruby
<shevy> \o/
<jhass> code in the summer and compile in the winter
<shevy> lol
dangerousdave has joined #ruby
timonv has quit [Ping timeout: 255 seconds]
Rickmast_ has joined #ruby
<busterarm> damn, i think that's the first time a beer foamed over on me in more than 15 years
<busterarm> also damn, I'm only 31
allcentury has joined #ruby
tubulife- has quit [Ping timeout: 244 seconds]
Rickmasta has quit [Ping timeout: 256 seconds]
banister has joined #ruby
Papierkorb_ has joined #ruby
Papierkorb has quit [Disconnected by services]
Papierkorb_ is now known as papierkorb
fullofcaffeine has joined #ruby
papierkorb is now known as Papierkorb
hahuang65 has joined #ruby
stantonnet has quit [Ping timeout: 244 seconds]
hahuang65 has quit [Ping timeout: 250 seconds]
leat3 has quit [Quit: leat3]
leat has joined #ruby
blackmes1 has joined #ruby
sarkyniin has quit [Ping timeout: 260 seconds]
cytoskeletor has joined #ruby
sarkyniin has joined #ruby
eggoez has quit [Ping timeout: 240 seconds]
<shevy> well you do tend to lose abilities that you have once possessed as you get older so no worries
cb_ has joined #ruby
cb_ has joined #ruby
ndrei has joined #ruby
linuxboytoo has joined #ruby
cb_ has quit [Ping timeout: 244 seconds]
Rickmasta has joined #ruby
ips|malc has joined #ruby
railswebdev has joined #ruby
t_ has quit [Read error: Connection reset by peer]
omegamike has joined #ruby
<busterarm> hah
banister has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Rickmas__ has joined #ruby
kidoz has quit [Read error: Connection reset by peer]
Rickmast_ has quit [Ping timeout: 255 seconds]
kidoz has joined #ruby
t_ has joined #ruby
SCHAAP137 has quit [Remote host closed the connection]
sankaber has joined #ruby
eggoez has joined #ruby
hahuang65 has joined #ruby
Rickmasta has quit [Ping timeout: 246 seconds]
BigRonnieRon has quit [Quit: Textual IRC Client: www.textualapp.com]
thiagovsk has joined #ruby
banister has joined #ruby
fullofcaffeine has quit [Remote host closed the connection]
mhf^ has left #ruby ["Leaving..."]
PlasmaStar has quit [Ping timeout: 246 seconds]
mleung has joined #ruby
ndrei has quit [Ping timeout: 244 seconds]
banister has quit [Client Quit]
hahuang65 has quit [Ping timeout: 255 seconds]
hanmac has joined #ruby
lavros has quit [Remote host closed the connection]
svdb64 has quit [Quit: WeeChat 1.2]
svdb64 has joined #ruby
hdrv has quit [Quit: ZNC - http://znc.in]
PlasmaStar has joined #ruby
rubie has joined #ruby
ndrei has joined #ruby
<Coraline> Is anyone here using exercism.io?
ych_ has quit [Remote host closed the connection]
<busterarm> I tried when they first launched
<busterarm> some of my team members do
stardiviner has quit [Quit: Weird in coding now, or make love, only two things push me away from IRC.]
rubie has quit [Ping timeout: 265 seconds]
juanpablo_ has joined #ruby
<Coraline> I'm really enjoying it. Some of the exercises are really fun.
cytoskeletor has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<busterarm> do you have a team?
<busterarm> (an exercism team I mean)
Rickmas__ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
christiandsg has quit [Remote host closed the connection]
juanpablo_ has quit [Ping timeout: 244 seconds]
mhib has quit [Ping timeout: 264 seconds]
DLSteve has joined #ruby
<Coraline> Yes, two of them
<Coraline> One from work, one from a slack community
<busterarm> nice
andywojo has quit [Quit: Lost terminal]
Vile` has quit [Ping timeout: 250 seconds]
decaff has joined #ruby
nobitanobi has joined #ruby
Vile` has joined #ruby
ips|malc has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
leat has quit [Remote host closed the connection]
<busterarm> when they invite me to the team i'll give it a go
<busterarm> been waiting a couple days
workmad3 has joined #ruby
leat has joined #ruby
<busterarm> might be cool if there were a -community team though
workmad3 has quit [Ping timeout: 255 seconds]
_blizzy_ has quit [Ping timeout: 246 seconds]
pandaant has quit [Remote host closed the connection]
xfumihiro has quit [Read error: Connection reset by peer]
yardenbar has quit [Quit: Leaving]
djbkd has joined #ruby
mhib has joined #ruby
troulouliou_dev has quit [Remote host closed the connection]
krz has joined #ruby
djbkd has quit [Client Quit]
omegamike has quit [Ping timeout: 244 seconds]
baweaver has joined #ruby
jonee has quit [Ping timeout: 244 seconds]
troulouliou_dev has joined #ruby
xfumihiro has joined #ruby
linuxboytoo has quit [Remote host closed the connection]
linuxboytoo has joined #ruby
linuxboytoo has quit [Read error: Connection reset by peer]
linuxboytoo has joined #ruby
baweaver has quit [Ping timeout: 244 seconds]
ruby-prudi has joined #ruby
<ruby-prudi> Hello, i am doing Michael Hartl tutorial book, and when he talks about SSL in production env he said "we can piggyback on Heroku’s SSL certificate", what does it mean?
troulouliou_dev has quit [Remote host closed the connection]
banister has joined #ruby
arup_r has quit [Quit: Leaving]
GriffinHeart has joined #ruby
hahuang65 has joined #ruby
goldfax has quit [Quit: Leaving]
christiandsg has joined #ruby
c2k4vr has joined #ruby
c2k4vr has left #ruby [#ruby]
aryaching has joined #ruby
n008f4g_ has joined #ruby
fullofcaffeine has joined #ruby
fgo has joined #ruby
diegoviola has joined #ruby
jonee has joined #ruby
hahuang65 has quit [Ping timeout: 272 seconds]
Averna has quit [Ping timeout: 246 seconds]
<vimz> sup
banister has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Averna has joined #ruby
<vimz> I swear there was an rspec matcher like this expect('ststringy').to include('st').twice } the 'twice' is undefined? :S
fgo has quit [Ping timeout: 252 seconds]
symm- has joined #ruby
banister has joined #ruby
<busterarm> there's a should_receive().twice but i didn't think so for string matchers
leat has quit [Remote host closed the connection]
<vimz> busteram oh I see, thanks
lordkryss has joined #ruby
mhib has quit [Ping timeout: 250 seconds]
<busterarm> you can probably do something with regex matchers
leat has joined #ruby
PhantomSpank has joined #ruby
Averna has quit [Quit: Ex-Chat]
jdeen has joined #ruby
bmurt has joined #ruby
<vimz> busteram yeah that's what I've done :)
<jdeen> Hi there. I know that I an dynamically call a method of an object using 'send'. How can I call a class method ex: `MyCoolClass.magic_word`. I tried MyCoolClass.send(:magic_word) but didn't work.
<vimz> jdeen MyCoolClass.new.send(:magic_word) ?
<vimz> oh no that's an instance, nm :P
<[k-_> ?code
<ruboto> We can't help you without your code, please post it to https://gist.github.com
jonee has quit [Ping timeout: 250 seconds]
<busterarm> self.class.send
n3xus_ has joined #ruby
<busterarm> or whateveryounamedtheinstance.class.send
ponga has joined #ruby
<ponga> hi
<busterarm> or Class.method
<busterarm> Class::method
<[k-_> do not randomly suggest methods!
<busterarm> sry
<[k-_> especially ::
<busterarm> :)
<[k-_> ?code jdeen
<ruboto> jdeen, We can't help you without your code, please post it to https://gist.github.com
aytch has quit [Ping timeout: 246 seconds]
blue_deref has joined #ruby
<busterarm> i'm playing My Drunk Helpdesk right now
devdazed has joined #ruby
<jdeen> ruboto: I jus tried busterarm s suggestion and it works in a bare class. Probably there is a send method override. Let me play arround and see. sorry guys!
triangles has joined #ruby
<busterarm> ruboto is a bot
Thomas-0725 has joined #ruby
[H]unt3r has joined #ruby
<[k-_> we need your code to be able to help you
xfumihiro has quit [Quit: leaving]
aytch has joined #ruby
darkf has quit [Quit: Leaving]
pengin has joined #ruby
linuxboytoo has quit [Remote host closed the connection]
timonv has joined #ruby
linuxboytoo has joined #ruby
banister is now known as banisterfiend
mhib has joined #ruby
shock_one has joined #ruby
<[k-_> jdeen!
linuxboytoo has quit [Read error: Connection reset by peer]
linuxboytoo has joined #ruby
j4cknewt has joined #ruby
linuxboytoo has quit [Read error: Connection reset by peer]
linuxboytoo has joined #ruby
GriffinHeart has quit [Remote host closed the connection]
cb_ has joined #ruby
linuxboytoo has quit [Client Quit]
svdb64 has quit [Ping timeout: 244 seconds]
leat has quit [Ping timeout: 252 seconds]
j4cknewt has quit [Ping timeout: 244 seconds]
leat has joined #ruby
systemnate has joined #ruby
hahuang65 has joined #ruby
<[k-_> im just going to return to watching cat videos
cb_ has quit [Ping timeout: 246 seconds]
aryaching has quit [Ping timeout: 240 seconds]
nfk has quit [Remote host closed the connection]
sharpmachine has joined #ruby
jonee has joined #ruby
pengin has quit [Remote host closed the connection]
shock_one has quit [Remote host closed the connection]
nichtdiebohne has quit [Quit: Linkinus - http://linkinus.com]
hahuang65 has quit [Ping timeout: 250 seconds]
mleung has quit [Quit: mleung]
leat has quit [Ping timeout: 244 seconds]
christiandsg has quit [Remote host closed the connection]
aryaching has joined #ruby
banisterfiend has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
arup_r has joined #ruby
Yzguy has joined #ruby
tubulife- has joined #ruby
CustosLimen has quit [Ping timeout: 264 seconds]
Channel6 has joined #ruby
Cache_Money has joined #ruby
fullofcaffeine has quit [Remote host closed the connection]
<vimz> is there a Gem for contextually pluralized a word? "I have #{(3, 'dog')}" #=> 'I have 3 dogs'
<vimz> "I have #{pluralize(3, 'dog')}" #=> 'I have 3 dogs'
<triangles> vimz: ActiveSupport, just require 'active_support/inflector' and you can use pluralize(3,'dog')
<vimz> triangles nice! thanks
blackmes1 has quit [Ping timeout: 240 seconds]
tubulife- has quit [Ping timeout: 244 seconds]
leat has joined #ruby
omegamike has joined #ruby
fullofcaffeine has joined #ruby
nfk has joined #ruby
hanmac has quit [Ping timeout: 256 seconds]
lannonbr has joined #ruby
<vimz> triangles: I can require 'active_support/inflector' okay, but pluralize is unavailable for the main object?
konsolebox has quit [Ping timeout: 265 seconds]
CustosLimen has joined #ruby
<triangles> vimz: my bad, 'dog'.pluralize(3)
<busterarm> inflector is totes my favorite gem in all of ruby
leat has quit [Remote host closed the connection]
leat has joined #ruby
max_v has joined #ruby
Igorshp has quit [Remote host closed the connection]
Igorshp has joined #ruby
howdoi_ has quit [Quit: Connection closed for inactivity]
yqt has joined #ruby
<ruby-prudi> <triangles> I think pluralize method come with ActionView::Helpers::TextHelper for views. Why adding that lib?
<ruby-prudi> <triangles> to test it in console you must add type $ include ActionView::Helpers::TextHelper
banister has joined #ruby
max_v has quit [Client Quit]
<busterarm> uh, it's in active-support
mistermocha has joined #ruby
Igorshp has quit [Ping timeout: 246 seconds]
hanmac has joined #ruby
<vimz> triangles no worries, thanks again
sharpmachine has quit [Remote host closed the connection]
hahuang65 has joined #ruby
<busterarm> oh, i'm totally wrong
bmurt has quit []
<busterarm> r not
mistermocha has quit [Ping timeout: 256 seconds]
<busterarm> there's just a separate one for the views
fantazo has quit [Quit: Verlassend]
NeverDie has joined #ruby
EllisTAA has joined #ruby
dented42 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
jdeen has quit [Quit: Lost terminal]
sankaber has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
[k-_ has quit [Quit: Lingo: www.lingoirc.com]
fgo has joined #ruby
pontiki has joined #ruby
hahuang65 has quit [Ping timeout: 264 seconds]
slackbotgz has quit [Remote host closed the connection]
EllisTAA has quit [Client Quit]
mary5030 has joined #ruby
MatthewsFace has joined #ruby
chipotle has quit [Excess Flood]
fgo has quit [Ping timeout: 250 seconds]
Cache_Money has quit [Quit: Cache_Money]
<ruby-prudi> Ahh that's it! There is one specific for views in ActionView/Helpers/TextHelper and another with active-support
craysiii has joined #ruby
<craysiii> hi
<busterarm> sup
MatthewsFace has quit [Remote host closed the connection]
lannonbr has quit [Quit: WeeChat 1.2]
<craysiii> coffee coffee and bloc type of morning
<busterarm> nice
_blizzy_ has joined #ruby
lannonbr has joined #ruby
jack_rabbit has joined #ruby
fullofcaffeine has quit [Remote host closed the connection]
tmtwd has joined #ruby
_blizzy_ has quit [Read error: Connection reset by peer]
jack_rabbit has quit [Ping timeout: 246 seconds]
juanpablo_ has joined #ruby
nsuke has quit [Remote host closed the connection]
fedexo has joined #ruby
_blizzy_ has joined #ruby
craysiii has quit [Read error: Connection reset by peer]
craysiii has joined #ruby
bruno- has joined #ruby
juanpablo_ has quit [Ping timeout: 260 seconds]
tmtwd has quit [Read error: Connection reset by peer]
Rollabun_ has joined #ruby
craysiii has quit [Read error: Connection reset by peer]
craysiii has joined #ruby
kakusu has joined #ruby
<craysiii> is freenode freaking out?
tmtwd has joined #ruby
<busterarm> not ere
<wasamasa> "Read error: Connection reset by peer"
<wasamasa> craysiii: if anything, your connection is
<craysiii> hm. every time i tried to read the chan list, it kicks me off.
Rollabunna has quit [Ping timeout: 246 seconds]
<wasamasa> that's a bad idea anyways :P
<wasamasa> /query alis
nfk has quit [Remote host closed the connection]
<craysiii> sometimes i just like to browse :P
workmad3 has joined #ruby
bruno- has quit [Ping timeout: 244 seconds]
dented42 has joined #ruby
bruno- has joined #ruby
t_mmyv has joined #ruby
MatthewsFace has joined #ruby
<wasamasa> yes, but it disconnects you if your client takes longer to receive it than it should and forgets to respond to pings
Rollabun_ has quit [Remote host closed the connection]
<wasamasa> so, browse online I guess
<craysiii> ah. bad client i guess. thanks
Rollabunna has joined #ruby
Erika-Mustermann has quit [Quit: leaving]
<wasamasa> I dunno, I remember getting this when I first tried out mIRC
<craysiii> im using empathy bundled with ubuntu gnome
nobitanobi has quit [Remote host closed the connection]
chipotle has joined #ruby
zz_Outlastsheep is now known as Outlastsheep
workmad3 has quit [Ping timeout: 264 seconds]
nobitanobi has joined #ruby
workmad3 has joined #ruby
banister has quit [Remote host closed the connection]
christiandsg has joined #ruby
konsolebox has joined #ruby
solars has quit [Ping timeout: 244 seconds]
werelivinginthef has joined #ruby
banister has joined #ruby
spider-mario has quit [Remote host closed the connection]
cb_ has joined #ruby
blackmes1 has joined #ruby
christiandsg has quit [Ping timeout: 265 seconds]
mhib has quit [Quit: Leaving]
jonee has quit [Ping timeout: 244 seconds]
ips|malc has joined #ruby
blackmes1 has quit [Ping timeout: 244 seconds]
banister has quit [Remote host closed the connection]
last_staff has quit [Read error: Connection reset by peer]
bubbys has quit [Ping timeout: 246 seconds]
antlong has joined #ruby
Dopagod has joined #ruby
bradleyprice has joined #ruby
leat has quit [Remote host closed the connection]
leat has joined #ruby
nfk has joined #ruby
banister has joined #ruby
bubbys has joined #ruby
ruby-prudi has quit [Ping timeout: 246 seconds]
babysnoop has joined #ruby
babysnoop has left #ruby [#ruby]
mistermocha has joined #ruby
jonee has joined #ruby
yqt has quit [Ping timeout: 244 seconds]
Jarboe has joined #ruby
sarkyniin has quit [Ping timeout: 272 seconds]
mhib has joined #ruby
mhib has quit [Client Quit]
mdavid613 has joined #ruby
|Brainling| is now known as Brainling
cb_ has quit []
troulouliou_dev has joined #ruby
mistermocha has quit [Ping timeout: 250 seconds]
nofxx has joined #ruby
[H]unt3r has quit [Quit: Leaving]
lessless has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Yzguy has quit [Quit: Zzz...]
<shevy> >> x = 'abc'; x.lchop
<ruboto> shevy # => undefined method `lchop' for "abc":String (NoMethodError) ...check link for more (https://eval.in/406190)
<shevy> awww
swgillespie has joined #ruby
Trynemjoel has quit [Ping timeout: 256 seconds]
Trynemjoel has joined #ruby
Thomas-0725 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
fold has quit [Ping timeout: 255 seconds]
maletor has joined #ruby
<Diabolik> o/ shevy
swills has joined #ruby
iceyec has joined #ruby
<shevy> I thought why we have .chop from the right side but no chopper from the left side
centrx has joined #ruby
rubie has joined #ruby
t_mmyv has quit [Quit: Textual IRC Client: www.textualapp.com]
swgillespie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Trynemjoel has quit [Ping timeout: 256 seconds]
sinkensabe has joined #ruby
charliesome has joined #ruby
Trynemjoel has joined #ruby
rubie has quit [Ping timeout: 265 seconds]
konsolebox has quit [Remote host closed the connection]
apfeluser has quit [Quit: Leaving]
<dymk> Is there a way to instruct extconf to link against an additional archive, without having to list out every other one of the object files in $objs?
<dymk> I'm also getting a symbol not found error on load for __ZNSt8ios_base4InitD1Ev, which seems to be part of the c++ stdlib
<swills> dymk, do you have -stdlib in your cflags?
Mendenhall has joined #ruby
<swills> dymk, also, are you compiling your C++ code with CC or CXX?
mdavid613 has quit [Quit: Leaving.]
mdavid613 has joined #ruby
<dymk> swills, -std=c++11 and I didn't have -stdlib, no, but I've not needed it before
<dymk> I'm using the system's cc
blackmes1 has joined #ruby
<swills> you should use CXX to compile C++ code, not CC
<swills> or else pass -stdlib
chinmay_dd has quit [Ping timeout: 264 seconds]
<dymk> Oh the extconf generated makefile is using CXX, not CC
<swills> then we'll need more detail
yardenbar has joined #ruby
tubulife- has joined #ruby
<dymk> swills, I think I fixed it - the issue was arising when I was defining my own $objs
Outlastsheep is now known as zz_Outlastsheep
bnagy has quit [Ping timeout: 265 seconds]
werelivinginthef has quit [Remote host closed the connection]
<dymk> dynamically generating a depends file with the additional archive to link against did the trick (by appending the archive onto the makefile's $(OBJS) variable under the $(DLLIB) rule)
<dymk> it's a hack, but i feel like most of what extconf has to do is a hack, so it fits right in :P
<swills> ok
<swills> i'm tryign to find docs on where gems are supposed to put header files they install
werelivinginthef has joined #ruby
imperator has joined #ruby
PaulCapestany has joined #ruby
<swills> Gem.Specification.extension_dir seems correct, but some seem to use the ext/ subdir instead
umo20 has joined #ruby
tubulife- has quit [Ping timeout: 244 seconds]
<dymk> swills, these are headers that other libs are using?
<dymk> or private to the gem?
<swills> other libs are to use them
juanpablo_ has joined #ruby
amclain has joined #ruby
PaulCapestany has quit [Max SendQ exceeded]
PaulCapestany has joined #ruby
<dymk> swills, i suppose /usr/include is out of the question
juanpablo_ has quit [Ping timeout: 255 seconds]
troulouliou_dev has quit [Remote host closed the connection]
<swills> gosh yes
leat has quit [Ping timeout: 244 seconds]
Trynemjoel has quit [Ping timeout: 256 seconds]
<swills> first, you can't assume anyone has permissions, gem provides mechanisms for installing in appropriate places
<dymk> mm figured
bruno- has quit [Ping timeout: 246 seconds]
Trynemjoel has joined #ruby
<swills> to give a more concrete example
<swills> /usr/local/lib/ruby/gems/2.2/extensions/amd64-freebsd-11/2.2/gtk3-2.2.5/rbgtk3.h
<swills> /usr/local/lib/ruby/gems/2.2/gems/gtk3-2.2.5/lib/rbgtk3.h
<swills> the gtk3 gem installed both of those
svdb64 has joined #ruby
<swills> which one is correct?
tmtwd has quit [Ping timeout: 240 seconds]
<ElSif> well, one has an architecture in the path, one doesnt
<ElSif> (i know that doesnt really answer your question)
shpoont has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<ElSif> i would think the shorter path is superior but i am not actually sure of the convention
khebbie has joined #ruby
khebbie_ has joined #ruby
<shevy> swills lemme check
<swills> the extensions one seems correct to me
<shevy> SITE_DIR/lib/ruby/site_ruby/2.2.0/x86_64-linux/rbgtk3.h
<swills> but i see gems only putting things in the ext dir next to lib
<swills> shevy, ok, so my expectations are right
<swills> but don't compare the same gem
chipotle has quit [Quit: cheerio]
<shevy> I did not install from the gem though
<swills> i'm trying to figure out what's actually correct for all gems
<shevy> I compiled the bindings
<swills> oh, that tells me even less then
<swills> again, what is right for all gems
<swills> not just that one
christiandsg has joined #ruby
<shevy> the way how it compiled for me is the right one :)
<shevy> if it helps you, curses also has ruby bindings
<shevy> the .so file for me is at /Programs/Ruby/Current/lib/ruby/gems/2.2.0/gems/curses-1.0.1/ext/curses/curses.so
ips|malc has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<shevy> this one was copied to /Programs/Ruby/2.2.2/lib/ruby/gems/2.2.0/extensions/x86_64-linux/2.2.0-static/curses-1.0.1/curses.so
<swills> ok
<swills> so i'm thinking that the stuff under ext is the private copy
<swills> and the stuff under extensions is meant to be public
<shevy> so in your case... /usr/local/lib/ruby/gems/2.2.0/extensions/ somewhere there I guess
<shevy> yeah I think so, it will be compiled locally in that directory, then copied
Rollabunna has quit [Remote host closed the connection]
christiandsg has quit [Ping timeout: 265 seconds]
bnagy has joined #ruby
usershell has quit [Remote host closed the connection]
hololeap has joined #ruby
Soda has joined #ruby
<swills> i think you're right
<swills> and yet, nokogumbo goes looking in the ext/ dir for nokogiri stuff
<swills> because that seems to be the only place nokogiri puts it
jud has quit [Quit: Leaving]
Pisuke has quit [Ping timeout: 252 seconds]
<swills> so i've changed nokogumbo to use Gem::Specification.extension_dir
<swills> but now i have to change nokogiri to put things there
Sembei has joined #ruby
iceyec has quit [Quit: iceyec]
<swills> and before i go sending bug reports to the nokogiri folks telling them to accept a patch that does that (which i havne't written yet), i want to find something that says yes, this is where they belong.
iceyec has joined #ruby
iceyec has quit [Client Quit]
zz_Outlastsheep is now known as Outlastsheep
tsou has quit [Quit: off]
imperator has quit [Quit: This computer has gone to sleep]
joneshf-laptop has quit [Ping timeout: 256 seconds]
acke has joined #ruby
blue_deref has quit [Quit: bbn]
werelivinginthef has quit [Remote host closed the connection]
kazoo has quit [Ping timeout: 244 seconds]
allomov_ has joined #ruby
bricker has joined #ruby
leafybasil has quit [Remote host closed the connection]
leafybasil has joined #ruby
allomov has quit [Ping timeout: 260 seconds]
imperator has joined #ruby
pontiki has quit [Ping timeout: 244 seconds]
imperator has quit [Quit: Leaving]
sharpmachine has joined #ruby
JoshGlzBrk has joined #ruby
kies^ has joined #ruby
iceyec has joined #ruby
Kilo`byte has quit [Ping timeout: 265 seconds]
sdothum has quit [Read error: Connection reset by peer]
<ght> Question: I have a Ruby app that references several global envvars defined in /etc/profile.d. I'm interested in being able to run the Ruby app without having to
houhoulis has joined #ruby
<ght> use a parent shell that sources the /etc/profile.d envvars. Since there's not a way to .source from Ruby directly,
<ght> Is anyone familiar with a technique to perhaps say, read a given file, extract the contents, then use ENV within Ruby to set the values directly from
<ght> the Ruby script?
<swills> and this is why storing config in environment variables is a bad idea
sdothum has joined #ruby
<ght> swills: It was designed that way to allow us to update certain values, such as specific API provider throttling params
felixrsmith has joined #ruby
<ght> globally, so we can change a single value and all of our apps that access that provider are updated.
<swills> any config can be updated
<ght> wat
<swills> you could store the config in a yaml file and get the same effect
<ght> Yes, that's true, that's what we probably should do.
<swills> using shell for config is bad design, imho
<ght> Yes, I'm realizing that.
<ght> Ok, that's what we'll do then, we'll port the global config params to a yaml file
<ght> Would yaml be the preferred format for doing such?
<swills> you could even write shell that would pull the config out of yaml into shell again if you needed
<ght> vs XML or what have you, JSON
<swills> using jq for example
<swills> preferred by whom?
<ght> well, I really don't need the shell aspect of it at all
<ght> preferred by you
<ght> or the community
<ght> "the masses at large"
<ght> "those who are familiar with Ruby"
<swills> personally, i'd do yaml or json, but stay away from xml
<ght> Sounds good, thanks for the help, much apprecaited.
<swills> but that's just me
<craysiii> xml bad.
<swills> i mentioned the shell thing because it could ease transition
Mendenhall has quit [Ping timeout: 244 seconds]
tsou has joined #ruby
<roolo> havenwood: Came something into your mind?
<havenwood> roolo: for processing markup? hem. markup or redcarpet probably.
<roolo> havenwood: Not exactly mark(up|down). Simply preprocessing text files
<havenwood> roolo: What kind of text files?
<darix> roolo: what do you want to do to the files?
leat has joined #ruby
<roolo> darix: Any files. I wan't to create documentation for our projects (probably markdown). Some informations/addresses differs according to envinronment (stage/production/dev) I want something what will enable me to control what will be in resulting file
leat has quit [Remote host closed the connection]
<havenwood> roolo: So you want something that can process markdown and other?
<havenwood> roolo: What all might the other be?
<Nilium> Sounds like what you need to do is sit down with a text editor and get to work.
leat has joined #ruby
fedexo has quit [Ping timeout: 246 seconds]
diegoviola has quit [Remote host closed the connection]
Thomas-0725 has joined #ruby
<roolo> havenwood: I guess what I want is not tied to syntax. Simply I want something will enable me to have conditionals in text files. Something like #ifdef in gcc, but language agnostic
<roolo> havenwood: Ruby tool would be best option, but I can work with other tools also
bricker has quit [Ping timeout: 244 seconds]
timonv has quit [Ping timeout: 250 seconds]
Kilo`byte has joined #ruby
allcentury has quit [Ping timeout: 255 seconds]
Rollabunna has joined #ruby
Zedi has joined #ruby
<vimz> can I join two numbers together without converting them into strings? eg 5.join 2 #=> 52
leat has quit [Remote host closed the connection]
leat has joined #ruby
<ytti> 5*10+2
<ytti> MAGIC
<ytti> base10 operator
rbowlby has joined #ruby
Rollabunna has quit [Ping timeout: 244 seconds]
sinkensabe has quit [Remote host closed the connection]
icebourg has joined #ruby
Trynemjoel has quit [Ping timeout: 256 seconds]
<vimz> ytti no that'll only work if the first number is divisble by 10. what if I want 123.join 321
<vimz> ill just string interpolate
psy_ has quit [Ping timeout: 252 seconds]
djbkd has joined #ruby
Trynemjoel has joined #ruby
<craysiii> i remember doing a programming challenge and using log to determine the "length" of the number and using that.
dgutierrez1287 has joined #ruby
<craysiii> http://stackoverflow.com/a/1489928/922669 this is c++ but it gets the point across.
eilkahn has joined #ruby
acke has quit [Remote host closed the connection]
<vimz> craysiii very clever. thanks :)
<craysiii> :)
acke has joined #ruby
<havenwood> >> class Integer; def append n; self * 10 ** Math.log10(abs).floor.next + n end end; 123.append 321
<ruboto> havenwood # => 123321 (https://eval.in/406254)
sarkyniin has joined #ruby
<havenwood> vimz: ^
aryaching has quit [Ping timeout: 244 seconds]
<craysiii> nice!
tmtwd has joined #ruby
<craysiii> can i ask why you called next after floor? I am not familiar with Math library
<havenwood> craysiii: another way of saying "plus one"
<craysiii> why don't you call ceil?
<craysiii> if there is one.
<vimz> havenwood: damn. you're a genus
<vimz> genius
<havenwood> craysiii: I was just translating the algorithm - that's one step further. ;)
<Coraline> havenwood is a species
freerobby has joined #ruby
<vimz> Coraline haha
<yorickpeterse> a very special kind of species
Vile` has quit [Remote host closed the connection]
<craysiii> we're all in the same family.
acke has quit [Ping timeout: 240 seconds]
<havenwood> a species hungry for sandwiches, which is lucky because... sandwiches! be back post-sandwich.
<vimz> I would not mind the havenwood species' maths phenotype :/
Outlastsheep is now known as zz_Outlastsheep
das_j has joined #ruby
Vile` has joined #ruby
yfeldblum has joined #ruby
yardenbar has quit [Quit: Leaving]
<das_j> Hell, I am currenty trying to build chef which is based on ruby. I think this is a ruby-related question, so I'm asking here. Chef has a line that leads the config loader (require 'chef-config/workstation_config_loader'), but ruby says it can't find it. I looked, but /usr/lib/ruby/gems/2.2.0/gems/chef-config-12.5.0.current.0/lib/chef-config/workstation_config_loader.rb seems to exist. What am I doing wrong?
Zedi has quit [Read error: Connection reset by peer]
_ht has quit [Quit: Konversation terminated!]
kadoppe has quit [Ping timeout: 246 seconds]
mistermocha has joined #ruby
sharpmachine has quit [Remote host closed the connection]
leat has quit [Remote host closed the connection]
n3xus_ has quit [Quit: La nature a fait les choses de maniere a ce que j'aime les hommes viril!!!]
leat has joined #ruby
dgutierrez1287 has quit [Remote host closed the connection]
Zedi has joined #ruby
pkrnj has joined #ruby
Ilyas_ has quit [Read error: Connection reset by peer]
kadoppe has joined #ruby
jonee has quit [Ping timeout: 240 seconds]
juanpablo_ has joined #ruby
mistermo_ has joined #ruby
krz has quit [Quit: WeeChat 1.2]
mistermocha has quit [Read error: Connection reset by peer]
sinkensabe has joined #ruby
umo20 has quit [Ping timeout: 256 seconds]
JohnBat26 has joined #ruby
juanpablo_ has quit [Ping timeout: 246 seconds]
yqt has joined #ruby
tomaz_b has joined #ruby
dgutierrez1287 has joined #ruby
bhaak has quit [Ping timeout: 240 seconds]
sinkensabe has quit [Remote host closed the connection]
<shevy> Hell? :)
fold has joined #ruby
<shevy> that path seems to be wrong btw
<shevy> require 'chef-config' would look in the SITE_DIR not the gems/ subdirectory
allcentury has joined #ruby
bhaak has joined #ruby
<shevy> does the file exist at /usr/lib/ruby/site_ruby/2.2.0/ ?
mistermo_ has quit [Ping timeout: 244 seconds]
shpoont has joined #ruby
das_j has quit [Quit: Page closed]
das_j has joined #ruby
<das_j> /usr/lib/ruby only contains 2.2.0 and gems
<shevy> no
<shevy> inside at /usr/lib/ruby/site_ruby/2.2.0/
<shevy> I am sure there must be lots of .rb files there right?
t_ has quit [Ping timeout: 240 seconds]
pietr0 has joined #ruby
tubulife- has joined #ruby
<das_j> no, the directory doesn't exist
michael_mbp has quit [Excess Flood]
<workmad3> shevy: why wouldn't `require` be looking in rubygems paths?
michael_mbp has joined #ruby
tubulife- has quit [Ping timeout: 244 seconds]
<shevy> workmad3 well the directory does not exist ^^^
<workmad3> shevy: sounded like it did... /usr/lib/ruby/gems/2.2.0/<chef stuff> existed according to the original question
centrx has quit [Quit: 'Get out, you and all the people who follow you!' Then he went out from Pharaoh in hot anger.]
<shevy> ok so according to workmad3 the directory exists das_j
<workmad3> shevy: what didn't exist was /usr/lib/ruby/site_ruby/2.2.0... but then that should probably have been /usr/lib/ruby/2.2.0/site_ruby anyway
j4cknewt has joined #ruby
<shevy> yeah say that to das_j?
<das_j> No, there is no site_ruby. But /usr/lib/ruby/2.2.0 contains a lot of rb files
<swills> so i think adding all the headers to $INSTALLFILES in extconf.rb is the right way to go
<workmad3> das_j: tbh, it kinda sounded like there was a masked load error in the file... what happens if you load irb and run `require 'chef-config/workstation_config_loader'` directly?
kraljev11 has joined #ruby
apt-get_ has joined #ruby
<workmad3> das_j: right... that's not an error in failing to find the file
christiandsg has joined #ruby
phutchins has quit [Ping timeout: 265 seconds]
bronson has joined #ruby
<craysiii> is there a preferred gem for irc in ruby?
fullofcaffeine has joined #ruby
<swills> cinch
<das_j> workmad3: Then, hat does the error say?
kraljev11 has quit [Read error: Connection reset by peer]
<craysiii> thanks swills
sarkyniin has quit [Ping timeout: 252 seconds]
<swills> np
kraljev11 has joined #ruby
<craysiii> wow. that is so powerful
sinkensabe has joined #ruby
<Scriptonaut> hey guys, I have this module: https://gist.github.com/robins35/723f629c628c5b214d39 However, from a pry session I can't do Command::execute, it says undefined method 'execute' for Command:Module
<swills> if you plan to go beyond irc, check out lita
<Scriptonaut> anyone know why that might be?
<Scriptonaut> I define it right in there
<Scriptonaut> I'm not using the module as a mixin, merely a namespace
<shevy> you would have to write it as "def self.execute"
<Scriptonaut> ah, that makes sense
<Scriptonaut> thanks
bronson has quit [Ping timeout: 255 seconds]
<shevy> \o/
<Scriptonaut> all my methods woul dhave to be def self... right?
<Scriptonaut> unless I did Command.new
<Scriptonaut> or include
<shevy> include yes, then it would be as if you defined it in your class
<Scriptonaut> ok, thought so, thanks again
Zedi has quit [Read error: Connection reset by peer]
Rollabunna has joined #ruby
Zedi has joined #ruby
Sypheren has quit [Quit: Never underestimate the power of stupid people in large groups.]
Sypheren has joined #ruby
nobitanobi has quit [Remote host closed the connection]
willywos has joined #ruby
Rollabunna has quit [Ping timeout: 244 seconds]
Thomas-0725 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
sinkensabe has quit [Remote host closed the connection]
Zedi has left #ruby [#ruby]
{756d6f} has joined #ruby
Jackneill has quit [Ping timeout: 240 seconds]
imperator has joined #ruby
arup_r has quit [Quit: Leaving]
aevitas has joined #ruby
kraljev11 has quit [Quit: kraljev11]
kraljev11_ has joined #ruby
kraljev11_ is now known as kraljev11
iateadonut has joined #ruby
t_ has joined #ruby
aevitas has quit [Client Quit]
drew0 has joined #ruby
drewo has quit [Read error: Connection reset by peer]
xMopxShell has quit [Ping timeout: 252 seconds]
mmasaki has quit [Ping timeout: 252 seconds]
das_j has quit [Quit: Page closed]
chridal has quit [Ping timeout: 252 seconds]
Muhannad has quit [Ping timeout: 260 seconds]
aevitas has joined #ruby
<imperator> what am I doing wrong here with rspec 3? https://gist.github.com/djberg96/fda10387dd85e6e1654f
mmasaki has joined #ruby
xMopxShell has joined #ruby
chridal has joined #ruby
pkrnj has quit [Quit: Computer has gone to sleep.]
sinkensabe has joined #ruby
Trynemjoel has quit [Ping timeout: 256 seconds]
towski_ has joined #ruby
Trynemjoel has joined #ruby
kraljev11 has quit [Quit: kraljev11]
kraljev11 has joined #ruby
towski_ has quit [Remote host closed the connection]
fullofcaffeine has quit [Remote host closed the connection]
khebbie_ has quit [Remote host closed the connection]
khebbie has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Oog has joined #ruby
<Oog> i want the regex to stop tat the first </tr> but it is eating more - ideas? https://gist.github.com/anonymous/1f80ee4a26990883f42f
mdavid613 has quit [Quit: Leaving.]
<Oog> instad it when the (.*?doctors ...)? isn't present before teh frist </tr> it eats until it finds one
<Oog> i used ? because i want that doctors with... part to be optional
<imperator> Oog, step 1, stop parsing html with a regex
markholmes has joined #ruby
<Oog> im so close though... and its so easy usually
<imperator> you'll shoot your eye out; use nokogiri instead
<Oog> one little issue! ther emust be a way
<imperator> sure, it's always just one little issue, and the next thing you know the dinosaurs are running amok
blackmes1 has quit [Quit: WeeChat 1.2]
sinkensabe has quit [Remote host closed the connection]
kraljev11 has quit [Quit: kraljev11]
kraljev11 has joined #ruby
<Oog> i just need a way to say don't match <\/tr> I tried (?=<\/tr>) but didnt work
eggoez has quit [Ping timeout: 252 seconds]
tennis_ has joined #ruby
rubie has joined #ruby
j4cknewt has quit [Remote host closed the connection]
djbkd has quit [Remote host closed the connection]
Ox0dea has joined #ruby
<Ox0dea> Scriptonaut: For reference, these are all essentially equivalent if you're only using Foo as a namespace: https://gist.github.com/0x0dea/66db6eee00d65eff85d9
eggoez has joined #ruby
diegoviola has joined #ruby
kraljev11 has quit [Ping timeout: 240 seconds]
bizportal has joined #ruby
aevitas has left #ruby [#ruby]
aevitas has joined #ruby
<dymk> Does the native extension API provide a way of making hash maps?
<dymk> extensions.rdoc doesn't have any mention
rubie has quit [Ping timeout: 265 seconds]
<Ox0dea> dymk: rb_hash_new()
<dymk> Ox0dea, thanks!
<Ox0dea> Sure thing.
pkrnj has joined #ruby
despai has quit [Quit: Leaving]
bmurt has joined #ruby
nobitanobi has joined #ruby
mistermocha has joined #ruby
sharpmachine has joined #ruby
MatrixBridge has quit [Remote host closed the connection]
MatrixBridge has joined #ruby
imperator has quit [Quit: Leaving]
pontiki has joined #ruby
Contigi has quit [Read error: Connection reset by peer]
mistermocha has quit [Ping timeout: 244 seconds]
kraljev11 has joined #ruby
swgillespie has joined #ruby
swgillespie has quit [Client Quit]
caterpilows has joined #ruby
kraljev11 has quit [Read error: Connection reset by peer]
pontiki has quit [Ping timeout: 246 seconds]
aevitas_ has joined #ruby
kidoz has quit [Quit: Ухожу я от вас]
{756d6f} has quit [Ping timeout: 240 seconds]
aevitas has quit [Ping timeout: 252 seconds]
bruno- has joined #ruby
caterpilows has quit [Ping timeout: 244 seconds]
bodgix has joined #ruby
sinkensabe has joined #ruby
gguggi has joined #ruby
ponga has quit [Quit: Connection closed for inactivity]
bubbys has quit [Ping timeout: 255 seconds]
sinkensabe has quit [Remote host closed the connection]
sinkensabe has joined #ruby
bruno- has quit [Ping timeout: 260 seconds]
omegamike has quit [Remote host closed the connection]
fullofcaffeine has joined #ruby
fullofcaffeine has quit [Remote host closed the connection]
iceyec has quit [Quit: iceyec]
baweaver has joined #ruby
Rollabunna has joined #ruby
christiandsg has quit [Remote host closed the connection]
lkba has joined #ruby
Trynemjoel has quit [Ping timeout: 256 seconds]
maletor has quit [Quit: Computer has gone to sleep.]
markholmes has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
texasmade has joined #ruby
bodgix has quit [Quit: Leaving.]
christiandsg has joined #ruby
Trynemjoel has joined #ruby
Rollabunna has quit [Ping timeout: 244 seconds]
antlong has left #ruby ["Textual IRC Client: www.textualapp.com"]
mistym has joined #ruby
felixrsmith has quit [Ping timeout: 244 seconds]
troulouliou_dev has joined #ruby
axisys has quit [Read error: Connection reset by peer]
chipotle has joined #ruby
axisys has joined #ruby
dgutierrez1287 has quit [Remote host closed the connection]
christiandsg has quit [Remote host closed the connection]
j4cknewt has joined #ruby
nfk has quit [Remote host closed the connection]
freerobby has quit [Quit: Leaving.]
joneshf-laptop has joined #ruby
axisys has quit [Read error: Connection reset by peer]
freerobby has joined #ruby
axisys has joined #ruby
roolo has quit [Remote host closed the connection]
christiandsg has joined #ruby
sinkensabe has quit [Remote host closed the connection]
icebourg has quit []
sharpmachine has quit [Remote host closed the connection]
[H]unt3r has joined #ruby
leat has quit [Remote host closed the connection]
leat has joined #ruby
juanpablo_ has joined #ruby
khebbie has joined #ruby
mistym has quit [Ping timeout: 246 seconds]
yfeldblum has quit [Ping timeout: 246 seconds]
axisys has quit [Ping timeout: 250 seconds]
kraljev11 has joined #ruby
Vile` has quit [Ping timeout: 246 seconds]
bruno- has joined #ruby
juanpablo_ has quit [Ping timeout: 246 seconds]
decoponio has quit [Quit: Leaving...]
Blaguvest has joined #ruby
robbyoconnor has joined #ruby
Vile` has joined #ruby
bizportal has quit []
khebbie has quit [Ping timeout: 240 seconds]
baweaver has quit [Remote host closed the connection]
railswebdev has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
nofxx has quit [Ping timeout: 246 seconds]
kraljev11 has quit [Ping timeout: 246 seconds]
nofxx has joined #ruby
nofxx has quit [Changing host]
nofxx has joined #ruby
bruno- has quit [Ping timeout: 246 seconds]
bruno- has joined #ruby
t_mmyv has joined #ruby
tubulife- has joined #ruby
mistym has joined #ruby
Oog has quit []
michael_mbp has quit [Excess Flood]
dseitz has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
bruno- has quit [Ping timeout: 252 seconds]
bruno- has joined #ruby
tubulife- has quit [Ping timeout: 244 seconds]
michael_mbp has joined #ruby
havenwood has quit [Quit: Textual IRC Client: www.textualapp.com]
einarj has joined #ruby
MatthewsFace has quit [Remote host closed the connection]
iceyec has joined #ruby
sharpmachine has joined #ruby
iceyec has quit [Client Quit]
danzilio has joined #ruby
glenn_ has joined #ruby
danzilio has quit [Max SendQ exceeded]
christiandsg has quit [Read error: Connection reset by peer]
danzilio has joined #ruby
mistermocha has joined #ruby
christiandsg has joined #ruby
<dymk> Will rb_raise call C++ destructors when it does its weird jumping-back-to-the-interpreter thing?
<dymk> Ox0dea, you might know this :P
<dymk> it would seem it doesn't
djbkd has joined #ruby
fullofcaffeine has joined #ruby
cornerman has quit [Read error: Connection reset by peer]
cornerman has joined #ruby
sharpmachine has quit [Remote host closed the connection]
shock_one has joined #ruby
<dymk> huh, rice seems to handle that kind of thing
tennis_ has quit [Remote host closed the connection]
mistermocha has quit [Ping timeout: 250 seconds]
blue_deref has joined #ruby
yfeldblum has joined #ruby
pengin has joined #ruby
tejasmanohar has joined #ruby
Rollabunna has joined #ruby
tennis has joined #ruby
tennis has quit [Remote host closed the connection]
TheNet has joined #ruby
kirun has quit [Quit: Client exiting]
bruno- has quit [Ping timeout: 246 seconds]
<Ox0dea> dymk: I'm not intimately familiar with how Ruby's exception mechanisms interact with C++'s move semantics, but Rice does look like it helps manage that sort of thing.
railswebdev has joined #ruby
<tejasmanohar> test
tejasmanohar has quit [Client Quit]
danzilio has quit [Quit: My computer has fallen asleep!]
Rollabunna has quit [Ping timeout: 246 seconds]
bmurt has quit []
rbowlby has quit [Remote host closed the connection]
TheNet has quit [Remote host closed the connection]
tomaz_b has quit [Quit: Leaving]
shock_one has quit [Remote host closed the connection]
pengin has quit [Remote host closed the connection]
latemus has quit [Ping timeout: 256 seconds]
theery has joined #ruby
omegamike has joined #ruby
latemus has joined #ruby
amclain has quit [Quit: Leaving]
dfockler has joined #ruby
Channel6 has quit [Quit: Leaving]
lannonbr has quit [Quit: WeeChat 1.2]
lannonbr has joined #ruby
theery has quit [Remote host closed the connection]
omegamike has quit [Ping timeout: 244 seconds]
dfockler has quit [Ping timeout: 244 seconds]
casadei_ has joined #ruby
xxneolithicxx has joined #ruby
jfarmer has joined #ruby
fgo has joined #ruby
blue_deref has quit [Quit: bbn]
svdb64 has quit [Quit: WeeChat 1.2]
casadei_ has quit [Remote host closed the connection]
Yzguy has joined #ruby
biscuitz has joined #ruby
<biscuitz> in rspec how do I get this code to work? expect(subject.instance_variable_get(:@capacity)).to eql @array1.count
<biscuitz> its after the eq I'm going wrong but im not sure how to correct
dorei has quit []
dseitz has joined #ruby
rubie has joined #ruby
TheNet has joined #ruby
jeramyRR has joined #ruby
sinkensabe has joined #ruby
<vimz> biscuitz try getting rid of the @
<biscuitz> ok lets see
<vimz> instance_variable_get(:capacity) .. I think anyway, I had that error ages ago
<Ox0dea> vimz: No, that's not right.
<biscuitz> no it doesn't work
<Ox0dea> >> instance_variable_get(:capacity) rescue $!
<ruboto> Ox0dea # => #<NameError: `capacity' is not allowed as an instance variable name> (https://eval.in/406395)
<workmad3> biscuitz: ?gist the full rspec test please
<biscuitz> @capacity is initialized in the class
<workmad3> bah, ruboto doesn't pick up like that :(
<workmad3> ?gist biscuitz
<ruboto> biscuitz, https://gist.github.com - Multiple files, syntax highlighting, even automatically with matching filenames, can be edited
<vimz> ['b','a'] => /[b | a]/
<Ox0dea> ?
<vimz> while he's making a gist, can I turn an array into a simple regex? :P
<Ox0dea> vimz: Regexp.union.
<Ox0dea> >> Regexp.union %w[a b c]
<ruboto> Ox0dea # => /a|b|c/ (https://eval.in/406396)
rubie has quit [Ping timeout: 265 seconds]
<vimz> Ox0dea thatnks, exactly what I needed
sinkensabe has quit [Ping timeout: 256 seconds]
leesharma has joined #ruby
calleerlandsson has joined #ruby
nobitanobi has quit [Remote host closed the connection]
fullofcaffeine has quit [Ping timeout: 264 seconds]
fullofcaffeine has joined #ruby
pkrnj has quit [Quit: Textual IRC Client: www.textualapp.com]
sankaber has joined #ruby
Yzguy has quit [Quit: Zzz...]
fgo has quit [Ping timeout: 252 seconds]
TheHodge has joined #ruby
<Ox0dea> vimz: Happy to help. Note well, though, that /[a|b]/ and /[ab]/ are not equivalent.
<biscuitz> I actually got it to work using stub....silly me
djbkd has quit [Remote host closed the connection]
DLSteve has quit [Quit: Leaving]
Yzguy has joined #ruby
dangerousdave has quit [Ping timeout: 260 seconds]
Kalov has quit []
Yzguy has quit [Client Quit]
mdavid613 has joined #ruby
pietr0 has quit [Quit: pietr0]
leesharma has quit [Quit: leesharma]
leesharma has joined #ruby
sankaber has quit [Ping timeout: 240 seconds]
vickleton has quit [Remote host closed the connection]
pontiki has joined #ruby
iceyec has joined #ruby
djbkd has joined #ruby
jeramyRR has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Sonja has joined #ruby
pontiki has quit [Remote host closed the connection]
pontiki has joined #ruby
tabakhase has quit [Ping timeout: 264 seconds]
Rollabunna has joined #ruby
deavidsedice has joined #ruby
pontiki has quit [Client Quit]
deavid has quit [Ping timeout: 264 seconds]
Mendenhall has joined #ruby
pontiki has joined #ruby
serivich has joined #ruby
iceyec has quit [Quit: iceyec]
baweaver has joined #ruby
lennae has quit [Ping timeout: 265 seconds]
pontiki has quit [Client Quit]
Rollabunna has quit [Ping timeout: 244 seconds]
sinkensabe has joined #ruby
lannonbr has quit [Quit: WeeChat 1.2]
tabakhase has joined #ruby
tabakhase has joined #ruby
mdavid613 has quit [Quit: Leaving.]
serivich has quit [Ping timeout: 265 seconds]
<vimz> Ox0dea thanks for the gotcha, I did spot that was an OR :)
sinkensabe has quit [Ping timeout: 244 seconds]
FernandoBasso has quit [Quit: May the force be with you.]
TheNet has quit [Quit: Leaving...]
rbowlby has joined #ruby
yfeldblum has quit [Remote host closed the connection]
diegoviola has quit [Quit: WeeChat 1.2]
yfeldblum has joined #ruby
diegoviola has joined #ruby
christiandsg has quit [Remote host closed the connection]
perturbation has quit [Quit: Leaving]
<Ox0dea> vimz: Right, but /[a|b]/ isn't an OR; it's a character class that matches the characters 'a', '|', and 'b'.
christiandsg has joined #ruby
xxneolithicxx has quit [Quit: Leaving.]
jeramyRR has joined #ruby
doctorly has joined #ruby
jfarmer has quit []
einarj has quit [Remote host closed the connection]
juanpablo_ has joined #ruby
MatthewsFace has joined #ruby
RegulationD has joined #ruby
fullofcaffeine has quit [Remote host closed the connection]
apt-get_ has quit [Quit: Quit]
fullofcaffeine has joined #ruby
juanpablo_ has quit [Ping timeout: 244 seconds]
iceyec has joined #ruby
RegulationD has quit [Ping timeout: 240 seconds]
_lexjm has joined #ruby
<vimz> is it possible for ruby code to know what method it is inside? def foo magic_method #=> 'Im inside foo' end def baz magic_method #=> 'Im inside baz' end
leesharma has quit [Quit: leesharma]
rbowlby has quit [Remote host closed the connection]
rbowlby has joined #ruby
tubulife- has joined #ruby
workmad3 has quit [Ping timeout: 240 seconds]
fullofcaffeine has quit [Remote host closed the connection]
fullofcaffeine has joined #ruby
michael_mbp has quit [Excess Flood]
michael_mbp has joined #ruby
tubulife- has quit [Ping timeout: 244 seconds]
shpoont has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
dgutierrez1287 has joined #ruby
fgo has joined #ruby
<banister> vimz __method__
<banister> >> def foo; "i'm inside #{__method__}"; end; foo
<ruboto> banister # => "i'm inside foo" (https://eval.in/406414)