Skip to content

Commit

Permalink
Add a simple README
Browse files Browse the repository at this point in the history
  • Loading branch information
guilleiguaran committed Aug 16, 2011
1 parent f60af90 commit de6c4f8
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions README.markdown
@@ -0,0 +1,22 @@
# Coffee-Rails

Coffee Script adapter for the Rails asset pipeline. Also adds support to use CoffeeScript to respond to JavaScript requests (use .js.coffee views).

## Installation

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

## Running tests

$ bundle install
$ bundle exec rake test

If you need to test against local gems, use Bundler's gem :path option in the Gemfile.

0 comments on commit de6c4f8

Please sign in to comment.