How do others deal with cedar rails 3.2 and asset pipelines?

2012-03-31 Thread Keenan Brock
Hi All, 

I'm running rails 3.2 on cedar.

heroku config |grep BUNDLE
BUNDLE_WITHOUT  => development:test:assets


Gemfile (the asset part at least)
group :assets do
  gem 'sass-rails',   '~> 3.2.3'
  gem 'coffee-rails', '~> 3.2.1'

  gem 'uglifier', '>= 1.0.3'
  gem "bootstrap-sass", '~> 2.0.1'
  gem 'jquery-rails', '~> 2.0.1'
end


When I want to deploy I run:

rake assets:clear
rake assets:precompile

git add public/assets
and git commit -m 'new assets'
git commit heroku master


Unfortunately, heroku does not respect my BUNDLE_WITHOUT
This seems like a waste.

And if I went with a cdn, I'd still not need these gems in production.


How do other people handle assets?
Am I wrong to think I don't need these gems while running in production?
Are these extra dozen or so gems going to make my slug size/compilation time 
decrease? or am I optimizing the wrong thing? 


Thanks for any pointers,
Keenan

-- 
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to heroku@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: Upload from Rails app to S3 bucket upload failing with "No such file or directory"

2012-03-31 Thread Nick
I'd definitely recommend Carrierwave.

This railscast will tell you how to get it up and running:

http://railscasts.com/episodes/253-carrierwave-file-uploads

-- 
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to heroku@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.