Re: Exclude certain gems from installing on Heroku

2010-04-13 Thread railsnerd
RUBY_PLATFORM works for me, fyi -- 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 unsubscribe from this group, send email to heroku+unsubscr...@googlegroups.com. For more options, visit t

Re: Exclude certain gems from installing on Heroku

2010-04-09 Thread Fritzek
HI Ashley I've found this note on Heroku: "Heroku does not specify any groups during bundle installation, so all gems from all groups will be bundled with your application." http://docs.heroku.com/bundler And the RUBY_PLATFORM really worked? regards, Fritzek On 8 Apr., 17:48, Ashley Moran wro

Re: Exclude certain gems from installing on Heroku

2010-04-08 Thread Ashley Moran
On Apr 08, 2010, at 4:14 pm, Mooktakim Ahmed wrote: > if defined? Heroku > gem 'blah' > end Thanks for the suggestion - it doesn't appear to work in my Gemfile though. I've had to resort to gem "autotest-fsevent" if RUBY_PLATFORM =~ /darwin/ To install it only on my workstation. Cheers A

Re: Exclude certain gems from installing on Heroku

2010-04-08 Thread Mooktakim Ahmed
Hi, I usually add something like: if defined? Heroku gem 'blah' end This worked perfectly fine with rails2. I'm not 100% confident with bundler and rails3, as i haven't tested it extensively. Regards, Mooktakim Ahmed On 8 April 2010 15:49, Ashley Moran wrote: > Hi > > Sorry if this has been

Exclude certain gems from installing on Heroku

2010-04-08 Thread Ashley Moran
Hi Sorry if this has been answered, I can't see anything relevant in the archives or docs. I have this in my Gemfile: group :development do # ... gem "autotest-fsevent" end Which causes this error: Installing autotest-fsevent (0.2.2) from rubygems repository at http://g