Skip to content

Instantly share code, notes, and snippets.

@tingleshao
Created October 12, 2013 02:21
Show Gist options
  • Select an option

  • Save tingleshao/6944967 to your computer and use it in GitHub Desktop.

Select an option

Save tingleshao/6944967 to your computer and use it in GitHub Desktop.
a useful Gemfile
source 'http://rubygems.org'
gem 'rails', '3.1.1'
gem 'sqlite3'
group :development do
gem 'rspec-rails', '2.6.1'
end
group :test do
gem 'rspec-rails', '2.6.1'
gem 'webrat', '0.7.1'
end
group :assets do
gem 'sass-rails', '~> 3.1.4'
gem 'coffee-rails', '~> 3.1.1'
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment