Created
May 26, 2010 05:35
-
-
Save captproton/414109 to your computer and use it in GitHub Desktop.
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 :rubygems | |
| # Specify the database driver as appropriate for your application (only one). | |
| #gem 'mysql', :require => 'mysql' | |
| gem 'sqlite3-ruby', :require => 'sqlite3' | |
| # Specify your favourite web server (only one). | |
| #gem 'unicorn', :group => :development | |
| gem 'mongrel', :group => :development | |
| # Deploy with Capistrano | |
| # gem 'capistrano' | |
| #===REFINERY REQUIRED GEMS=== | |
| gem 'rmagick', '~> 2.12.2' | |
| gem 'rails', '~> 2.3.5' | |
| gem 'hpricot', '~> 0.8', :require => 'hpricot' | |
| gem 'authlogic', '~> 2.1.3', :require => 'authlogic' | |
| gem 'friendly_id', '~> 2.3.3', :require => 'friendly_id' | |
| gem 'will_paginate', '~> 2.3.12', :require => 'will_paginate' | |
| #===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.dev' | |
| #===END OF REFINERY GEM INSTALL REQUIREMENTS=== | |
| # Bundle gems for certain environments: | |
| group :test do | |
| # gem 'rspec', '1.2.9' | |
| # gem 'rspec-rails', '1.2.9' | |
| end | |
| # Specify your application's gem requirements here. See the examples below: | |
| # gem "refinerycms-news", "~> 0.9.7", :require => "news" | |
| # gem "refinerycms-portfolio", "~> 0.9.3.8", :require => "portfolio" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment