Skip to content

Instantly share code, notes, and snippets.

@dimroc
Created February 21, 2012 00:15
Show Gist options
  • Save dimroc/1872490 to your computer and use it in GitHub Desktop.
Save dimroc/1872490 to your computer and use it in GitHub Desktop.
Bdd Demo Gemfile
source 'https://rubygems.org'
gem 'rails', '3.2.1'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'pg'
gem 'devise'
gem 'awesome_print'
gem 'simple_form'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'haml-rails'
gem 'bootstrap-sass', '~>2.0.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer'
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
group :development, :test do
gem 'rspec-rails'
gem 'capybara'
gem 'capybara-firebug'
gem 'shoulda'
gem 'fabrication'
gem 'ffaker'
gem 'database_cleaner'
gem 'fuubar'
gem 'wirble'
gem 'hirb'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment