Skip to content

Instantly share code, notes, and snippets.

@jswanner
Created October 20, 2011 03:34
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 jswanner/1300354 to your computer and use it in GitHub Desktop.
Save jswanner/1300354 to your computer and use it in GitHub Desktop.
Installing RefineryCMS on Edge
gem 'refinerycms', :git => 'git://github.com/gogogarrett/refinerycms.git', :branch => 'heroku'
run 'bundle install'
generate 'refinery:cms'
rake 'db:migrate'
append_file 'Gemfile' do
" # group :development, :test do
# gem 'refinerycms-testing', '~> 2.0'
# end
# USER DEFINED
# Specify additional Refinery CMS Engines here (all optional):
# gem 'refinerycms-blog', :git => 'git://github.com/resolve/refinerycms-blog.git', :branch => 'rails-3-1'
# gem 'refinerycms-inquiries', :git => 'git://github.com/resolve/refinerycms-inquiries.git', :branch => 'rails-3-1'
# gem 'refinerycms-search', :git => 'git://github.com/resolve/refinerycms-search.git', :branch => 'rails-3-1'
# gem 'refinerycms-page-images', :git => 'git://github.com/resolve/refinerycms-page-images.git', :branch => 'rails-3-1'
# END USER DEFINED"
end
remove_file 'public/index.html'
remove_file 'public/images/rails.png'
remove_file 'assets/images/rails.png'
say <<-eos
============================================================================
Your new RefineryCMS application is now running on edge.
============================================================================
eos
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment