Re: gem bundler support

2010-02-04 Thread morgoth
There are changes in Gemfile syntax like:
:require_as becomes :require
:only becomes :group

Today 0.9.1 was released.

-- 
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 this group at 
http://groups.google.com/group/heroku?hl=en.



Re: gem bundler support

2010-02-04 Thread Trevor Turk
On Feb 3, 8:47 pm, Glenn Rempe gl...@rempe.us wrote:
 Can you comment on which version of bundler you are using within
 heroku?  I see that bundler v. 0.9.0 was just officially released and
 I noticed that there are some significant changes to the user
 experience, but I don't know if that changes how the Gemfile will be
 interpreted by Heroku.

+1

Please let us know if/when you're upgrading bundler to use the new
syntax. I know it must be annoying that they keep changing things.
It's been a pain for me as well ;)

-- 
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 this group at 
http://groups.google.com/group/heroku?hl=en.



Re: gem bundler support

2010-02-03 Thread Glenn Rempe
Hi Adam,

Can you comment on which version of bundler you are using within
heroku?  I see that bundler v. 0.9.0 was just officially released and
I noticed that there are some significant changes to the user
experience, but I don't know if that changes how the Gemfile will be
interpreted by Heroku.

Also, do you support gems bundled in the Gemfile that reference a git
repo as opposed to a gemcutter gem?

e.g. gem rails, :git = git://github.com/rails/rails.git

I'd like to push an edge rails (Rails 3.0.0.beta) app to heroku and
was wondering what issues you foresee if any.

Thanks,

Glenn

On Jan 19, 4:52 pm, Adam Wiggins a...@heroku.com wrote:
 Gem Bundler is rapidly on its way to becoming the new community
 standard for managing gem dependencies in Ruby apps. Bundler is the
 default gem manager forRails3, but it will also work seamlessly with
 any other web framework (or no framework) since it has no dependencies
 itself.

 Using it is as simple as creating a Gemfile in the root of your app:

 gem 'sinatra', '0.9.4'
 gem 'haml', '2.2.17'

 …and running “gem bundle” at the command line, which sets up all of
 your gems in vendor/gems.

 Heroku now has native support for gem bundler. If you push up a repo
 that has a Gemfile it its root, the slug compiler will bundle your
 gems automatically. (You can use this in addition to, or instead of,
 the .gems manifest. Both will be supported for the foreseeable future,
 so you needn’t feel pressured to
 switch.) Docs here:

 http://docs.heroku.com/gems#gem-bundler

 The Ruby community has been in need of a simple, standard,
 dependency-free gem dependency manager for a long time. Cheers to
 Yehuda Katz, Carl Lerche, and everyone else involved with bundler for
 delivering this elegant solution!

-- 
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 this group at 
http://groups.google.com/group/heroku?hl=en.



Re: gem bundler support

2010-01-22 Thread Trevor Turk
On Jan 19, 6:52 pm, Adam Wiggins a...@heroku.com wrote:
 Heroku now has native support for gem bundler. If you push up a repo
 that has a Gemfile it its root, the slug compiler will bundle your
 gems automatically.

I've been using this very happily for a few weeks now, since I saw a
tweet about it. Thanks so much for supporting bundler so quickly!

- Trevor

-- 
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 this group at 
http://groups.google.com/group/heroku?hl=en.



Re: gem bundler support

2010-01-21 Thread Adam Wiggins
On Wed, Jan 20, 2010 at 2:58 PM, morgoth w.wnetr...@gmail.com wrote:
 Great. It works perfectly. One downside: this increase slug size.

True.  Our experience has been that the many dependency hell issues
that can be avoided by explicitly declaring and bundling all your gems
is well worth the few MB increase in slug size.

Adam
-- 
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 this group at 
http://groups.google.com/group/heroku?hl=en.




Re: gem bundler support

2010-01-20 Thread morgoth
Great. It works perfectly. One downside: this increase slug size.
-- 
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 this group at 
http://groups.google.com/group/heroku?hl=en.