Skip to content

Instantly share code, notes, and snippets.

@phillipoertel
Created July 25, 2014 15:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phillipoertel/c66211693a9abb53fd4a to your computer and use it in GitHub Desktop.
Save phillipoertel/c66211693a9abb53fd4a to your computer and use it in GitHub Desktop.
source 'http://rubygems.org'
# REFINERY CMS ================================================================
# Anything you put in here will be overridden when the app gets updated.
gem 'refinerycms', '1.0.8'
group :development, :test do
# To use refinerycms-testing, uncomment it (if it's commented out) and run 'bundle install'
# Then, run 'rails generate refinerycms_testing' which will copy its support files.
# Finally, run 'rake' to run the tests.
# gem 'refinerycms-testing', '~> 1.0.1'
# gem "jammit" asset compressor
# gem "kumade" complete solution for heroku, includes the above
#gem "backup" # to create backups of the heroku db. see heroku-backup-recipe.rb
end
# END REFINERY CMS ============================================================
# END USER DEFINED
group :development do
# gem 'sqlite3'
# gem 'rb-fsevent', :require => false
# gem 'guard-pow'
# gem 'guard-bundler'
# gem 'guard-livereload'
#gem 'guard-compass'
# gem 'growl'
end
gem 'mysql2'
gem 'activerecord-mysql2-adapter'
gem 'heroku'
gem 'dalli'
gem 'fog'
gem 'geokit'
gem 'haml-rails'
gem 'sass'
gem "compass"
gem "mina"
gem 'refinerycms-page-images'
%w(i18n news portfolio).each do |name|
gem "refinerycms-#{name}", :path => "vendor/engines/refinerycms-#{name}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment