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]
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.
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.