Skip to content

Commit

Permalink
Fixes issue AlchemyCMS#80: Installer fails under Ruby 1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas von Deyen committed Oct 26, 2011
1 parent 0b9b1fd commit 0d60344
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions lib/rails/templates/alchemy.rb
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
# This rails template installs Alchemy and all depending gems.
# Run it with +rails YOUR_APP_NAME -d mysql -m alchemy+.

# Installing Alchemy Gem

gem 'alchemy_cms', '>= 2.0.pre2'
gem 'ruby-debug', :group => :development
gem 'mongrel', :group => :development
gem 'alchemy_cms', '>= 2.0.rc5'
gem 'ruby-debug', :group => :development, :platform => :ruby_18
gem 'ruby-debug19', :group => :development, :platform => :ruby_19

if yes?("Use Capistrano for deployment? (y/N)")
gem 'capistrano', :group => :development
Expand Down

0 comments on commit 0d60344

Please sign in to comment.