Re: I added BUNDLE_WITHOUT=development test, but Heroku still installs everything

2010-11-09 Thread JDeville
I'm still having some trouble trying to use this. Near as I can tell, this has to do with a difference between x86, and x64 based binaries, but it only shows up when using the BUNDLE_WITHOUT var. The relevant portion of my gemfile appears to be: gem 'yajl-ruby', :require = 'yajl/json_gem'

I added BUNDLE_WITHOUT=development test, but Heroku still installs everything

2010-11-08 Thread Volkan Unsal
I wanted Heroku's bundler to ignore some gems I have installed. It doesn't manage to do that, and as a result I am getting lots of errors. -- You received this message because you are subscribed to the Google Groups Heroku group. To post to this group, send email to her...@googlegroups.com. To

Re: I added BUNDLE_WITHOUT=development test, but Heroku still installs everything

2010-11-08 Thread Chris Hanks
Yes, this started happening for me on Friday (worked fine up until then). and it looks like it's still going on. When I push I see Using --without development test, but it tries to install all the development/test gems anyway (which it can't, for me, because Heroku can't handle ruby-debug19). I

Re: I added BUNDLE_WITHOUT=development test, but Heroku still installs everything

2010-11-08 Thread Oren Teich
Bundlr 1.0.3 changed the syntax for without. We are deploying a hotfix tomorrow. In the meantime, seperate the groups you don't want deployed with a : instead of a space. e.g. heroku config:add BUNDLER_WITHUOUT=development:test Oren On Mon, Nov 8, 2010 at 12:03 PM, Chris Hanks

Re: I added BUNDLE_WITHOUT=development test, but Heroku still installs everything

2010-11-08 Thread Chris Hanks
It works! Thanks, Oren. On Nov 8, 12:05 pm, Oren Teich o...@heroku.com wrote: Bundlr 1.0.3 changed the syntax for without.  We are deploying a hotfix tomorrow.  In the meantime, seperate the groups you don't want deployed with a : instead of a space.  e.g. heroku config:add