Created
October 20, 2011 03:34
-
-
Save jswanner/1300354 to your computer and use it in GitHub Desktop.
Installing RefineryCMS on Edge
This file contains 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
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