I had the same problem back at the beginning of November with a vendored Acts as statemachine gem and got this response;
Hi John, Sorry, this was a regression introduced in Bundler 1.0.3. This is fixed in the upcoming bundler 1.0.4. You'll need change this line in your Gemfile: gem "aasm", :path => File.join(File.dirname(__FILE__), '/vendor/gems/ aasm') to gem "aasm", :path => 'vendor/gems/aasm' Hope that helps, Terence but this didn't work for me and the only way we can deploy at the moment is to not commit the gemfile.lock file - being as the current release of bundler is 1.0.7 any news on that going live Heroku? john. On Dec 1, 11:37 am, Clément <[email protected]> wrote: > Any news about it ? > Thanks, > Clément > > On Nov 25, 11:16 am, Clément <[email protected]> wrote: > > > > > > > > > Hi, > > I have exactly the same behaviour... And did the same trick as you.. > > I have not enough time to investigate deeper for the moment :/ > > > Thanks, > > Clém > > > On Nov 23, 6:01 pm, Jesse Clark <[email protected]> wrote: > > > > Hi All, > > > > I recently committed a change to my site which involved bumping a > > > version number on a gem in my Gemfile. When I try to deploy to heroku > > > I get the following errors: > > > > You have added to the Gemfile: > > > * source: source at /disk1/tmp/build_3155_23685892989800/vendor/ > > > gems/wand > > > * source: source at /disk1/tmp/build_3155_23685892989800/vendor/ > > > gems/joint > > > > You have deleted from the Gemfile: > > > * source: source at vendor/gems/joint > > > * source: source at vendor/gems/wand > > > > You have changed in the Gemfile: > > > * joint from `source at /disk1/tmp/build_3155_23685892989800/ > > > vendor/gems/joint` to `no specified source` > > > * wand from `source at /disk1/tmp/build_3155_23685892989800/ > > > vendor/gems/wand` to `no specified source` > > > > joint and wand are specified in my gemfile using the :path option like > > > so: > > > gem 'joint', :path => File.join( File.dirname(__FILE__), '/ > > > vendor/gems/joint' ) > > > gem 'wand', :path => File.join( File.dirname(__FILE__), '/vendor/gems/ > > > wand' ) > > > > Neither of these two lines nor the files in vendor have changed since > > > my last successful deploy. > > > > If I remove the Gemfile.lock from my repository and then deploy Heroku > > > runs builder for me and installs everything just fine. At some point > > > lock files will be required though and I need to figure out how to > > > resolve this. Has anyone else run in to this issue? > > > > I'm running Rails 2.3.8 on bamboo-mri-1.9.1. > > > > Thanks, > > > -Jesse -- You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/heroku?hl=en.
