Skip to content

Instantly share code, notes, and snippets.

@shigeya
Created March 6, 2012 01:37
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/1982768 to your computer and use it in GitHub Desktop.
Save shigeya/1982768 to your computer and use it in GitHub Desktop.
Current Gemfile
source 'http://rubygems.org'
gem 'rails', '3.2.1'
gem 'rake', '~> 0.9.2.2'
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
gem 'jquery-rails', '>= 1.0.3'
gem "nokogiri"
gem "awesome_print"
gem "factory_girl_rails"
gem "log4r"
gem "uglifier"
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', '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-ide19'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment