adam12 changed the topic of #ruby to: Rules: https://ruby-community.com | Ruby 3.0.1, 2.7.3, 2.6.7: https://www.ruby-lang.org | Paste 4+ lines to: https://gist.github.com | Books: https://goo.gl/wpGhoQ | Logs: https://irclog.whitequark.org/ruby | BLM <3
Dooky has joined #ruby
Dooky has quit [Client Quit]
Dooky has joined #ruby
hiroaki has quit [Ping timeout: 260 seconds]
Lyubo1 has quit [Ping timeout: 240 seconds]
Dooky has quit [Quit: ZZZzzz…]
robotbee_ has quit [Remote host closed the connection]
robotbee_ has joined #ruby
Dooky has joined #ruby
gearnode has quit [Quit: WeeChat 3.1]
Lyubo1 has joined #ruby
explorier has quit [Ping timeout: 252 seconds]
explorier has joined #ruby
s2013 has joined #ruby
deviantfero has joined #ruby
robotmay has quit [Ping timeout: 245 seconds]
robotmay has joined #ruby
jenrzzz has quit [Ping timeout: 252 seconds]
jenrzzz has joined #ruby
jenrzzz has quit [Ping timeout: 265 seconds]
robotbee_ has quit [Ping timeout: 240 seconds]
jenrzzz has joined #ruby
jetchisel has joined #ruby
RhodiumTo4d has quit [Ping timeout: 260 seconds]
jenrzzz has quit [Ping timeout: 268 seconds]
gix has quit [Ping timeout: 268 seconds]
User4588 has joined #ruby
User4588_ has quit [Ping timeout: 265 seconds]
jenrzzz has joined #ruby
jenrzzz has quit [Ping timeout: 240 seconds]
jenrzzz has joined #ruby
jenrzzz has quit [Ping timeout: 268 seconds]
Cristi4nBerteleg has joined #ruby
jenrzzz has joined #ruby
robotbee_ has joined #ruby
Dooky has quit [Quit: bye bye]
jenrzzz has quit [Ping timeout: 240 seconds]
jenrzzz has joined #ruby
jenrzzz has quit [Ping timeout: 240 seconds]
robotbee_ has quit [Ping timeout: 246 seconds]
s2013 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Qchmqs has quit [Ping timeout: 265 seconds]
evdubs_ has joined #ruby
evdubs__ has quit [Ping timeout: 240 seconds]
ghormoon_ has joined #ruby
ghormoon has quit [Ping timeout: 252 seconds]
gray_-_wolf has quit [Ping timeout: 265 seconds]
gray_-_wolf has joined #ruby
pyra has joined #ruby
jenrzzz has joined #ruby
robotbee has joined #ruby
ur5us_ has quit [Ping timeout: 268 seconds]
ur5us_ has joined #ruby
ChmEarl has quit [Quit: Leaving]
robotbee has quit [Ping timeout: 240 seconds]
Cristi4nBerteleg has quit [Remote host closed the connection]
s2013 has joined #ruby
m27frogy has quit [Ping timeout: 240 seconds]
MalkbabY has quit [Remote host closed the connection]
MalkbabY has joined #ruby
deviantfero has quit [Quit: WeeChat 3.1]
dinfuehr has quit [Ping timeout: 260 seconds]
dinfuehr has joined #ruby
ur5us__ has joined #ruby
ur5us_ has quit [Ping timeout: 250 seconds]
robotbee has joined #ruby
TrufflePump has quit [Ping timeout: 258 seconds]
adam12 has quit [Quit: Ping timeout (120 seconds)]
adam12 has joined #ruby
robotbee has quit [Ping timeout: 240 seconds]
s2013 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
adam12 has quit [Quit: Ping timeout (120 seconds)]
adam12 has joined #ruby
TrufflePump has joined #ruby
jenrzzz has quit [Ping timeout: 240 seconds]
mangold has joined #ruby
TrufflePump has quit [Ping timeout: 258 seconds]
dinfuehr has quit [Ping timeout: 260 seconds]
jenrzzz has joined #ruby
dinfuehr has joined #ruby
explorier has quit [Ping timeout: 268 seconds]
jenrzzz has quit [Ping timeout: 240 seconds]
jenrzzz has joined #ruby
explorier has joined #ruby
adam12 has quit [Ping timeout: 260 seconds]
factormystic has quit [Read error: Connection reset by peer]
factormystic has joined #ruby
ur5us__ has quit [Ping timeout: 252 seconds]
mangold has quit [Ping timeout: 246 seconds]
adam12 has joined #ruby
evdubs_ is now known as evdubs
evdubs has quit [Quit: Leaving]
adam12 has quit [Read error: Connection reset by peer]
adam126 has joined #ruby
evdubs has joined #ruby
prion has joined #ruby
TK__ has joined #ruby
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
adam12 has joined #ruby
adam126 has quit [Ping timeout: 268 seconds]
TrufflePump has joined #ruby
<nakilon> I wish Array#transpose could accept optional arg to fill the rows that aren't long enough
<nakilon> for example, I take Range from Google Spreadsheet and their API returns rows of different length if there are empty cells on the right
<nakilon> and then in my case I have to transpose that table
bamdad has quit [Ping timeout: 240 seconds]
bamdad_ has joined #ruby
jetchisel has quit [Quit: Unfortunately time is always against us -- [Morpheus]]
jetchisel has joined #ruby
prion has quit [Ping timeout: 265 seconds]
pyra is now known as lunatkitty
lunatkitty is now known as lunarkitty
TrufflePump has quit [Ping timeout: 258 seconds]
TrufflePump has joined #ruby
jenrzzz has quit [Ping timeout: 240 seconds]
jenrzzz has joined #ruby
TrufflePump has quit [Ping timeout: 258 seconds]
teclator has joined #ruby
<al2o3-cr> nakilon: can you not use Array#zip?
evdubs_ has joined #ruby
jla has joined #ruby
evdubs has quit [Ping timeout: 268 seconds]
feriman has joined #ruby
jla has quit [Ping timeout: 240 seconds]
dinfuehr has quit [Ping timeout: 265 seconds]
dinfuehr has joined #ruby
vondruch has joined #ruby
jla has joined #ruby
<nakilon> al2o3-cr what?
<nakilon> inject zip mess will cut the width of the table to the width of the first line
<al2o3-cr> &>> a = [[1,2,3],[4,5],[6,7,8],[9,0]]; a[0].zip(*a[1..])
<rubydoc> # => [[1, 4, 6, 9], [2, 5, 7, 0], [3, nil, 8, nil]] (https://carc.in/#/r/b5uu)
<al2o3-cr> ^ nakilon
<al2o3-cr> &>> fill = -> (sub) { sub.map { _1 || ":)" } }; a = [[1,2,3],[4,5],[6,7,8],[9,0]]; a[0].zip(*a[1..]).map &fill
<rubydoc> # => [[1, 4, 6, 9], [2, 5, 7, 0], [3, ":)", 8, ":)"]] (https://carc.in/#/r/b5uv)
<nakilon> &>> a = [[0],[1,2,3],[4,5],[6,7,8],[9,0]]; a[0].zip(*a[1..])
<rubydoc> # => [[0, 1, 4, 6, 9]] (https://carc.in/#/r/b5uw)
<al2o3-cr> If any array in other_arrays is larger than self, its trailing elements are ignored:
<al2o3-cr> Ah, I should of looked at the docs first :p
elcuervo has quit [Read error: Connection reset by peer]
jenrzzz has quit [Ping timeout: 265 seconds]
elcuervo has joined #ruby
vondruch has quit [Read error: Connection reset by peer]
vondruch_ has joined #ruby
vondruch_ is now known as vondruch
jenrzzz has joined #ruby
Rudd0 has quit [Ping timeout: 265 seconds]
<al2o3-cr> &>> a = [[0],[1,2,3],[4,5],[6,7,8],[9,0]]; sz = a.map(&:size).max; sz.times.map { |idx| a.map { |sub| sub.fetch(idx, nil) } }
<rubydoc> # => [[0, 1, 4, 6, 9], [nil, 2, 5, 7, 0], [nil, 3, nil, 8, nil]] (https://carc.in/#/r/b5ux)
<al2o3-cr> ^ nakilon
jenrzzz has quit [Ping timeout: 252 seconds]
jenrzzz has joined #ruby
teclator has quit [Quit: No Ping reply in 180 seconds.]
teclator has joined #ruby
* al2o3-cr going for a quick shower to freshen up :)
jenrzzz has quit [Ping timeout: 265 seconds]
<nakilon> that's a mess
<nakilon> that should not exist
<nakilon> transpose should have a fill= arg
jla has left #ruby [#ruby]
hiroaki has joined #ruby
jenrzzz has joined #ruby
jamees has joined #ruby
jenrzzz has quit [Ping timeout: 260 seconds]
jenrzzz has joined #ruby
<al2o3-cr> no it shouldn't, it a matrix op.
jenrzzz has quit [Ping timeout: 252 seconds]
_nick_ has quit [Remote host closed the connection]
_nick_ has joined #ruby
<nakilon> it's not Matrix class
prion has joined #ruby
jenrzzz has joined #ruby
vondruch has quit [Ping timeout: 246 seconds]
howdoi has quit [Quit: Connection closed for inactivity]
TrufflePump has joined #ruby
jamees has quit [Quit: Connection closed]
gearnode has joined #ruby
TrufflePump has quit [Ping timeout: 258 seconds]
MalkbabY has quit [Remote host closed the connection]
MalkbabY has joined #ruby
jenrzzz has quit [Ping timeout: 265 seconds]
_nick_ has quit [Ping timeout: 265 seconds]
TK__ has quit [Ping timeout: 245 seconds]
ur5us__ has joined #ruby
jenrzzz has joined #ruby
neozor has joined #ruby
<neozor> Good morning from my part of the world
<neozor> What do you think of rubocop? Is it worth or is it too much?
<nakilon> my opinion is it's a cancer
<gearnode> neozor: I just don't understand the problem solve by rubocop
<nakilon> no visible correlation between "how well the code is written" and "was rubocop used" but onviously visible waste of time on configuring and following it
<nakilon> so it depends on specific project and its team
<gearnode> I mean if you gave review from other engineers in theory you don't need rubocop at all
jenrzzz has quit [Ping timeout: 240 seconds]
<neozor> I found it interesting to read and apply, but i felt i was procrastinating
<nakilon> gearnode in my team the guy followed his own rubocop rules and didn't listen to the reviewer, lol
vondruch has joined #ruby
jenrzzz has joined #ruby
<neozor> nakilon: lol
User4588_ has joined #ruby
User4588 has quit [Ping timeout: 252 seconds]
feriman has quit [Ping timeout: 252 seconds]
User4588_ has quit [Ping timeout: 268 seconds]
explorier has quit [Ping timeout: 260 seconds]
explorier has joined #ruby
cliluw has quit [Ping timeout: 260 seconds]
jenrzzz has quit [Ping timeout: 260 seconds]
jenrzzz has joined #ruby
<gearnode> nakilon: So the real problem is how your team communicate, rubocop or other tools can't fix that
jenrzzz has quit [Ping timeout: 252 seconds]
infinityfye has joined #ruby
<neozor> What I've found interesting ire the corollaries and notes describing why certain rule should be followed, rather than blindly obeying rubocop
whysthatso has quit [Read error: Connection reset by peer]
whysthatso has joined #ruby
jenrzzz has joined #ruby
TrufflePump has joined #ruby
Bounga has joined #ruby
TrufflePump has quit [Ping timeout: 258 seconds]
jidar has quit [Ping timeout: 252 seconds]
<nakilon> those notes are often nonsense
jidar has joined #ruby
jenrzzz has quit [Ping timeout: 240 seconds]
al2o3-cr has quit [Ping timeout: 252 seconds]
prion has quit [Ping timeout: 240 seconds]
jenrzzz has joined #ruby
Rudd0 has joined #ruby
feriman has joined #ruby
jenrzzz has quit [Ping timeout: 252 seconds]
Mia has quit [Read error: Connection reset by peer]
TrufflePump has joined #ruby
Mia has joined #ruby
Mia has joined #ruby
Mia has quit [Changing host]
TrufflePump has quit [Ping timeout: 258 seconds]
EvilJStoker has quit [Ping timeout: 245 seconds]
EvilJStoker has joined #ruby
jenrzzz has joined #ruby
ur5us__ has quit [Ping timeout: 240 seconds]
jenrzzz has quit [Ping timeout: 240 seconds]
TrufflePump has joined #ruby
jenrzzz has joined #ruby
TrufflePump has quit [Ping timeout: 258 seconds]
jenrzzz has quit [Ping timeout: 268 seconds]
jla has joined #ruby
jla has left #ruby [#ruby]
feriman has quit [Ping timeout: 252 seconds]
jla has joined #ruby
jenrzzz has joined #ruby
m27frogy has joined #ruby
jenrzzz has quit [Ping timeout: 252 seconds]
duderonomy has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
shtirlic has quit [Remote host closed the connection]
jenrzzz has joined #ruby
jenrzzz has quit [Ping timeout: 260 seconds]
mangold has joined #ruby
mangold has quit [Read error: Connection reset by peer]
vondruch has quit [Ping timeout: 268 seconds]
jenrzzz has joined #ruby
<gearnode> nakilon: Completely agree with that.
User4588 has joined #ruby
whysthatso8 has joined #ruby
whysthatso has quit [Ping timeout: 240 seconds]
whysthatso8 is now known as whysthatso
jenrzzz has quit [Ping timeout: 252 seconds]
whysthatso has quit [Ping timeout: 252 seconds]
Dooky has joined #ruby
mangold has joined #ruby
Technodrome has joined #ruby
mangold_ has joined #ruby
stryek has joined #ruby
mangold has quit [Ping timeout: 252 seconds]
Kilobyte22 has quit [Quit: ZNC - 1.6.0 - http://znc.in]
jenrzzz has joined #ruby
Kilo`byte has joined #ruby
whysthatso has joined #ruby
jenrzzz has quit [Ping timeout: 265 seconds]
MalkbabY has quit [Remote host closed the connection]
MalkbabY has joined #ruby
jenrzzz has joined #ruby
vondruch has joined #ruby
jla has quit [Ping timeout: 252 seconds]
jenrzzz has quit [Ping timeout: 252 seconds]
prion has joined #ruby
jenrzzz has joined #ruby
feriman has joined #ruby
jenrzzz has quit [Ping timeout: 252 seconds]
explorier has quit [Ping timeout: 240 seconds]
explorier has joined #ruby
mangold_ has quit [Ping timeout: 252 seconds]
jenrzzz has joined #ruby
jenrzzz has quit [Ping timeout: 246 seconds]
robotbee has joined #ruby
Tobi[m]2 has quit [Ping timeout: 245 seconds]
rrootss[m] has quit [Ping timeout: 245 seconds]
amateurassassin has quit [Ping timeout: 260 seconds]
Exuma has joined #ruby
infernix has quit [Quit: ZNC - http://znc.sourceforge.net]
wallacer has quit [Ping timeout: 245 seconds]
amateurassassin has joined #ruby
deviantfero has joined #ruby
Phoebus has quit [Ping timeout: 250 seconds]
itok has quit [Ping timeout: 260 seconds]
jenrzzz has joined #ruby
Phoebus has joined #ruby
gmcintire has quit [Ping timeout: 260 seconds]
rrootss[m] has joined #ruby
markin has quit [Read error: Connection reset by peer]
itok has joined #ruby
itok has quit [Excess Flood]
Tobi[m]2 has joined #ruby
Phoebus has quit [Ping timeout: 245 seconds]
markin has joined #ruby
itok has joined #ruby
gmcintire has joined #ruby
shtirlic has joined #ruby
wallacer has joined #ruby
Phoebus has joined #ruby
itok has quit [Max SendQ exceeded]
darthThorik has quit [Ping timeout: 260 seconds]
itok has joined #ruby
darthThorik has joined #ruby
hiroaki has quit [Ping timeout: 260 seconds]
Exuma has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jenrzzz has quit [Ping timeout: 260 seconds]
vondruch has quit [Remote host closed the connection]
endorama has quit [Remote host closed the connection]
shtirlic has quit [Read error: Connection reset by peer]
infernix has joined #ruby
voker57 has quit [Ping timeout: 260 seconds]
Technodrome has quit [Remote host closed the connection]
shtirlic has joined #ruby
Guest10524 has quit [Ping timeout: 240 seconds]
endorama has joined #ruby
t1054Gues has joined #ruby
tempate has quit [Quit: ZNC 1.7.2 - https://znc.in]
tempate has joined #ruby
tempate has quit [Changing host]
tempate has joined #ruby
hiroaki has joined #ruby
jenrzzz has joined #ruby
DTZUZU_ has joined #ruby
FetidToot has quit [Quit: Ping timeout (120 seconds)]
whysthatso has quit [Quit: Ping timeout (120 seconds)]
kinduff5 has joined #ruby
adam124 has joined #ruby
FetidToot7 has joined #ruby
jinie has quit [Quit: ZNC 1.8.2 - https://znc.in]
dan64 has quit [Quit: ZNC - http://znc.in]
LtHummus_ has quit [Remote host closed the connection]
jinie has joined #ruby
shtirlic has quit [Read error: Connection reset by peer]
DTZUZU has quit [Read error: Connection reset by peer]
shtirlic has joined #ruby
pwnd_ has quit [Quit: Ping timeout (120 seconds)]
adam12 has quit [Quit: Ping timeout (120 seconds)]
kinduff has quit [Quit: Ping timeout (120 seconds)]
s2013 has joined #ruby
Inoperable has quit [Quit: All your buffer are belong to us!]
kinduff5 is now known as kinduff
adam124 is now known as adam12
LtHummus has joined #ruby
dan64 has joined #ruby
sphex has quit [Ping timeout: 240 seconds]
jenrzzz has quit [Ping timeout: 260 seconds]
neozor has quit [Remote host closed the connection]
Dooky has quit [Ping timeout: 240 seconds]
sphex has joined #ruby
TrufflePump has joined #ruby
Exuma has joined #ruby
TrufflePump has quit [Ping timeout: 258 seconds]
In0perable has joined #ruby
jenrzzz has joined #ruby
Exuma has quit [Quit: Textual IRC Client: www.textualapp.com]
ChmEarl has joined #ruby
jenrzzz has quit [Ping timeout: 240 seconds]
howdoi has joined #ruby
memcorrupt has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Ping timeout: 240 seconds]
jenrzzz has joined #ruby
s2013 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
cthu| has joined #ruby
jenrzzz has quit [Ping timeout: 240 seconds]
jenrzzz has joined #ruby
gray_-_wolf has quit [Quit: ZNC 1.8.2 - https://znc.in]
Azure has joined #ruby
jenrzzz has quit [Ping timeout: 252 seconds]
gray_-_wolf has joined #ruby
Azure has quit [Quit: Textual IRC Client: www.textualapp.com]
mangold has joined #ruby
orbyt_ has joined #ruby
jla has joined #ruby
jenrzzz has joined #ruby
<rapha> muahahahahahah! /dev/sdc 31256106336 1095197680 30159442736 4% /srv/archive
ShekharReddy has joined #ruby
Bounga has quit [Ping timeout: 260 seconds]
mangold has quit [Ping timeout: 252 seconds]
Azure has joined #ruby
SeepingN has joined #ruby
jenrzzz has quit [Ping timeout: 240 seconds]
cow[moo] has joined #ruby
memcorrupt has quit [Quit: -a- ...]
jenrzzz has joined #ruby
jenrzzz has quit [Ping timeout: 260 seconds]
s2013 has joined #ruby
jenrzzz has joined #ruby
mangold has joined #ruby
prion has quit [Quit: WeeChat 2.8]
mangold has quit [Ping timeout: 240 seconds]
KeinBock has joined #ruby
KeinBock is now known as hsmath
jla has quit [Ping timeout: 252 seconds]
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
stryek has quit [Quit: Connection closed for inactivity]
MalkbabY has quit [Remote host closed the connection]
MalkbabY has joined #ruby
TrufflePump has joined #ruby
mangold has joined #ruby
ZeiP has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
ZeiP has joined #ruby
ZeiP has quit [Client Quit]
explorier has quit [Ping timeout: 252 seconds]
explorier has joined #ruby
teardown has joined #ruby
<teardown> is there a way to get an array of hosts included in an IPv4Net object in netaddr >= 2.04
cliluw has joined #ruby
nasred1ne has joined #ruby
SeepingN has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mangold has quit [Ping timeout: 240 seconds]
<adam12> teardown: I don’t believe so.
<adam12> teardown: Can you convert to an IPAddr from sodlib?
<adam12> stdlib
swaggboi has quit [Quit: C-x C-c]
jla has joined #ruby
SeepingN has joined #ruby
swaggboi has joined #ruby
mangold has joined #ruby
ZeiP has joined #ruby
ShekharReddy has quit [Quit: Connection closed for inactivity]
SeepingN has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
nasred1ne has quit [Ping timeout: 265 seconds]
SeepingN has joined #ruby
jla has quit [Ping timeout: 240 seconds]
deviantfero has quit [Ping timeout: 240 seconds]
_nick_ has joined #ruby
mangold has quit [Ping timeout: 268 seconds]
mangold has joined #ruby
<leftylink> hmm, if I print an about-to-be-reassigned var by tapping on its new value, will I be able to see its old value at that point in time... better just try it out
<leftylink> pinkpandabot: rb a = 5; a = 6.tap { puts "was #{a} now #{_1}" }
<pinkpandabot> was 5 now 6 - 1 more lines - https://carc.in/#/r/b5y6
<leftylink> okay, that is what I wanted. it would honestly have been weird if I were unable to get the old value at that point in time, in fact
DTZUZU_ has quit [Ping timeout: 240 seconds]
duderonomy has joined #ruby
tronk has joined #ruby
DTZUZU_ has joined #ruby
DTZUZU_ has quit [Read error: Connection reset by peer]
DTZUZU_ has joined #ruby
jwr has joined #ruby
jla has joined #ruby
<jwr> I'm getting a strange SSL error when attempting to do `bundle install` in an alpine linux container. https://pastebin.com/raw/yv3HRueQ Anybody have thoughts on this? I wouldn't doubt that I'm missing a dependency or something, but `curl https://rubygems.org/gems/rake-13.0.1.gem` works fine.
<ruby[bot]> jwr: as I told you already, please use https://gist.github.com
Dooky has joined #ruby
<jwr> adam12: i came across that in my googling and all checks came back successful. https://pastebin.com/raw/84u2rkCt
<ruby[bot]> jwr: as I told you already, please use https://gist.github.com
<adam12> jwr: Can you paste `gem env`? Not sure there’s going to be anything interesting in there but worth a shot.
<ruby[bot]> jwr: as I told you already, please use https://gist.github.com
deviantfero has joined #ruby
<adam12> jwr: And can you paste curl -Ivv https://rubygems.org/gems/rake-13.0.1.gem
<adam12> (that’s a capital i
<jwr> adam12: sure, looks like that was successful too. https://pastebin.com/raw/WBDJzG1t
<ruby[bot]> jwr: as I told you already, please use https://gist.github.com
<adam12> jwr: Yea. A real enigma...
s2013 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
_nick_ has quit [Remote host closed the connection]
<adam12> jwr: That SSLv3 peice of the error stinks. It’s almost as if it’s using the wrong protocol.
_nick_ has joined #ruby
<adam12> jwr: We can see curl using TLSv1.3.. which gem should be using too, in theory.
<adam12> jwr: How’d you install Ruby?
mangold has quit [Ping timeout: 265 seconds]
<jwr> adam12: i didn't install it directly, i'm using the ruby:alpine-3.12 base image.
Dooky has quit [Quit: ZZZzzz…]
<adam12> jwr: Does `gem install rake -v 13.0.1` work?
<jwr> weirdly, yes.
<adam12> jwr: bundle -v
TK__ has joined #ruby
<jwr> 1.17.2
jla has quit [Ping timeout: 268 seconds]
<adam12> jwr: Can you confirm that Docker image?
<adam12> docker: Error response from daemon: manifest for ruby:alpine-3.12 not found: manifest unknown: manifest unknown.
<adam12> Oh I see it.
<jwr> yeah, sorry, i typed that in off the top of my head instead of pasting it. i'm actually using ruby:2.6.6-alpine3.12 as the base image.
<adam12> jwr: Can you go up a version of Docker image? 2.6.7 maybe?
<adam12> I actually tried on 2.6.6 and it works fine there too. Only thing I noticed is that my Ruby version is slightly different. Maybe your container needs to be updated?
mangold has joined #ruby
<adam12> ruby 2.6.6p146 (2020-03-31 revision 67876) [aarch64-linux-musl]
_nick_ has quit [Ping timeout: 240 seconds]
tronk has quit [Ping timeout: 265 seconds]
Dooky has joined #ruby
<adam12> ruby 2.6.6-alpine3.12 7044398f42f6 6 weeks ago 48.8MB
mangold has quit [Ping timeout: 260 seconds]
<nakilon> <jwr> I'm getting a strange SSL error when attempting to do `bundle install` in an alpine linux container
<nakilon> alpine ruby images are basically broken since 2.4
<nakilon> other than that SSL stuff
yxhuvud has quit [Ping timeout: 250 seconds]
gix has joined #ruby
<jwr> adam12: i tried rebuilding with a 2.6.7 base image, but when my Dockerfile tries to install some python stuff that we also need it's getting a similar ssl error. likely for the same underlying reason. Sigh...
<nakilon> alpine linux maintainer said that it's partially built with glibc instead of musl IIRC
<adam12> jwr: Eat the disk space and use the buster image :P
code_zombie has joined #ruby
<jwr> adam12: heh, fair point. and buster is what we have been using up until this point. Disk space isn't really the concern. The motivation for Alpine is coming from the compliance team. The Debian base images have a ton of CVE's that Alpine doesn't have. Though if we can't get Alpine to work then I guess we just can't.
DTZUZU_ has quit [Ping timeout: 240 seconds]
<adam12> jwr: Sounds like compliance team needs to deliver a working image :P Anyways, not sure if this is really a Ruby bug. Best of luck to ya!
cuerbot has joined #ruby
DTZUZU has joined #ruby
jann1s has joined #ruby
elcuervo has quit [Ping timeout: 265 seconds]
<jwr> adam12: yeah, i kind of doubt that it's a ruby bug. it feels like there's probably a missing package or something that i need to `apk install`, i just haven't figured out what that is. Thanks for taking a look.
ur5us__ has joined #ruby
DTZUZU has quit [Ping timeout: 252 seconds]
bvdw has joined #ruby
guysoft42 has joined #ruby
<guysoft42> hey all, I am trying to build ruby on a 32bit arm usersapce but with a 64bit arm kernel (raspberrypi), but I am getting "aarch64-unknown-linux-gnu" Is there a way to force ruby to build using armf architecture?
ur5us__ has quit [Ping timeout: 245 seconds]
jenrzzz has quit [Ping timeout: 268 seconds]
jenrzzz has joined #ruby
infinityfye has quit [Quit: Leaving]
jenrzzz has quit [Ping timeout: 240 seconds]
dinfuehr has quit [Ping timeout: 260 seconds]
dinfuehr has joined #ruby
jann1s has quit [Ping timeout: 265 seconds]
jenrzzz has joined #ruby
DTZUZU has joined #ruby
yxhuvud has joined #ruby
jenrzzz has quit [Ping timeout: 265 seconds]
jenrzzz has joined #ruby
Dooky has quit [Quit: ZZZzzz…]
peregu has joined #ruby
moldorcoder7 has quit [Quit: %bye mirc%]
moldorcoder7 has joined #ruby
eddof13 has joined #ruby
mangold has joined #ruby
MalkbabY has quit [Remote host closed the connection]
MalkbabY has joined #ruby
jwr has quit [Remote host closed the connection]
jla has joined #ruby
lunarkitty has quit [Quit: Konversation terminated!]
mangold has quit [Ping timeout: 265 seconds]
explorier has quit [Ping timeout: 265 seconds]
explorier has joined #ruby
deviantfero has quit [Ping timeout: 240 seconds]
ur5us__ has joined #ruby
Axy has joined #ruby
Axy has quit [Changing host]
Axy has joined #ruby
Dooky has joined #ruby
Mia has quit [Read error: Connection reset by peer]
Dooky has quit [Client Quit]
deviantfero has joined #ruby
peregu has quit [Ping timeout: 265 seconds]
jenrzzz has quit [Ping timeout: 268 seconds]
jenrzzz has joined #ruby
jla has quit [Ping timeout: 240 seconds]
ur5us__ has quit [Remote host closed the connection]
ur5us__ has joined #ruby
DTZUZU_ has joined #ruby
DTZUZU has quit [Ping timeout: 240 seconds]
cthu| has quit [Ping timeout: 240 seconds]
TK__ has quit [Ping timeout: 245 seconds]
ruby[bot] has quit [Remote host closed the connection]
ruby[bot] has joined #ruby
gearnode has quit [Ping timeout: 245 seconds]
gearnode has joined #ruby
dviola has quit [Ping timeout: 268 seconds]
teclator has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
dviola has joined #ruby
hyp has joined #ruby
Dooky has joined #ruby
DTZUZU has joined #ruby
TK__ has joined #ruby
DTZUZU_ has quit [Ping timeout: 252 seconds]
duderonomy has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
deviantfero has quit [Ping timeout: 268 seconds]
mangold has joined #ruby
evdubs_ is now known as evdubs
kristof[m]1 has quit [Ping timeout: 258 seconds]
wfwdex[m] has quit [Ping timeout: 245 seconds]
amateurassassin has quit [Ping timeout: 258 seconds]
dviola has quit [Changing host]
dviola has joined #ruby
kristof[m]1 has joined #ruby
Dooky has quit [Ping timeout: 246 seconds]
mangold has quit [Ping timeout: 252 seconds]
amateurassassin has joined #ruby
deviantfero has joined #ruby
Lyubo1 has quit [Ping timeout: 252 seconds]
wfwdex[m] has joined #ruby