Flowdock
method

assets_gemfile_entry

Importance_0
assets_gemfile_entry() protected

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File railties/lib/rails/generators/app_base.rb, line 205
      def assets_gemfile_entry
                  # Gems used only for assets and not required          # in production environments by default.          group :assets do            gem 'sass-rails', #{options.dev? || options.edge? ? "  :git => 'git://github.com/rails/sass-rails.git', :branch => '3-1-stable'" : "  ~> 3.1.0".inspect}            gem 'coffee-rails', #{options.dev? || options.edge? ? ":git => 'git://github.com/rails/coffee-rails.git', :branch => '3-1-stable'" : "~> 3.1.0".inspect}            gem 'uglifier'          end.strip_heredoc
      end
Register or log in to add new notes.