Skip to content

Instantly share code, notes, and snippets.

@allomov
Created October 11, 2011 14:05
Show Gist options
  • Save allomov/1278164 to your computer and use it in GitHub Desktop.
Save allomov/1278164 to your computer and use it in GitHub Desktop.
link refinery cms 2.0
# first way: straightforward, also need to add generators engine
gem 'refinerycms', '~> 2.0.0', :git => 'git://github.com/resolve/refinerycms.git'
gem 'refinerycms-generators', :git => 'git://github.com/resolve/refinerycms-generators.git'
# second way: optional
gem 'devise' #temporarily commented out,'~> 1.4.0'
gem 'refinerycms-base', :git => 'git://github.com/resolve/refinerycms.git'
gem 'refinerycms-core', :git => 'git://github.com/resolve/refinerycms.git'
gem 'refinerycms-dashboard', :git => 'git://github.com/resolve/refinerycms.git'
gem 'refinerycms-images', :git => 'git://github.com/resolve/refinerycms.git'
gem 'refinerycms-pages', :git => 'git://github.com/resolve/refinerycms.git'
gem 'refinerycms-resources', :git => 'git://github.com/resolve/refinerycms.git'
gem 'refinerycms-settings', :git => 'git://github.com/resolve/refinerycms.git'
gem 'refinerycms-generators', :git => 'git://github.com/resolve/refinerycms-generators.git'
group :development, :test do
gem 'refinerycms-testing', :git => 'git://github.com/resolve/refinerycms.git'
end
@allomov
Copy link
Author

allomov commented Oct 11, 2011

[5:15pm] ugisozols: alomov just leave gem 'refinerycms', :git => 'git://github.com/resolve/refinerycms.git' in the Gemfile
[5:15pm] ugisozols: you don't to specify other gems (like auth, core etc) because refinerycms by itself is a collection of those gems
[5:16pm] ugisozols: don't need*
[5:16pm] alomov: it's little weird but I didn't find refinerycms-generators in refinerycms 2
[5:16pm] ugisozols: you don't need that either because generators get merged back in refinerycms core

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment