Created
October 18, 2010 06:21
-
-
Save professor/631809 to your computer and use it in GitHub Desktop.
This file contains 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', '2.3.4' | |
gem 'aws-s3' | |
gem 'mechanize', '1.0.0' | |
gem 'ruby-openid' | |
gem 'ruby-openid-apps-discovery' | |
gem 'rack-openid' | |
gem 'bundler' | |
gem 'delayed_job', '2.1.0.pre' | |
gem 'oauth' | |
gem 'heroku' | |
gem 'taps' | |
group :plugins do | |
gem 'authlogic' | |
gem 'calendar_date_select' | |
end | |
# gem 'smtp_tls' # Used for sending mail to gmail | |
# gem 'actionmailer_gmail' # Used for sending mail to gmail | |
group :production do | |
# gem 'activerecord-postgresql-adapter' | |
end | |
group :development do | |
gem 'rake' | |
gem 'mysql', '2.8.1' | |
gem 'mongrel' | |
gem 'ruby-debug-base' #'0.10.3' | |
gem 'ruby-debug-ide' #'0.4.6' | |
# gem 'hanna' | |
gem 'rcov' | |
gem 'rdoc', '2.4.3' #rdoc_rails required RDoc of 2.4.3 - http://stackoverflow.com/questions/2993435/rake-uninitialized-constant-rdocrdoc | |
gem 'rspec', '1.3.1' | |
gem 'rspec-rails', '1.3.3' | |
gem 'autotest-rails' if RUBY_PLATFORM =~ /darwin/ | |
gem "autotest-fsevent" if RUBY_PLATFORM =~ /darwin/ | |
gem 'autotest-growl' if RUBY_PLATFORM =~ /darwin/ | |
gem 'test-unit' #, '<=1.2.3' #Downgrading so that autotest will work | |
end | |
group :test do | |
gem 'rake' | |
gem 'mysql', '2.8.1' | |
gem 'mongrel' | |
gem 'ruby-debug-base' #'0.10.3' | |
gem 'ruby-debug-ide' #'0.4.6' | |
# gem 'hanna' | |
gem 'rcov' | |
gem 'rdoc', '2.4.3' | |
gem 'mocha' | |
gem 'rspec', '1.3.1' | |
gem 'rspec-rails', '1.3.3' | |
gem 'shoulda' | |
gem 'factory_girl' | |
# gem 'factory_girl_rails' #only works for Rails 3 | |
gem 'test-unit' #, '<=1.2.3' #Downgrading so that autotest will work | |
end |
This file contains 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment