Ruby on Rails Thursday, March 1, 2012

Also a first-timer working through the tutorial so not sure this is
right way but it worked for me.

1. Ran gem update
2. Changed gemfile in your project root to add the '~> ' for sass-rails,
coffee-rails and jquery-rails to appear as follows:

"
gem 'rails', '3.2.1'
...
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.2'
...
gem 'jquery-rails', '~> 2.0.0'
"

3. git commit -a -m "updating gemfile for heroku"
4. git push heroku master

As I say, not necessarily right answer but worked on my side. Hope it
helps.

--
Posted via http://www.ruby-forum.com/.

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

No comments:

Post a Comment