Paul Klumpp cd873bce75 bundle install --deployment | 12 years ago | |
---|---|---|
.. | ||
lib | 12 years ago | |
test | 12 years ago | |
.gitignore | 12 years ago | |
.travis.yml | 12 years ago | |
Gemfile | 12 years ago | |
MIT-LICENSE | 12 years ago | |
README.markdown | 12 years ago | |
Rakefile | 12 years ago | |
coffee-rails.gemspec | 12 years ago |
Coffee Script adapter for the Rails asset pipeline. Also adds support to use CoffeeScript to respond to JavaScript requests (use .js.coffee views).
Since Rails 3.1 Coffee-Rails is included in the default Gemfile when you create a new application. If you are upgrading to Rails 3.1 you must add the coffee-rails to your Gemfile:
gem 'coffee-rails'
If you are precompiling your assets (with rake assets:precompile) before run your application in production, you might want add it to the assets group to prevent the gem being required in the production environment.
group :assets do
gem 'coffee-rails'
end
$ bundle install
$ bundle exec rake test
If you need to test against local gems, use Bundler's gem :path option in the Gemfile.