havenwood changed the topic of #ruby to: Rules & more: https://ruby-community.com | Ruby 2.6.4, 2.5.6, 2.7.0-preview1: https://www.ruby-lang.org | Paste 4+ lines of text to https://dpaste.de/ and select Ruby as the language | Rails questions? Ask in #RubyOnRails | Books: https://goo.gl/wpGhoQ | Logs: https://irclog.whitequark.org/ruby | Can't talk? Register/identify with Nickserv first!
sputnik13 has joined #ruby
Guest68047 has joined #ruby
Guest68047 has quit [Client Quit]
hutch1 has joined #ruby
<leftylink> I used to have the patience to set it up
<leftylink> these days... not sure?
al2o3-cr has quit [Ping timeout: 246 seconds]
Swyper has joined #ruby
davidw_ has quit [Ping timeout: 245 seconds]
arahael4 has joined #ruby
<yoshie902a> I’m doing some meta programming and wondering if there is a way to see the code that it’s creating. Is this possible?
arahael3 has quit [Ping timeout: 265 seconds]
DaRock has joined #ruby
hutch1 has quit [Ping timeout: 245 seconds]
sputnik13 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
sagax has quit [Remote host closed the connection]
twe4ked has quit [Read error: Connection reset by peer]
twe4ked has joined #ruby
mre- has joined #ruby
murarisumit has joined #ruby
poontangmessiah has quit [Ping timeout: 245 seconds]
mre- has quit [Ping timeout: 276 seconds]
murarisumit has quit [Ping timeout: 245 seconds]
sagax has joined #ruby
jenrzzz has quit [Ping timeout: 258 seconds]
Fernando-Basso has quit [Remote host closed the connection]
al2o3-cr has joined #ruby
Intelo has quit [Read error: Connection reset by peer]
dasher00 has quit [Ping timeout: 245 seconds]
hutch1 has joined #ruby
bluetown has joined #ruby
x77686d has quit [Quit: x77686d]
hiroaki has quit [Ping timeout: 245 seconds]
x77686d has joined #ruby
skyikot has joined #ruby
r29v has joined #ruby
AJA4350 has quit [Quit: AJA4350]
yoshie902a has left #ruby [#ruby]
Esa_ has quit []
drincruz has joined #ruby
r29v has quit [Quit: r29v]
gix has joined #ruby
Azure has quit [Read error: Connection reset by peer]
Azure has joined #ruby
fphilipe has joined #ruby
fphilipe has quit [Ping timeout: 276 seconds]
hutch1 has quit [Ping timeout: 264 seconds]
galaxie has joined #ruby
ramfjord has quit [Ping timeout: 265 seconds]
<baweaver> havenwood: what was your magic fizzbuzz seed?
<havenwood> baweaver: I have a few depending on what you want the starting array to be!
<baweaver> whatever the biggest size was you got to
<havenwood> baweaver: A short one in a loop is: 1.upto(100).each_slice(15).flat_map { |a| srand 6898176339; a.map { |n| [nil, 'Fizz', 'Buzz', 'FizzBuzz'].freeze.sample || n } }
<havenwood> baweaver: sec, checking on biggest
<havenwood> baweaver: 24 consecutive results with 76_780_826_960 without a 25+ found up to 295_731_899_514
<havenwood> baweaver: The starting array for 24 is: [*[nil] * 53, *['Fizz'] * 27, *['Buzz'] * 14, *['FizzBuzz'] * 6].freeze
<havenwood> it'll take beyond the heat death of the universe to find 100, so i'll probably give up
<havenwood> that, or get very, very lucky
<havenwood> baweaver: i kinda like the 15 cycle
<havenwood> it's a shame you can't actually get a seed for 100 in a row
<havenwood> i wonder if there's a 25 before 1_000_000_000_000
murarisumit has joined #ruby
<havenwood> i just like the 15 looping variant, which is luckily easy to find for whatever starting array :)
ur5us has quit [Remote host closed the connection]
<havenwood> baweaver: 1.step.lazy.each_slice(15).flat_map { |a| srand 6898176339; a.map { |n| [n, 'Fizz', 'Buzz', 'FizzBuzz'].sample } }.first(1000)
ur5us has joined #ruby
<havenwood> Or maybe start it?: (1..).lazy
ur5us has quit [Read error: Connection reset by peer]
ur5us has joined #ruby
cesario has joined #ruby
<baweaver> cesario: oh?
<havenwood> A #then makes it seem one-linery:
<havenwood> (1..).lazy.each_slice(15).flat_map { |a| srand(6898176339).then { a.map { |n| [n, 'Fizz', 'Buzz', 'FizzBuzz'].sample } } }
<baweaver> "you could probably encode the first 100 answers in 200 bits and just a) bitshift, b) split 2 LSBs, and c) map them?"
<baweaver> havenwood ^
gix has quit [Ping timeout: 240 seconds]
xco has quit [Quit: xco]
<havenwood> baweaver: haha
<baweaver> p (0..99).map {|i| ([i+1] + %w[buzz fizz fizzbuzz])[0x60920c21824830860920c21824830860920c21824830860920 >> (i * 2) & 3] } * ','
<baweaver> &>> p (0..99).map {|i| ([i+1] + %w[buzz fizz fizzbuzz])[0x60920c21824830860920c21824830860920c21824830860920 >> (i * 2) & 3] } * ','
<rubydoc> # =>... check link for more (https://carc.in/#/r/7lfn)
<baweaver> havenwood
jenrzzz has joined #ruby
<havenwood> baweaver: ooh, clever one!!
<havenwood> baweaver: very nice.
<havenwood> baweaver: And then a left shift of 1 in place of the * makes it look even fancier.
<havenwood> (0..99).map { |i| [i.succ, :buzz, :fizz, :fizzbuzz][0x60920c21824830860920c21824830860920c21824830860920 >> i << 1 & 3] }
<havenwood> >> i <<
<ruby[bot]> havenwood: I'm terribly sorry, I could not evaluate your code because of an error: NoMethodError:undefined method `[]' for nil:NilClass
<havenwood> >> puts (0..99).map { |i| [i.succ, :buzz, :fizz, :fizzbuzz][0x60920c21824830860920c21824830860920c21824830860920 >> i << 1 & 3] }
<ruby[bot]> havenwood: I'm terribly sorry, I could not evaluate your code because of an error: NoMethodError:undefined method `[]' for nil:NilClass
<baweaver> i.succ -> i + 1 ?
<havenwood> aye
<baweaver> &>> (0..99).map { |i| %W(#{i + 1} buzz fizz fizzbuzz)[0x60920c21824830860920c21824830860920c21824830860920 >> i << 1 & 3] }
<rubydoc> # => ["1", "2", "3", "4", "5", "fizz", "7", "8", "fizz", "10", "11", "fizz", "13", "14", "15", "16", "17",... check link for more (https://carc.in/#/r/7lfo)
<baweaver> &>> (0..99).map { |i| %W(#{i.succ} buzz fizz fizzbuzz)[0x60920c21824830860920c21824830860920c21824830860920 >> i << 1 & 3] }
<rubydoc> # => ["1", "2", "3", "4", "5", "fizz", "7", "8", "fizz", "10", "11", "fizz", "13", "14", "15", "16", "17",... check link for more (https://carc.in/#/r/7lfp)
<havenwood> >> puts (0..).lazy.map { |i| [i.succ, :buzz, :fizz, :fizzbuzz][0x60920c21824830860920c21824830860920c21824830860920 >> i << 1 & 3] }.first(100)
<ruby[bot]> havenwood: I'm terribly sorry, I could not evaluate your code because of an error: NoMethodError:undefined method `[]' for nil:NilClass
<baweaver> & before
<rubydoc> parser error at position 0 around ` '
<havenwood> ¯\_(ツ)_/¯
jenrzzz has quit [Ping timeout: 265 seconds]
<baweaver> &>> puts (0..).lazy.map { |i| [i.succ, :buzz, :fizz, :fizzbuzz][0x60920c21824830860920c21824830860920c21824830860920 >> i << 1 & 3] }.first(100)
<rubydoc> # => 1... check link for more (https://carc.in/#/r/7lfq)
xco has joined #ruby
spacesuitdiver has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mre- has joined #ruby
mre- has quit [Ping timeout: 240 seconds]
xco has quit [Quit: xco]
murarisumit has quit [Ping timeout: 268 seconds]
cesario has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cesario has joined #ruby
banisterfiend has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
brool has quit [Ping timeout: 245 seconds]
jmcgnh_ has joined #ruby
jmcgnh has quit [Ping timeout: 258 seconds]
jmcgnh_ is now known as jmcgnh
jmcgnh has quit [Excess Flood]
sputnik13 has joined #ruby
jmcgnh has joined #ruby
poontangmessiah has joined #ruby
sputnik13 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
claw has quit [Ping timeout: 276 seconds]
fphilipe has joined #ruby
fphilipe has quit [Ping timeout: 246 seconds]
<cesario> baweaver : who are you?
sputnik13 has joined #ruby
poontangmessiah has quit [Remote host closed the connection]
cesario has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cesario has joined #ruby
sputnik13 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
sputnik13 has joined #ruby
cesario has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
howdoi has joined #ruby
<baweaver> Ex manager went by cesario, pinged him and found out he goes by jcesario on IRC
claw has joined #ruby
MrCrackPot has joined #ruby
banisterfiend has joined #ruby
alfiemax has joined #ruby
jmcgnh_ has joined #ruby
jmcgnh has quit [Ping timeout: 276 seconds]
jmcgnh_ is now known as jmcgnh
DaRock has quit [Ping timeout: 240 seconds]
murarisumit has joined #ruby
_whitelogger has joined #ruby
chalkmonster has joined #ruby
chalkmonster has quit [Client Quit]
SeepingN has quit [Quit: The system is going down for reboot NOW!]
chalkmonster has joined #ruby
fphilipe has joined #ruby
sauvin has joined #ruby
Tempesta has quit [Quit: See ya!]
ur5us has quit [Remote host closed the connection]
x77686d has quit [Quit: x77686d]
ur5us has joined #ruby
fphilipe_ has joined #ruby
fphilipe has quit [Ping timeout: 276 seconds]
ur5us has quit [Ping timeout: 265 seconds]
blackmesa has joined #ruby
queip has quit [Ping timeout: 276 seconds]
Tempesta has joined #ruby
kyrylo has joined #ruby
<kyrylo> Hey there! Does anyone know why `obj.method(:foo)` raises a NameError when `obj.respond_to?(:foo) #=> true`. I cannot think of a scenario but a user of my library reports such a bug
queip has joined #ruby
Mrgoose84 has quit [Ping timeout: 240 seconds]
reber has joined #ruby
<baweaver> kyrylo: wat
<baweaver> ...how
<baweaver> huh
<kyrylo> Yeah, that's me right now: "wat"
<kyrylo> :)
<kyrylo> Some context, if it's helpful https://github.com/airbrake/airbrake/issues/1009
<baweaver> havenwood: nerd snipe from hell
<kyrylo> That method is defined on a Rails model, fwiw
Mrgoose84 has joined #ruby
<baweaver> waitasec, I didn't know I could define the english ops
<baweaver> Where was the method method anyways?
<baweaver> was looking for that and respond_to?
<baweaver> "Returns true if obj responds to the given method. Private and protected methods are included in the search only if the optional second parameter evaluates to true."
<baweaver> But the second wasn't given, so :/
<phaul> &>> class X; def foo; raise NameError; end; end; X.new.foo
<rubydoc> stderr: -e:2:in `foo': NameError (NameError)... check link for more (https://carc.in/#/r/7lgp)
<baweaver> Ah, it is on Object
<baweaver> must have missed it last time
x77686d has joined #ruby
<baweaver> obj_method, need to read into that.
andikr has joined #ruby
<phaul> oh you are not calling it..
<baweaver> ID id = rb_check_id(&vid); ... if (!id) { name error }
vondruch has joined #ruby
Mrgoose84 has quit [Ping timeout: 265 seconds]
<kyrylo> respond_to also uses rb_check_id
Mrgoose84 has joined #ruby
<baweaver> hrm
<baweaver> This is going to bug me for a while
<kyrylo> Hehe
<banisterfiend> kyrylo hi homo
<phaul> is it possible that either respond_to? or method was monkey patched in the users code?
<kyrylo> banisterfiend, shouldn't you be sleeping?
<banisterfiend> can't sleep so just working instead
<kyrylo> phaul, interesting idea
<banisterfiend> need to get this stupid ip filter to respect the kill switch and lan settings
<baweaver> So you have a problem that needs addressed :D
cesario has joined #ruby
<banisterfiend> kyrylo method_missing i guess
<banisterfiend> someone probably implemented respond_to_missing?
<kyrylo> Hmm, also a good clue
<banisterfiend> rails models do a lot of method_missing logic
<banisterfiend> s/logic/magic
<kyrylo> tragic
absolutejam has joined #ruby
<banisterfiend> respond_to_missing? exists to avoid the issue with method(foo)
<banisterfiend> perhaps they overrode using method_missing but didn't implement respond_to_missing? :)
<banisterfiend> (but they still overrode just respond_to?)
<havenwood> yeah, i was wondering about respond_to? where they override with @attributes
<kyrylo> All good ideas but still doesn't explain why it works 99.9% and fails in some cases (according to them)
<banisterfiend> get them to add some logging
<havenwood> heisenattributes?
<havenwood> foo = Foo.new; foo.instance_exec { o = Object.new; def o.initialized?; true end; @attributes['bar'] = o }
<havenwood> this ^ foo at least will `foo.respond_to? :bar #=> true` but `foo.bar #!> NoMethodError
<havenwood> `
<banisterfiend> ruby feels like playdoh these days :)
<havenwood> put it in the microwave, obvs
<banisterfiend> what does that do to playdoh? 😅
<banisterfiend> explodes and covers the microwave walls?
<havenwood> in my experience, it melts everything. EVERYTHING.
<banisterfiend> k00
<havenwood> my girlfriend objects to how i use the microwave. i prefer to just not have a microwave. >.>
<havenwood> kyrylo: using attributes api at all or straight models backed by db?
<kyrylo> havenwood, did you mean something else? your code raises for me
absolutejam has quit [Ping timeout: 246 seconds]
<kyrylo> They said: "In our case, the User class is a standard Rails model inherited from ApplicationRecord, with email as a field in the database"
<kyrylo> So models
<havenwood> kyrylo: works for me in a fresh Rails app with new model Foo. hrm.
<havenwood> kyrylo: only thing i can think is somehow the attributes key is flickering.
<havenwood> kyrylo: no hypothesis why.
<kyrylo> I'm not familiar with "attributes". Is it a rails thing?
x77686d has quit [Quit: x77686d]
<banisterfiend> which IRC clients do you guys use on mac?
<havenwood> banisterfiend: Textual
<banisterfiend> me too, but it's expensive and crashes a fair amount
<havenwood> can buy or just compile it yourself for free
<banisterfiend> oh
dretnx has joined #ruby
<havenwood> or build LimeChat yourself, but Textual actually works well for me
<kyrylo> banisterfiend, I'm on textual but it never crashes for me
<banisterfiend> lol they stole a lot of the code from limechat "Copyright (c) 2008 - 2010 Satoshi Nakagawa <psychs AT limechat DOT net>"
<havenwood> yeah, it's just a fork
<banisterfiend> those poor bastards wrote the whole thing in objective C
<havenwood> kyrylo: i have no clue, but i gave this railsconf talk on it: https://youtu.be/6h5TbKBnLws
meinside has joined #ruby
<kyrylo> havenwood, haha okay
dinfuehr has quit [Ping timeout: 245 seconds]
<havenwood> kyrylo: sec, i'll try to find what i'm talking about in rails code
<havenwood> i'm thinking of a particular `def respond_to` but needle in haystack
<havenwood> or memory fails me
dinfuehr has joined #ruby
<kyrylo> Either way, big thanks for the help, everyone. At least there's a way to move forwards now
queip has quit [Ping timeout: 240 seconds]
Intelo has joined #ruby
karstenk has joined #ruby
<kyrylo> So you think it may be the case that the bug is there because they don't define respond_to_missing?
<kyrylo> Thanks for the link, may come in handy in case they do use Attributes (I asked for a clarification)
<karstenk> "Could not find gemnasium-gitlab-service-0.2.6 in any of the sources" cause its yanked by debian. How to workaround?
<kyrylo> 👍
cesario has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dviola has joined #ruby
<havenwood> kyrylo: i was actually thinking because for some reason the @attributes intermittently had or didn't have the key. i don't have a concrete hypothesis - just thought if @attributes.key?('foo') #=> true one sec and not the next it would explain.
<havenwood> dunno. i'm reaching. ¯\_(ツ)_/¯
cesario has joined #ruby
queip has joined #ruby
mre- has joined #ruby
<havenwood> karstenk: git clone https://github.com/gemnasium/gemnasium-gitlab-service.git && cd gemnasium-gitlab-service && gem ins -g && rake install
alem0lars has joined #ruby
mre- has quit [Ping timeout: 276 seconds]
fphilipe_ has quit [Ping timeout: 276 seconds]
sputnik13 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
sputnik13 has joined #ruby
lxsameer has joined #ruby
suukim has joined #ruby
TomyWork has joined #ruby
<karstenk> rake install doesnt work
<havenwood> karstenk: hrm, alternatively try manually doing a:
<havenwood> gem build gemnasium-gitlab-service.gemspec && gem install gemnasium-gitlab-service-*.gem
<havenwood> karstenk: altogether: git clone https://github.com/gemnasium/gemnasium-gitlab-service.git && cd gemnasium-gitlab-service && gem install -g && gem build gemnasium-gitlab-service.gemspec && gem install gemnasium-gitlab-service-*.gem
<havenwood> I guess you could skip the `gem install -g` since it just references the gemspec and you're not doing development.
<havenwood> karstenk: to just clone and build the gem: git clone https://github.com/gemnasium/gemnasium-gitlab-service.git && cd gemnasium-gitlab-service && gem build gemnasium-gitlab-service.gemspec && gem install gemnasium-gitlab-service-*.gem
Intelo has quit [Ping timeout: 258 seconds]
absolutejam has joined #ruby
<havenwood> karstenk: a bundler/rake varient: gem install bundler && git clone https://github.com/gemnasium/gemnasium-gitlab-service.git && cd gemnasium-gitlab-service && bundle exec rake install
fphilipe_ has joined #ruby
<havenwood> karstenk: (rake install just does the gem install/build step in one)
queip has quit [Ping timeout: 268 seconds]
Intelo has joined #ruby
Intelo has quit [Read error: Connection reset by peer]
queip has joined #ruby
schne1der has joined #ruby
dbugger has joined #ruby
DaRock has joined #ruby
Fischmiep has joined #ruby
<karstenk> havenwood Thanks that installation seemed to work, but I get still the error: Could not find gemnasium-gitlab-service-0.2.6 in any of the sources
<karstenk> seems not to find the installation
<havenwood> karstenk: what command gives that error?
<karstenk> sudo -u git -H bundle install --deployment --without development test mysql aws kerberos
<karstenk> This problem seem to be present in all versions dependend to gemnasium-gitlab-service . Opened an issue, but hoping still to find a workaround with your help havenwood
<karstenk> I upgraded to buster and so I needed to upgrade to ruby 2.4 cause of openssl. That causes my gitlab problems and trys to fast forward
<karstenk> Iam exactly on the installation guide except ruby version and now stuck with that bundle install command
<havenwood> karstenk: mm, i see. looking at the install guide.
<havenwood> karstenk: using the apt ruby + apt gems is messing you up here since the gemnasium package was yanked
<karstenk> :-(
<havenwood> karstenk: options include using `sudo gem install` versions of gems with your apt ruby or installing ruby another way (happy to show a few to choose from)
<havenwood> karstenk: apt publishes a subset of gems. many folk opt to instead simply use rubygems for gems, which makes all gems available but not via apt packages.
<havenwood> karstenk: err, these instructions show building ruby yourself?
bitwinery has quit [Quit: Leaving]
<karstenk> yes
<karstenk> but Ive installed ruy with another guid cause I need ruby >2.3
<havenwood> karstenk: show your?: bundle config
<havenwood> karstenk: mind sanity checking a few things? what is your?: gem which bundler
<havenwood> karstenk: and what is?: which bundle
<havenwood> karstenk: and you're on Ruby 2.4?
<havenwood> karstenk: ruby -v
<havenwood> karstenk: what's your?: gem env gempath
<karstenk> ruby 2.4.0rc1
<karstenk> . /root/.gem/ruby/2.4.0:/usr/local/lib/ruby/gems/2.4.0
<havenwood> karstenk: hrm, latest 2.4 is 2.4.7. you should probably install that version.
<havenwood> karstenk: and is gemnasium-gitlab-service installed?: gem which gemnasium-gitlab-service
<karstenk> ERROR: Can't find ruby library file or shared library gemnasium-gitlab-service
<havenwood> karstenk: sudo gem install gemnasium-gitlab-service-*.gem
<havenwood> git clone https://github.com/gemnasium/gemnasium-gitlab-service.git && cd gemnasium-gitlab-service && gem build gemnasium-gitlab-service.gemspec && sudo gem install gemnasium-gitlab-service-*.gem
<havenwood> karstenk: from scratch ^
<havenwood> karstenk: then check?: gem which gemnasium-gitlab-service
sputnik13 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<karstenk> Successfully installed gemnasium-gitlab-service-0.2.6 / 1 gem installed but still ERROR: Can't find ruby library file or shared library gemnasium-gitlab-service
<havenwood> karstenk: sudo gem which gemnasium-gitlab-service
<karstenk> iam root, thats same error
<havenwood> hrm
<havenwood> where'd it install to?
<havenwood> gem env gemdir
blackmesa1 has joined #ruby
<karstenk> /usr/local/lib/ruby/gems/2.4.0
<havenwood> karstenk: and that's in your gempath: /root/.gem/ruby/2.4.0:/usr/local/lib/ruby/gems/2.4.0
<karstenk> thats what the command returns
<havenwood> so you should see it with gem which!
<karstenk> but i dont
<karstenk> :(
<havenwood> yeah, i'm not sure why it's showing it's installing but then disappearing
<havenwood> karstenk: gem install gemnasium-gitlab-service-*.gem --verbose --debug
blackmesa has quit [Ping timeout: 245 seconds]
<karstenk> only first two exceptions:
<karstenk> Exception `Errno::EEXIST' at /usr/local/lib/ruby/2.4.0/fileutils.rb:228 - File exists @ dir_s_mkdir - /usr/local/lib/ruby/gems/2.4.0
<karstenk> Exception `Errno::ENOENT' at /usr/local/lib/ruby/2.4.0/fileutils.rb:1220 - No such file or directory @ rb_file_s_lstat - /usr/local/lib/ruby/gems/2.4.0/extensions/x86_64-linux/2.4.0-static/gemnasium-gitlab-service-0.2.6
Fischmiep has quit [Ping timeout: 250 seconds]
<havenwood> karstenk: i'm too tired to read the instructions you were following. maybe someone with fresher eyes can weigh in. the default `gem env gempath` or env var `GEM_PATH` point to where RubyGems will try to load gems. The `gem env gemdir` or `GEM_HOME` is where Ruby will install gems.
alfiemax has quit [Remote host closed the connection]
AJA4350 has joined #ruby
<havenwood> /usr/local/lib/ruby/gems/2.4.0 is in your gempath and you seem to be installing to /usr/local/lib/ruby/gems/2.4.0/gems/gemnasium-gitlab-service-0.2.6 so i don't see what the problem is
BH23 has joined #ruby
<havenwood> karstenk: oh, it's not in your bundle
<havenwood> karstenk: i'm tired
<havenwood> someone else should probably help!
skyikot has quit [Ping timeout: 260 seconds]
<havenwood> karstenk: is gemnasium-gitlab-service in your Gemfile?
<havenwood> that's easier
cesario has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<havenwood> karstenk: add a gem directive to Gemfile: gem 'gemnasium-gitlab-service', github: 'gemnasium/gemnasium-gitlab-service'
<havenwood> karstenk: then: bundle
<havenwood> karstenk: technically, you shouldn't use that if ^ format until bundler 2.0+
<havenwood> karstenk: if earlier bundler, then: gem 'gemnasium-gitlab-service', git: 'https://github.com/gemnasium/gemnasium-gitlab-service.git'
<havenwood> then proceed
alfiemax has joined #ruby
hd1 has joined #ruby
<hd1> having a metric buttload of trouble installing the nio4r gem on windows
<hd1> anyone got a moment to help?
ramfjord has joined #ruby
Fusl has quit [Excess Flood]
Fusl has joined #ruby
sputnik13 has joined #ruby
ramfjord has quit [Ping timeout: 258 seconds]
<phaul> ?ask hd1
<ruby[bot]> hd1: Don't ask to ask. Just ask your question, and if anybody can help, they will likely try to do so.
murarisumit has quit [Ping timeout: 265 seconds]
<havenwood> karstenk: ah, right. the --deployment flag means it'll refuse with this error. you can simply first: bundle --no-deployment
<havenwood> karstenk: then the --deployment flag will work once again
<havenwood> karstenk: have the mkmf.log handy?
<havenwood> oops, meant that ^ for hd1
cgfbee has quit [Ping timeout: 245 seconds]
banisterfiend has quit [Ping timeout: 265 seconds]
sputnik13 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
sputnik13 has joined #ruby
yasumi2136 has joined #ruby
cgfbee has joined #ruby
alem0lars has quit [Remote host closed the connection]
<karstenk> havenwwod ive changed now to 2.5 debian default version of ruby, made your steps again, but also with bundler 1.15 or 2.1.0 all results in Could not find gemnasium-gitlab-service-0.2.6 in any of the sources
<karstenk> sudo -u git -H bundle install --no-deployment --path vendor/bundle same
alfiemax has quit [Remote host closed the connection]
jmcgnh has quit [Ping timeout: 265 seconds]
murarisumit has joined #ruby
alem0lars has joined #ruby
jmcgnh has joined #ruby
sputnik13 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
alfiemax has joined #ruby
<havenwood> karstenk: what's the current error?
<havenwood> karstenk: oh, you mean it's not in the sources with that, gotcha
alem0lars has quit [Read error: Connection reset by peer]
Fernando-Basso has joined #ruby
dviola has quit [Quit: WeeChat 2.6]
<havenwood> karstenk: show your Gemfile and Gemfile.lock? Maybe someone here can spot what's wrong.
<havenwood> karstenk: i'd have thought it'd work to point that gem to github, but i gotta run. happy to look with fresh eyes in the morning if someone hasn't helped. with the Gemfile and Gemfile.lock it should be reproducible.
alfiemax has quit [Ping timeout: 264 seconds]
ur5us has joined #ruby
tdy has quit [Ping timeout: 240 seconds]
ur5us has quit [Read error: Connection reset by peer]
alfiemax has joined #ruby
ur5us has joined #ruby
akosednar has quit [Ping timeout: 245 seconds]
akosednar has joined #ruby
akosednar has quit [Changing host]
akosednar has joined #ruby
meinside has quit [Quit: Connection closed for inactivity]
alfiemax has quit [Remote host closed the connection]
alfiemax has joined #ruby
Fischmiep has joined #ruby
cesario has joined #ruby
kyrylo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Fischmiep has quit [Ping timeout: 265 seconds]
Fernando-Basso has quit [Remote host closed the connection]
cesario has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
banisterfiend has joined #ruby
dasher00 has joined #ruby
xco has joined #ruby
queip has quit [Ping timeout: 276 seconds]
cesario has joined #ruby
queip has joined #ruby
cesario has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
fphilipe_ has quit [Read error: Connection reset by peer]
DaRock has quit [Read error: Connection reset by peer]
fphilipe_ has joined #ruby
Fischmiep has joined #ruby
alfiemax has quit [Remote host closed the connection]
Fischmiep has quit [Ping timeout: 276 seconds]
mre- has joined #ruby
<karstenk> Gemfile and Gemfile.lock https://github.com/gitlabhq/gitlabhq/tree/9-4-stable havenwood
luminousnine has quit [Remote host closed the connection]
xfbs has quit [Write error: Connection reset by peer]
Fischmiep has joined #ruby
mre- has quit [Ping timeout: 245 seconds]
alfiemax has joined #ruby
Swyper has quit [Remote host closed the connection]
luminousnine has joined #ruby
luminousnine has quit [Changing host]
luminousnine has joined #ruby
alfiemax has quit [Ping timeout: 265 seconds]
Fischmiep has quit [Ping timeout: 276 seconds]
nahra` has joined #ruby
chalkmonster has quit [Quit: WeeChat 2.6]
Swyper has joined #ruby
nahra has quit [Ping timeout: 245 seconds]
NL3limin4t0r_afk is now known as NL3limin4t0r
xfbs has joined #ruby
fphilipe_ has quit [Read error: Connection reset by peer]
involans has joined #ruby
Swyper has quit [Ping timeout: 264 seconds]
alfiemax has joined #ruby
ur5us has quit [Remote host closed the connection]
ur5us has joined #ruby
ellcs has joined #ruby
banisterfiend has quit [Quit: Textual IRC Client: www.textualapp.com]
banisterfiend has joined #ruby
ur5us has quit [Ping timeout: 264 seconds]
Swyper has joined #ruby
reyfi9e has quit [Ping timeout: 264 seconds]
Guest12048 is now known as maxmanders
reyfi9e has joined #ruby
suukim has quit [Quit: Konversation terminated!]
involans has quit [Quit: involans]
alfiemax has quit [Remote host closed the connection]
x77686d has joined #ruby
GodFather has joined #ruby
reyfi9e has quit [Quit: Konversation term]
reyfi9e has joined #ruby
banisterfiend has quit [Quit: Textual IRC Client: www.textualapp.com]
banisterfiend has joined #ruby
kyrylo has joined #ruby
Swyper has quit [Remote host closed the connection]
banisterfiend has quit [Client Quit]
banisterfiend has joined #ruby
banisterfiend has quit [Client Quit]
banisterfiend has joined #ruby
banisterfiend has quit [Client Quit]
andikr has quit [Ping timeout: 268 seconds]
andikr has joined #ruby
Swyper has joined #ruby
Swyper has quit [Remote host closed the connection]
drincruz has quit [Ping timeout: 276 seconds]
banisterfiend has joined #ruby
banisterfiend has quit [Read error: Connection reset by peer]
rafadc_ has joined #ruby
involans has joined #ruby
ellcs has quit [Ping timeout: 276 seconds]
rafadc has quit [Ping timeout: 258 seconds]
banisterfiend has joined #ruby
rafadc_ has quit [Read error: Connection reset by peer]
pep7 has joined #ruby
pep7 has joined #ruby
pep7 has quit [Changing host]
rafadc has joined #ruby
BH23 has quit [Ping timeout: 276 seconds]
blackmesa1 has quit [Ping timeout: 246 seconds]
reber has quit [Remote host closed the connection]
Swyper has joined #ruby
ellcs has joined #ruby
DaRock has joined #ruby
Swyper has quit [Ping timeout: 252 seconds]
murarisumit has quit [Ping timeout: 245 seconds]
x77686d has quit [Quit: x77686d]
Swyper has joined #ruby
absolutejam has quit [Ping timeout: 258 seconds]
andikr has quit [Ping timeout: 265 seconds]
Swyper has quit [Remote host closed the connection]
yasumi2136_ has joined #ruby
absolutejam has joined #ruby
BH23 has joined #ruby
yasumi2136 has quit [Ping timeout: 245 seconds]
queip has quit [Ping timeout: 246 seconds]
alfiemax has joined #ruby
Technodrome has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
queip has joined #ruby
ellcs has quit [Remote host closed the connection]
ellcs has joined #ruby
rafadc_ has joined #ruby
rafadc has quit [Ping timeout: 240 seconds]
rafadc_ has quit [Read error: Connection reset by peer]
blackmesa1 has joined #ruby
rafadc has joined #ruby
xco has quit [Quit: xco]
x77686d has joined #ruby
poontangmessiah has joined #ruby
blackmesa1 has quit [Ping timeout: 245 seconds]
involans has quit [Quit: involans]
jrafanie has joined #ruby
fphilipe_ has joined #ruby
karstenk has quit [Remote host closed the connection]
chalkmonster has joined #ruby
donofrio has joined #ruby
alfiemax has quit [Remote host closed the connection]
andikr has joined #ruby
vondruch has quit [Ping timeout: 265 seconds]
eclm has joined #ruby
alfiemax has joined #ruby
hutch1 has joined #ruby
x77686d has quit [Quit: x77686d]
djdduty has quit [Ping timeout: 245 seconds]
x77686d has joined #ruby
andikr has quit [Ping timeout: 245 seconds]
fphilipe_ has quit [Read error: Connection reset by peer]
fphilipe_ has joined #ruby
banisterfiend has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Fischmiep has joined #ruby
hutch1 has quit [Ping timeout: 250 seconds]
lucasb has joined #ruby
ravenous_ has joined #ruby
x77686d has quit [Quit: x77686d]
Fischmiep has quit [Ping timeout: 265 seconds]
alfiemax has quit [Remote host closed the connection]
schne1der has quit [Ping timeout: 276 seconds]
yasumi2136_ has quit [Remote host closed the connection]
ravenous_ has quit [Ping timeout: 252 seconds]
queip has quit [Ping timeout: 246 seconds]
troulouliou_div2 has joined #ruby
akem-lnvo has joined #ruby
murarisumit has joined #ruby
skyikot has joined #ruby
drincruz has joined #ruby
blackmesa1 has joined #ruby
queip has joined #ruby
murarisumit has quit [Ping timeout: 246 seconds]
andikr has joined #ruby
akem_lnvo has joined #ruby
alfiemax has joined #ruby
jrafanie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
akem-lnvo has quit [Ping timeout: 276 seconds]
ramfjord has joined #ruby
ramfjord has quit [Ping timeout: 245 seconds]
Rapture has joined #ruby
murarisumit has joined #ruby
drincruz has quit [Quit: WeeChat 2.6]
blackmesa1 has quit [Ping timeout: 250 seconds]
drincruz has joined #ruby
Technodrome has joined #ruby
fig-le-deunch has joined #ruby
Fraeon has quit [Ping timeout: 245 seconds]
Fraeon has joined #ruby
queip has quit [Ping timeout: 240 seconds]
mre- has joined #ruby
queip has joined #ruby
yann-kaelig has joined #ruby
chalkmonster has quit [Quit: WeeChat 2.6]
etupat has joined #ruby
jacksoow has quit [Read error: Connection reset by peer]
jacksoow has joined #ruby
spacesuitdiver has joined #ruby
kyrylo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
tdy has joined #ruby
<etupat> Hello folks! I am pretty new to Ruby (I'm a JS Dev) but tasked with modifying a script. It's a pretty simply modification-- I think it will only involve 5 LoC. However, I am unsure what is wrong with my solution. Was hoping a kind soul could assist. Current code block is just 12 lines, and I think I'd only need to add the 5 LoC shown in this pastebin. https://pastebin.com/wsMYhCkS
<ruby[bot]> etupat: we in #ruby do not like pastebin.com, it loads slowly for most, has ads which are distracting and has terrible formatting. Please use https://gist.github.com
grilix has joined #ruby
<etupat> ruby[bot]: I don't feel comfortable using gists
jottr has joined #ruby
pep7 has quit [Quit: Leaving]
queip has quit [Ping timeout: 240 seconds]
akem__ has joined #ruby
skyikot has quit [Ping timeout: 260 seconds]
queip has joined #ruby
akem_lnvo has quit [Ping timeout: 245 seconds]
x77686d has joined #ruby
hutch1 has joined #ruby
skyikot has joined #ruby
SeepingN has joined #ruby
Fraeon has quit [Ping timeout: 240 seconds]
<TheBrayn> why not?
chalkmonster has joined #ruby
nisstyre has joined #ruby
nisstyre has left #ruby ["WeeChat 2.5"]
xco has joined #ruby
<etupat> Because I don't want to save my company's code to gist
<etupat> Pastebin at least disappears and isn't associated with my github account
<etupat> And pastebin is perfectly readable for small snippets
Fraeon has joined #ruby
<etupat> In fact, this is the first time I've heard a complaint about it :P
<etupat> I think the problem is just my script is having some weird background issues where it's not logging basic stuff. (I also realized my .map statement needs to be a object.each do |k,v| sort of thing)
Esa_ has joined #ruby
chalkmonster has quit [Quit: WeeChat 2.6]
phaul has quit [Quit: :wq]
phaul has joined #ruby
phaul has quit [Client Quit]
schne1der has joined #ruby
phaul has joined #ruby
ellcs has quit [Ping timeout: 264 seconds]
<phaul> ruby[bot]: is a bot and it was thaught about telling ppl off many years ago when you could create anonymous gists easily without registering.. These days the topic recommends dpaste.de
<phaul> I would say just ignore the bot for now, Im happy to look at your snippet. Others on the channel might think differently though
hd1 has quit [Remote host closed the connection]
Fraeon has quit [Ping timeout: 245 seconds]
nahra` has quit [Quit: ERC (IRC client for Emacs 26.2)]
ellcs has joined #ruby
absolutejam has quit [Ping timeout: 268 seconds]
<adam12> Pastebin just looks like a wall of text for me usually. Unless I'm completely idle, I don't bother looking at them. Time is valuable, and having to drill through someones unfamiliar, completely similar looking code just isn't enjoyable.
<phaul> etupat: on line 40 what was the intention? Isn't that just a dead bit of code? It's not part of any conditional.
Fraeon has joined #ruby
jrafanie has joined #ruby
<phaul> etupat: also assigning a value to local variable is suspect there, the result of the block would go to the map, the value assignment is also a no-op.
DaRock has quit [Ping timeout: 276 seconds]
<phaul> etupat: the if statement if the condition is false would evaluate to nil. but the nils will still be there in the resulting array
donofrio has quit [Ping timeout: 240 seconds]
<phaul> and finally to_h probably expects an array of pair of things which your block doesn't provide
nahra has joined #ruby
<phaul> if you would just want to transofrm the stored values in a hash I recommend you look up #transform_values
<phaul> &ri transform_values
Fraeon has quit [Ping timeout: 245 seconds]
xco has quit [Quit: xco]
alfiemax has quit [Remote host closed the connection]
andikr has quit [Remote host closed the connection]
dbugger has quit [Quit: Leaving]
<etupat> phaul: Apologies-- I have updated the code block-- https://pastebin.com/kkqG5Yc6
<ruby[bot]> etupat: as I told you already, please use https://gist.github.com
Fraeon has joined #ruby
<etupat> phaul: Awesome, thank you for that documentation I am checking it out now
xco has joined #ruby
chalkmonster has joined #ruby
<phaul> I think using that would solve your issues. One thing to point out is that even in .each your assignment just modifies a local variable that has no effect on the hash
<etupat> phaul: Ahh, I see. I will attempt to put into place a transform then.
arne_ has joined #ruby
<arne_> are there cool ncurses programs written in rubeeeeh?
<adam12> arne_: Yast2 from SuSE I think.
<arne_> i am wondering and planning to do something with ruby, that's why i ask
suukim has joined #ruby
<arne_> (and maybe decide to not use ruby for the cli)
Fraeon has quit [Ping timeout: 240 seconds]
rippa has joined #ruby
Fraeon has joined #ruby
murarisumit has quit [Ping timeout: 245 seconds]
<adam12> arne_: It's not ncurses but the tty collection of gems are quite nice too. Depends on what you're building I guess.
<adam12> arne_: https://ttytoolkit.org/
xco has quit [Quit: xco]
<arne_> cool, thanks alot
<arne_> adam12: what i am going to write is hard to describe
GodFather has quit [Ping timeout: 258 seconds]
<arne_> it's supposed to be able to do anything what a fullstack developer does but code
fig-le-deunch has quit [Ping timeout: 240 seconds]
<arne_> thanks i will look into that collection of ttytools
<arne_> g2g now!
murarisumit has joined #ruby
<adam12> arne_: cheers!
TomyWork has quit [Ping timeout: 246 seconds]
murarisumit has quit [Ping timeout: 246 seconds]
tdy has quit [Ping timeout: 240 seconds]
etupat has quit [Remote host closed the connection]
davidw_ has joined #ruby
<otaznik[m]> =)
queip has quit [Ping timeout: 268 seconds]
etupat has joined #ruby
murarisumit has joined #ruby
poontangmessiah has quit [Remote host closed the connection]
fig-le-deunch has joined #ruby
queip has joined #ruby
murarisumit has quit [Ping timeout: 265 seconds]
sputnik13 has joined #ruby
x77686d has quit [Quit: x77686d]
cthu| has quit [Ping timeout: 245 seconds]
jacksoow_ has joined #ruby
akem__ has quit [Quit: Leaving]
SeepingN has quit [Ping timeout: 246 seconds]
jacksoow has quit [Ping timeout: 276 seconds]
murarisumit has joined #ruby
greengriminal has joined #ruby
fuzzface has joined #ruby
<greengriminal> For those who have used the Ruby-Kafka gem I could do with a little help. I'm producing a message to a topic and the gem is being rescued here: https://github.com/zendesk/ruby-kafka/blob/93c45a8c531e8b447f1cd9127c8bc6ce8070c0e6/lib/kafka/produce_operation.rb#L180 digging deeper I located the class error definition here: https://github.com/zendesk/ruby-kafka/blob/0f29b7605bdfc58808b880163acd5dc18ec7e409/lib/kafka.rb#L40
<greengriminal> My question is what does CRC even stand for.
fuzzface has quit [Client Quit]
BH23 has quit [Ping timeout: 246 seconds]
<greengriminal> Cyclic Redundancy Check is what it stands for. I just don't get quite why it would be doing this comparison.
murarisumit has quit [Ping timeout: 265 seconds]
ellcs has quit [Ping timeout: 264 seconds]
troulouliou_div2 has quit [Remote host closed the connection]
Technodrome has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
hutch1 has quit [Ping timeout: 246 seconds]
murarisumit has joined #ruby
gnufied has quit [Ping timeout: 276 seconds]
Technodrome has joined #ruby
murarisumit has quit [Ping timeout: 240 seconds]
involans has joined #ruby
murarisumit has joined #ruby
involans_ has joined #ruby
involans has quit [Client Quit]
involans_ is now known as involans
absolutejam has joined #ruby
banisterfiend has joined #ruby
karstenk has joined #ruby
gnufied has joined #ruby
<karstenk> Please can someone help with https://paste.fedoraproject.org/paste/fD7dS7HR-BQuA7kxEClPhA error when trying to install charlock_holmes 0.7.3
<havenwood> greengriminal: it looks like there are various places where Protocol.handle_error is called. if it's success, the argument will be: 0
fphilipe_ has quit [Read error: Connection reset by peer]
<havenwood> greengriminal: in your case, it's a: 2
<havenwood> karstenk: oh, hi! good morning.
<havenwood> karstenk: seems you have an icu4c version mismatch for this charlock_holmes version.
gnufied has quit [Ping timeout: 268 seconds]
<havenwood> karstenk: guessing it's not as simple as just installing libicu-dev?
trickymalone has joined #ruby
Rapture has quit [Quit: Textual IRC Client: www.textualapp.com]
trickymalone has quit [Client Quit]
mre- has quit [Ping timeout: 240 seconds]
etupat has quit [Remote host closed the connection]
trickymalone has joined #ruby
trickymalone has quit [Client Quit]
etupat has joined #ruby
trickymalone has joined #ruby
trickymalone has quit [Read error: Connection reset by peer]
trickymalone has joined #ruby
trickymalone has quit [Remote host closed the connection]
trickymalone has joined #ruby
spacesuitdiver has quit [Quit: Textual IRC Client: www.textualapp.com]
john__ has joined #ruby
john__ has quit [Remote host closed the connection]
mre- has joined #ruby
banisterfiend has quit [Quit: Textual IRC Client: www.textualapp.com]
cthu| has joined #ruby
hutch1 has joined #ruby
mre- has quit [Ping timeout: 240 seconds]
mre- has joined #ruby
zapata has quit [Read error: Connection reset by peer]
zapata has joined #ruby
chalkmonster has quit [Quit: WeeChat 2.6]
trickymalone has quit [Remote host closed the connection]
trickymalone has joined #ruby
dretnx has quit [Ping timeout: 268 seconds]
mre- has quit [Ping timeout: 265 seconds]
NL3limin4t0r is now known as NL3limin4t0r_afk
banisterfiend has joined #ruby
chalkmonster has joined #ruby
trickymalone has quit [Remote host closed the connection]
banisterfiend has quit [Client Quit]
blackmesa1 has joined #ruby
blackmesa has joined #ruby
fig-le-deunch has quit [Read error: Connection reset by peer]
absolutejam has quit [Ping timeout: 246 seconds]
ellcs has joined #ruby
blackmesa1 has quit [Ping timeout: 264 seconds]
drincruz has quit [Read error: No route to host]
drincruz_ has joined #ruby
involans has quit [Quit: involans]
blackmesa1 has joined #ruby
involans has joined #ruby
suukim has quit [Quit: Konversation terminated!]
SeepingN has joined #ruby
blackmesa has quit [Ping timeout: 264 seconds]
mre- has joined #ruby
blackmesa1 has quit [Ping timeout: 252 seconds]
galaxie has quit [Remote host closed the connection]
mre- has quit [Ping timeout: 258 seconds]
galaxie has joined #ruby
mre- has joined #ruby
drincruz has joined #ruby
banisterfiend has joined #ruby
brool has joined #ruby
hutch1 has quit [Ping timeout: 245 seconds]
<greengriminal> havenwood, yup I can see that and was following.
<greengriminal> Just trying to understand a bit better why its being thrown.
drincruz_ has quit [Ping timeout: 268 seconds]
jottr has quit [Ping timeout: 240 seconds]
ramfjord has joined #ruby
ellcs has quit [Ping timeout: 276 seconds]
Technodrome has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
greengriminal has quit [Quit: This computer has gone to sleep]
alan_w has joined #ruby
involans has quit [Quit: involans]
eclm has quit [Ping timeout: 276 seconds]
involans has joined #ruby
jrafanie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ellcs has joined #ruby
brool has quit [Ping timeout: 276 seconds]
greengriminal has joined #ruby
gix has joined #ruby
hightower3 has quit [Read error: Connection reset by peer]
mre- has quit [Ping timeout: 265 seconds]
xfbs has quit [Remote host closed the connection]
luminousnine has quit [Remote host closed the connection]
chalkmonster has quit [Quit: WeeChat 2.6]
tdy has joined #ruby
AndroUser2 has quit [Read error: Connection reset by peer]
luminousnine has joined #ruby
luminousnine has quit [Changing host]
luminousnine has joined #ruby
blackmesa1 has joined #ruby
xfbs has joined #ruby
involans has quit [Quit: involans]
involans has joined #ruby
banisterfiend has quit [Read error: Connection reset by peer]
queip has quit [Ping timeout: 240 seconds]
gnufied has joined #ruby
queip has joined #ruby
sauvin has quit [Read error: Connection reset by peer]
jrafanie has joined #ruby
involans has quit [Quit: involans]
mre- has joined #ruby
dinfuehr has quit [Ping timeout: 268 seconds]
interruptinuse is now known as inty
dinfuehr has joined #ruby
inty is now known as interruptinuse
mre- has quit [Ping timeout: 258 seconds]
yann-kaelig has quit [Quit: yann-kaelig]
lxsameer has quit [Ping timeout: 258 seconds]
absolutejam has joined #ruby
fphilipe_ has joined #ruby
john__ has joined #ruby
john__ has quit [Remote host closed the connection]
Fernando-Basso has joined #ruby
tdy has quit [Ping timeout: 240 seconds]
fphilipe_ has quit [Ping timeout: 268 seconds]
Ven`` has joined #ruby
mre- has joined #ruby
kasiakoun has joined #ruby
kasiakoun has quit [Read error: Connection reset by peer]
BTRE has quit [Remote host closed the connection]
absolutejam has quit [Quit: WeeChat 2.5]
tdy has joined #ruby
BTRE has joined #ruby
greengriminal has quit [Quit: This computer has gone to sleep]
hutch1 has joined #ruby
Fischmiep has joined #ruby
rafadc has quit [Ping timeout: 265 seconds]
hutch1 has quit [Ping timeout: 245 seconds]
rafadc has joined #ruby
rafadc has quit [Read error: Connection reset by peer]
GodFather has joined #ruby
<galaxie> My mind is blanking, what's that called in Ruby when you use something like *args or just * ?
blackmesa has joined #ruby
rafadc has joined #ruby
fphilipe_ has joined #ruby
blackmesa1 has quit [Ping timeout: 276 seconds]
cd has joined #ruby
mre- has quit [Ping timeout: 258 seconds]
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
<galaxie> Never mind, it's splat.
al2o3-cr has quit [Ping timeout: 246 seconds]
bitwinery has joined #ruby
al2o3-cr has joined #ruby
etupat has quit [Remote host closed the connection]
etupat has joined #ruby
etupat has quit [Remote host closed the connection]
etupat has joined #ruby
greengriminal has joined #ruby
mre- has joined #ruby
ellcs has quit [Ping timeout: 264 seconds]
etupat has quit [Remote host closed the connection]
mre- has quit [Ping timeout: 265 seconds]
thexa4 has joined #ruby
MrBismuth has quit [Read error: Connection reset by peer]
fphilipe_ has quit [Ping timeout: 276 seconds]
jrafanie_ has joined #ruby
jrafanie has quit [Ping timeout: 258 seconds]
Fischmiep has quit [Ping timeout: 246 seconds]
tdy has quit [Ping timeout: 245 seconds]
hutch1 has joined #ruby
mre- has joined #ruby
jrafanie_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
involans has joined #ruby
MrBismuth has joined #ruby
involans has quit [Quit: involans]
kegster has joined #ruby
ur5us has joined #ruby
<phaul> galaxie: splat
<phaul> oh. nvm :)
hutch1 has quit [Ping timeout: 245 seconds]
etupat has joined #ruby
etupat has quit [Remote host closed the connection]
etupat has joined #ruby
etupat has quit [Ping timeout: 265 seconds]
kaleido has quit [Quit: out]
jcalla has quit [Quit: Leaving]
kaleido has joined #ruby
involans has joined #ruby
etupat has joined #ruby
queip has quit [Ping timeout: 258 seconds]
involans has quit [Quit: involans]
tdy has joined #ruby
involans has joined #ruby
queip has joined #ruby
etupat has quit [Ping timeout: 276 seconds]
hutch1 has joined #ruby
schne1der has quit [Ping timeout: 240 seconds]
involans has quit [Quit: involans]
Fernando-Basso has quit [Remote host closed the connection]
tdy has quit [Ping timeout: 258 seconds]
murarisumit has quit [Ping timeout: 240 seconds]
involans has joined #ruby
s2013 has joined #ruby
jenrzzz has joined #ruby
skyikot has quit [Ping timeout: 260 seconds]
involans has quit [Quit: involans]
Ai9zO5AP has joined #ruby
involans has joined #ruby
involans has quit [Client Quit]
involans has joined #ruby
jrafanie has joined #ruby
involans has quit [Client Quit]
murarisumit has joined #ruby
involans has joined #ruby
hutch1 has quit [Ping timeout: 245 seconds]
murarisumit has quit [Ping timeout: 268 seconds]
involans has quit [Client Quit]
involans has joined #ruby
involans has quit [Client Quit]
involans has joined #ruby
involans has quit [Client Quit]
Swyper has joined #ruby
tdy has joined #ruby
Ven`` has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Ven`` has joined #ruby
Ven`` has quit [Client Quit]
greengriminal has quit [Quit: This computer has gone to sleep]
impermanence has joined #ruby
tdy has quit [Ping timeout: 245 seconds]
thexa4 has quit [Quit: My computer has gone to sleep. ZZZzzz…]
s2013 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
thexa4 has joined #ruby
murarisumit has joined #ruby
jrafanie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
murarisumit has quit [Ping timeout: 268 seconds]
etupat has joined #ruby
cesario has joined #ruby
grilix has quit [Ping timeout: 245 seconds]
r29v has joined #ruby
hutch1 has joined #ruby
cesario has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jenrzzz_ has joined #ruby
yokel has joined #ruby
murarisumit has joined #ruby
jenrzzz has quit [Ping timeout: 276 seconds]
brool has joined #ruby
cesario has joined #ruby
davidw_ has quit [Ping timeout: 276 seconds]
murarisumit has quit [Ping timeout: 268 seconds]
queip has quit [Ping timeout: 245 seconds]
cthulchu has joined #ruby
queip has joined #ruby
cthu| has quit [Ping timeout: 245 seconds]
Swyper has quit [Remote host closed the connection]
r29v has quit [Quit: r29v]
sputnik13 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
tdy has joined #ruby
cow[moo] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cesario has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
murarisumit has joined #ruby
davidw_ has joined #ruby
mre- has quit [Ping timeout: 265 seconds]
skyikot has joined #ruby
murarisumit has quit [Ping timeout: 240 seconds]
ramfjord has quit [Ping timeout: 268 seconds]
jenrzzz_ has quit [Ping timeout: 265 seconds]
drincruz has quit [Ping timeout: 265 seconds]
Rudd0 has quit [Ping timeout: 244 seconds]
Rudd0 has joined #ruby
jenrzzz has joined #ruby
ramfjord has joined #ruby
ravenous_ has joined #ruby
blackmesa has quit [Ping timeout: 250 seconds]
r29v has joined #ruby
ravenous_ has quit [Ping timeout: 246 seconds]
r29v has quit [Ping timeout: 240 seconds]
cjkinni has joined #ruby
hutch1 has quit [Ping timeout: 246 seconds]
mre- has joined #ruby
lucasb has quit [Quit: Connection closed for inactivity]
tdy has quit [Ping timeout: 276 seconds]
mre- has quit [Ping timeout: 265 seconds]
bitwinery has quit [Remote host closed the connection]
jenrzzz has quit [Ping timeout: 265 seconds]
hutch1 has joined #ruby
bitwinery has joined #ruby
ishahnaz has joined #ruby
ishahnaz has quit [Client Quit]