havenwood changed the topic of #ruby to: Rules: https://ruby-community.com | Ruby 3.2.2, 3.1.4, 3.0.6, 3.3.0-preview1: https://www.ruby-lang.org | Paste 4+ lines to: https://gist.github.com | Books: https://t.ly/9ua4 | Logs: https://libera.irclog.whitequark.org/ruby/
brw has quit [Quit: The Lounge - https://thelounge.chat]
brw has joined #ruby
Sampersand has quit [Quit: Client closed]
John_Ivan has quit [Quit: Disrupting the dragon's slumber one time too often shall eventually bestow upon all an empirical and indiscriminate conflagration that will last for all goddamn eternity.]
sickdyd has quit [Quit: WeeChat 3.8]
sickdyd has joined #ruby
rvalue has quit [Ping timeout: 246 seconds]
moldorcoder7 has quit [Ping timeout: 240 seconds]
rvalue has joined #ruby
jhass has quit [Ping timeout: 240 seconds]
jhass has joined #ruby
jhass has quit [Ping timeout: 265 seconds]
jhass has joined #ruby
Bish has quit [Ping timeout: 256 seconds]
hwpplayer1 has joined #ruby
rvalue has quit [Ping timeout: 264 seconds]
foolsc has joined #ruby
rvalue has joined #ruby
ap4y has quit [Remote host closed the connection]
foolsc has quit [Ping timeout: 268 seconds]
Meccas has joined #ruby
_ht has joined #ruby
howdoi has quit [Quit: Connection closed for inactivity]
Bish has joined #ruby
CrazyEddy has quit [Ping timeout: 250 seconds]
CrazyEddy has joined #ruby
grenierm has joined #ruby
_ht has quit [Quit: _ht]
hwpplayer1 has quit [Quit: cylater]
reset has quit [Quit: reset]
Bish has quit [Ping timeout: 264 seconds]
Sampersand has joined #ruby
MalusVulgaris has joined #ruby
tomtmym has joined #ruby
tomtmym has quit [Changing host]
tomtmym has joined #ruby
Bish has joined #ruby
Sampersand has quit [Quit: Client closed]
hrberg has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
m_antis has quit [Ping timeout: 240 seconds]
hrberg has joined #ruby
MalusVulgaris has quit [Ping timeout: 240 seconds]
teclator has joined #ruby
crespire has quit [Ping timeout: 240 seconds]
crespire has joined #ruby
hwpplayer1 has joined #ruby
Sankalp has quit [Ping timeout: 248 seconds]
Sankalp has joined #ruby
Inst__ has quit [Read error: Connection reset by peer]
grenierm has quit [Ping timeout: 245 seconds]
hwpplaye` has joined #ruby
hwpplayer1 has quit [Ping timeout: 265 seconds]
hwpplaye` has quit [Read error: Connection reset by peer]
Meccas has quit [Ping timeout: 246 seconds]
TomyWork has joined #ruby
Bish has quit [Ping timeout: 250 seconds]
jvalleroy has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
jvalleroy has joined #ruby
moldorcoder7 has joined #ruby
Bish has joined #ruby
BazzaBazaa has joined #ruby
hwpplayer1 has joined #ruby
m_antis has joined #ruby
m_antis has quit [Read error: Connection reset by peer]
BazzaBazaa has quit [Remote host closed the connection]
BazzaBazaa has joined #ruby
hwpplayer1 has quit [Remote host closed the connection]
m_antis has joined #ruby
shokohsc4 has joined #ruby
shokohsc has quit [Ping timeout: 246 seconds]
shokohsc4 is now known as shokohsc
m_antis has quit [Ping timeout: 240 seconds]
moldorcoder7 has quit [Ping timeout: 240 seconds]
hwpplayer1 has joined #ruby
m_antis has joined #ruby
gemmaro has joined #ruby
moldorcoder7 has joined #ruby
BazzaBazaa has quit [Remote host closed the connection]
BazzaBazaa has joined #ruby
gemmaro has quit [Remote host closed the connection]
BazzaBazaa has quit [Remote host closed the connection]
hwpplayer1 has quit [Quit: cylater]
gemmaro has joined #ruby
reset has joined #ruby
sickdyd has quit [Ping timeout: 268 seconds]
sickdyd has joined #ruby
Appala has joined #ruby
MalusVulgaris has joined #ruby
plujon has joined #ruby
roadie has joined #ruby
lena64t has joined #ruby
slothby has joined #ruby
slothby has quit [Client Quit]
slothby has joined #ruby
John_Ivan has joined #ruby
naps has joined #ruby
Appala has quit [Ping timeout: 265 seconds]
TomyWork has quit [Remote host closed the connection]
goldfish has joined #ruby
gemmaro has quit [Remote host closed the connection]
naps has quit [Ping timeout: 256 seconds]
_ht has joined #ruby
Sampersand has joined #ruby
sickdyd has quit [Ping timeout: 246 seconds]
gonix has joined #ruby
MalusVulgaris has quit [Remote host closed the connection]
gonix has quit [Ping timeout: 256 seconds]
Sampersand has quit [Quit: Client closed]
sickdyd has joined #ruby
sickdyd has quit [Ping timeout: 268 seconds]
Sampersand has joined #ruby
Sampersand has quit [Quit: Client closed]
hightower2 has quit [Ping timeout: 240 seconds]
<plujon> I have bundler 2.3.5 locally, and my production machine has bundler 2.1.4; which docs should I read for using bundler "correctly"?
<weaksauce> plujon i'd be surprised if they were very different
<adam12> plujon: Bundler auto-switches versions on you
<adam12> Best to try to match them in my experience.
sickdyd has joined #ruby
<plujon> I have a Gemfile with 3 gems: 'rack' ('~> 2.0'), 'rbnacl', and 'roda'.
<plujon> On my dev machine, I do `bundle install`; I push the app to production, and on production, I'm not sure how exactly I'm supposed to run `bundle install`. Do I do: `bundle install --deployment` ?
<adam12> Yes, typically.
<adam12> It prevents bundler from making changes to your Gemfile, as well as ensuring there is a Gemfile.lock file present.
<plujon> WTF? It suddenly works...
sickdyd has quit [Ping timeout: 240 seconds]
<plujon> I was going to complain about how bundler fails for incomprehensible reasons, but now it suddenly started working, probably because I did: `sudo gem install bundler:2.3.5` and then `bundle install --deployment`
<mooff> woot :)
<plujon> I notice that .bundle/config was rewritten. Now it says: ---\n BUNDLE_DEPLOYMENT: "true"
<plujon> Note to future self: `bundle check` uses .bundle *and* ~/.bundle , so just because `bundle check` succeeds for my user account does **not** mean it will succeed for the production passenger server.
wnd-conn is now known as wnd
<plujon> If I do:
<plujon> echo "gem 'puma', :group => [:development, :test]" >>Gemfile
<plujon> bundle install
<plujon> deploy
<plujon> Then on the production server, `bundle check` says I'm missing the puma gem.
<plujon> Does `bundle install --deployment` not cause Bundler to automatically exclude test and development gems?
<plujon> bundle config set --local without development:test && bundle check # satisfies Bundler
szkl has joined #ruby
hightower2 has joined #ruby
lena64t has quit [Quit: WeeChat 4.0.0-dev]
_ht has quit [Quit: _ht]
roadie has quit [Ping timeout: 248 seconds]
sickdyd has joined #ruby
sickdyd has quit [Ping timeout: 240 seconds]
roadie has joined #ruby
ruby[bot] has quit [Remote host closed the connection]
ruby[bot] has joined #ruby
teclator has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
graywolf has joined #ruby
roadie has quit [Ping timeout: 248 seconds]
shokohsc4 has joined #ruby
shokohsc has quit [Ping timeout: 250 seconds]
shokohsc4 is now known as shokohsc
tomtmym has quit [Quit: Gone.]
sickdyd has joined #ruby
johnjaye has quit [Ping timeout: 240 seconds]
graywolf has quit [Quit: WeeChat 3.8]
johnjaye has joined #ruby
szkl has quit [Quit: Connection closed for inactivity]
sickdyd has quit [Ping timeout: 240 seconds]
<ox1eef_> You can create a copy of the gems in 'vendor/' or some other place, then the dependencies can be deployed with your ordinary code but I've never seen it done in practice and I'm not sure how it works when C is involved.
sickdyd has joined #ruby
roadie has joined #ruby
roadie has quit [Ping timeout: 248 seconds]