Skip to content

Instantly share code, notes, and snippets.

@professor
Created August 31, 2010 16:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save professor/559272 to your computer and use it in GitHub Desktop.
Save professor/559272 to your computer and use it in GitHub Desktop.
source 'http://rubygems.org'
gem 'rails', '2.3.8'
gem 'bundler'
gem 'delayed_job', '2.1.0.pre'
group :plugins do
gem 'calendar_date_select'
end
group :development do
gem 'rake'
gem 'sqlite3-ruby'
gem 'mongrel'
gem 'ruby-debug-base' #'0.10.3'
gem 'ruby-debug-ide' #'0.4.6'
# Windows users may need to add the next line, whatever you did to make fast debugger work, put it in here
# gem linecache, '0.43'
gem 'rcov'
gem 'rdoc'
gem 'rspec-rails'
end
group :test do
gem 'rake'
gem 'sqlite3-ruby'
gem 'mongrel'
gem 'ruby-debug-base' #'0.10.3'
gem 'ruby-debug-ide' #'0.4.6'
gem 'rcov'
gem 'rdoc'
gem 'rspec'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment