Skip to content

Instantly share code, notes, and snippets.

@shigeya
Created March 2, 2012 05:46
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 shigeya/1955987 to your computer and use it in GitHub Desktop.
Save shigeya/1955987 to your computer and use it in GitHub Desktop.
Current Gemfile for testing
source 'http://rubygems.org'
gem 'rails', '3.2.1'
gem 'rake', '~> 0.9.2.2'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
group :production do
gem 'pg'
end
group :production_jsmbo3 do
gem 'pg'
end
group :development_pg do
gem 'pg'
end
group :development, :test do
gem 'sqlite3-ruby', :require => 'sqlite3'
end
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+)
# gem 'ruby-debug'
# gem 'ruby-debug19'
# Bundle the extra gems:
# gem 'bj'
# gem 'nokogiri'
# gem 'sqlite3-ruby', :require => 'sqlite3'
# gem 'aws-s3', :require => 'aws/s3'
# Bundle gems for the local environment. Make sure to
# put test-only gems in this group so their generators
# and rake tasks are available in development mode:
# group :development, :test do
# gem 'webrat'
# end
gem 'jquery-rails', '>= 1.0.3'
#gem "ruby-debug19"
gem "nokogiri"
gem "awesome_print"
#gem 'RedCloth', '>= 4.1.1'
gem "factory_girl_rails"
gem "log4r"
gem "uglifier"
#gem "therubyracer"
gem 'dynamic_form'
gem "transitions", :require => ["transitions", "active_record/transitions"]
group :development, :test do
gem "rspec", '~> 2.8.0'
gem "rspec-rails", "~> 2.8.0"
gem "cucumber-rails"
gem "database_cleaner"
gem "selenium-client"
gem 'spork', '~> 0.9.0.rc'
gem "capybara"
gem "capybara-webkit"
gem "launchy"
gem "rb-fsevent"
gem "guard-spork"
gem "growl"
gem 'guard-rspec'
gem 'guard-cucumber'
# gem 'linecache19'
# gem 'ruby-debug-base19x' , '~> 0.11.30.pre4'
gem 'linecache19', '0.5.13', :path => "~/.rvm/gems/ruby-1.9.3-p#{RUBY_PATCHLEVEL}@aimm3/gems/linecache19-0.5.13/"
gem 'ruby-debug-base19', '0.11.26', :path => "~/.rvm/gems/ruby-1.9.3-p#{RUBY_PATCHLEVEL}@aimm3/gems/ruby-debug-base19-0.11.26/"
gem 'ruby-debug19', :require => 'ruby-debug'
# gem 'ruby-debug-base19x' , '~> 0.11.30.pre4'
gem 'ruby-debug-ide19'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment