Skip to content

Instantly share code, notes, and snippets.

@kritik
Created August 10, 2010 06:04
Show Gist options
  • Save kritik/516777 to your computer and use it in GitHub Desktop.
Save kritik/516777 to your computer and use it in GitHub Desktop.
source :rubygems
# Specify the database driver as appropriate for your application (only one is necessary).
# Defaults to sqlite3. Don't remove any of these below in the core or gems won't install.
#gem 'sqlite3-ruby', :require => 'sqlite3' #db_adapter=sqlite3
gem 'mysql', :require => 'mysql'#, :db_adapter=>:mysql
# gem 'pg' #db_adapter=postgresql
# Specify your favourite web server (only one) - not required.
# gem 'unicorn', :group => :development
# gem 'mongrel', :group => :development
# Deploy with Capistrano
# gem 'capistrano'
# If you are using Amazon S3 you probably want this gem:
# gem 'aws-s3'
#===REFINERY REQUIRED GEMS===
#gem 'activerecord-mysql2-adapter'
#gem 'activesupport', '= 2.3.8'
gem 'rails', '= 2.3.8'
gem 'acts_as_indexed', '= 0.6.3', :require => 'acts_as_indexed'
gem 'authlogic', '= 2.1.6', :require => 'authlogic'
gem 'friendly_id', '= 3.0.6', :require => 'friendly_id'
gem 'rmagick', '~> 2.12.0'
gem 'truncate_html', '= 0.3.2', :require => 'truncate_html'
gem 'will_paginate', '= 2.3.14', :require => 'will_paginate'
gem 'searchlogic'
gem 'fcgi'
group :test do
gem 'json_pure', :require => 'json/pure'
gem 'factory_girl'
gem 'test-unit', '= 1.2.3'
gem 'capybara'
gem 'database_cleaner'
gem 'cucumber-rails'
gem 'cucumber'
gem 'rspec'
gem 'rspec-rails'
gem 'spork' unless RUBY_PLATFORM =~ /mswin|mingw/
gem 'launchy'
gem 'gherkin'
gem 'factory_girl'
gem 'ruby-prof'
end
#===REFINERY END OF REQUIRED GEMS===
#===REQUIRED FOR REFINERY GEM INSTALL===
# Leave the gem below disabled (commented out) if you're not using the gem install method.
# gem 'refinerycms', '= 0.9.7.11'
#===END OF REFINERY GEM INSTALL REQUIREMENTS===
# Bundle gems for certain environments:
# Specify your application's gem requirements here. See the examples below:
# gem 'refinerycms-news', '~> 0.9.8', :require => 'news'
# gem 'refinerycms-portfolio', '~> 0.9.7', :require => 'portfolio'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment