Created
March 14, 2012 12:30
-
-
Save shigeya/2036163 to your computer and use it in GitHub Desktop.
Current Working Gemfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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" | |
| group :assets do | |
| gem "uglifier" | |
| #gem "therubyracer" | |
| end | |
| gem 'dynamic_form' | |
| gem "transitions", :require => ["transitions", "active_record/transitions"] | |
| group :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' | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment