method

coffee_gemfile_entry

coffee_gemfile_entry()
protected

No documentation available.

# File railties/lib/rails/generators/app_base.rb, line 213
      def coffee_gemfile_entry
        if options.dev? || options.edge?
                      # Use CoffeeScript for .js.coffee assets and views            gem 'coffee-rails', github: 'rails/coffee-rails'
        else
                      # Use CoffeeScript for .js.coffee assets and views            gem 'coffee-rails', '~> 4.0.0'
        end
      end