bffff_ has quit [Quit: Connection closed for inactivity]
_whitelogger has joined #bundler
psacrifice|away has joined #bundler
tbuehlmann has joined #bundler
havenwood has quit [Remote host closed the connection]
Pupeno has joined #bundler
havenwood has joined #bundler
havenwood has quit [Ping timeout: 264 seconds]
robbyoconnor has quit [Excess Flood]
robbyoconnor has joined #bundler
havenwood has joined #bundler
havenwood has quit [Ping timeout: 264 seconds]
shaileshg has quit [Quit: Connection closed for inactivity]
robbyoconnor has quit [Read error: Connection reset by peer]
robbyoconnor has joined #bundler
havenwood has joined #bundler
havenwood has quit [Ping timeout: 264 seconds]
havenwood has joined #bundler
ixti has joined #bundler
havenwood has quit [Ping timeout: 264 seconds]
Pupeno has quit [Read error: Connection reset by peer]
Pupeno has joined #bundler
Pupeno has quit [Client Quit]
ohcibi_ is now known as ohcibi
livingstn has joined #bundler
Olipro has joined #bundler
robbyoconnor has quit [Excess Flood]
tbuehlmann has quit [Quit: Leaving]
robbyoconnor has joined #bundler
havenwood has joined #bundler
braidn_ is now known as braidn
havenwood has quit [Ping timeout: 264 seconds]
apeiros has joined #bundler
<apeiros>
hi there. under what circumstances would a plain `bundle` modify the Gemfile.lock? I was under the impression that `bundle` alone should use the lock file, but not change it. no?
apeiros has quit [Remote host closed the connection]
apeiros has joined #bundler
<apeiros>
sorry, forgot to tell when I had to commute
<apeiros>
any reply to my question in the meantime?
<dwradcliffe>
apeiros: bundle == bundle install
<apeiros>
dwradcliffe: yes. which shouldn't change the lockfile either. bundle update should. or am I mistaken?
lele has quit [Quit: Coyote finally caught me]
lele has joined #bundler
<indirect>
apeiros: you're mistaken. bundle install has updated the lockfile since 1.0
<indirect>
(roughly four years ago)
<indirect>
if you explicitly want to raise an exception rather than change the lockfile, use --deployment mode
<apeiros>
indirect: and in which situations does it do that?
<indirect>
apeiros: I don't understand the question... situations where you run bundle install with --deployment
<apeiros>
indirect: I mean in what situations would a `bundle install` modify the lockfile?
<indirect>
any situation where the Gemfile has changed in any way
<apeiros>
it certainly is the exception as I'm using bundler since before 1.0 and it happened for the first time for me
<apeiros>
indirect: ok, gemfile did not change
<indirect>
oh
<indirect>
you upgraded bundler and it removed credentials from the lock?
<apeiros>
no, I cloned a repository and did a fresh bundle install
<apeiros>
I'm not at work anymore, but iirc it added a line to the lockfile
<indirect>
they probably checked in a gemfile and a lock that don't match
<indirect>
there's nothing that stops that
<apeiros>
containing a variant of the ffi gem (again, iirc)
<indirect>
or platform changed
<indirect>
installing on jruby with a lock generated on mri can change the lockfile
<apeiros>
we all use osx, same version too
<apeiros>
the mismatching gemfile and lockfile is possible, though it'd surprise me
<indirect>
I mean, that's fine, but doesn't mean it's a bug
<indirect>
when you get access to the gemfile and lock again, go ahead and follow the steps at http://bit.ly/bundler-issues and file a ticket
<indirect>
then I can tell you exactly why
<apeiros>
I will try to verify/refute gemfile/lock mismatch first, and then look further. thank you!
x1337807x has joined #bundler
x1337807x has quit [Max SendQ exceeded]
x1337807x has joined #bundler
x1337807x has quit [Max SendQ exceeded]
x1337807x has joined #bundler
x1337807x has quit [Max SendQ exceeded]
x1337807x has joined #bundler
x1337807x has quit [Max SendQ exceeded]
x1337807x has joined #bundler
x1337807x has quit [Max SendQ exceeded]
x1337807x has joined #bundler
x1337807x has quit [Max SendQ exceeded]
x1337807x has joined #bundler
x1337807x has quit [Max SendQ exceeded]
x1337807x has joined #bundler
x1337807x has quit [Max SendQ exceeded]
x1337807x has joined #bundler
livingstn has quit [Read error: Connection reset by peer]
livingstn has joined #bundler
havenwood has joined #bundler
livingstn has quit []
x1337807x has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
x1337807x has joined #bundler
x1337807x has quit [Max SendQ exceeded]
x1337807x has joined #bundler
x1337807x has quit [Max SendQ exceeded]
x1337807x has joined #bundler
x1337807x has quit [Max SendQ exceeded]
x1337807x has joined #bundler
x1337807x has quit [Max SendQ exceeded]
x1337807x has joined #bundler
x1337807x has quit [Max SendQ exceeded]
x1337807x has joined #bundler
x1337807x has quit [Max SendQ exceeded]
x1337807x has joined #bundler
x1337807x has quit [Max SendQ exceeded]
x1337807x has joined #bundler
jeff_r has joined #bundler
x1337807x has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
x1337807x has joined #bundler
x1337807x has quit [Ping timeout: 260 seconds]
jeff_r has quit []
apeiros has quit [Remote host closed the connection]
havenwood has quit []
mib_mib has joined #bundler
<mib_mib>
hi all - having some trouble - in my gemfile on production i have gem 'some-gem', '>=0.1.2", git: 'http://github.com/myrepo/mygem.git', and 0.1.2 is installed on the server in /my/repo/vendor/bundle/ruby/1.9.1/bundler/gems/mygem-commithash -- i have updated the code in git and want to force update install of the newest version (0.1.15), so i do bundle update --source mygem, , but this command fails with 'Could not find myrepo-0.1.12
<mib_mib>
It seems its still looking for the old version - why would this be?
<mib_mib>
why are gems that have a git: attribute in my gemfile installed to vendor/bundle/ruby/1.9.1/bundler/gems instead of just vendor/bundle/ruby/1.9.1/gems folder?