Skip to content

Instantly share code, notes, and snippets.

@jdickey
Created April 17, 2012 07:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jdickey/2404169 to your computer and use it in GitHub Desktop.
Save jdickey/2404169 to your computer and use it in GitHub Desktop.
Gemfile in support of Pry issue 540
source 'https://rubygems.org'
gem 'rails', '3.2.2'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'sqlite3'
gem 'sentient_user'
gem 'timecop'
gem 'cells'
gem 'rspec-cells'
gem 'haml'
gem 'haml-rails'
gem 'dsl'
gem 'compass'
gem 'simple_enum'
gem 'easy_roles'
# gem 'enumlogic' # Replace 'simple_enum' when this gets fixed for Rails 3.
gem 'simple_form'
gem 'sass-rails'
gem 'bootstrap-sass'
gem 'log4r'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
# gem 'sass-rails-bootstrap'
gem 'twitter_bootstrap_form_for'
gem 'coffee-rails'
gem 'compass-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer'
gem 'execjs'
gem 'uglifier', '>= 1.0.3'
end
# gem 'jquery-rails'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'
group :development, :test do
gem 'awesome_print'
gem 'bundle_outdated'
gem 'fuubar'
gem 'pry'
# gem 'pry-doc'
gem 'pry-nav'
gem 'pry-remote'
gem 'pry-rails'
gem 'pry-stack_explorer'
# gem 'pry-exception_explorer'
gem 'rspec-rails'
gem 'rspec-html-matchers'
gem 'simplecov'
gem 'webrat'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment