Skip to content

Instantly share code, notes, and snippets.

@captproton
Created October 26, 2010 03:49
Show Gist options
  • Select an option

  • Save captproton/646274 to your computer and use it in GitHub Desktop.

Select an option

Save captproton/646274 to your computer and use it in GitHub Desktop.
source 'http://rubygems.org'
gem 'rails', '3.0.0'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'sqlite3-ruby', :require => 'sqlite3'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug'
# Bundle the extra gems:
# gem 'bj'
# gem 'nokogiri'
# gem 'sqlite3-ruby', :require => 'sqlite3'
gem 'aws-s3', :require => 'aws/s3'
# Bundle gems for the local environment. Make sure to
# put test-only gems in this group so their generators
# and rake tasks are available in development mode:
# group :development, :test do
# gem 'webrat'
# end
# REFINERY CMS ================================================================
# Specify the Refinery CMS core:
gem 'refinerycms', '~> 0.9.8.5'
# Specify additional Refinery CMS Engines here (all optional):
gem 'refinerycms-inquiries', '~> 0.9.8.8'
# gem 'refinerycms-news', '~> 0.9.9'
# gem 'refinerycms-portfolio', '~> 0.9.8'
# gem 'refinerycms-theming', '~> 0.9.8'
# Add i18n support (optional, you can remove this if you really want to).
gem 'refinerycms-i18n', '~> 0.9.8.7'
# Figure out how to get RMagick:
rmagick_options = {:require => false}
rmagick_options.update({
:git => 'git://github.com/refinerycms/rmagick.git',
:branch => 'windows'
}) if Bundler::WINDOWS
# Specify a version of RMagick that works in your environment:
gem 'rmagick', '~> 2.12.0', rmagick_options
# END REFINERY CMS ============================================================
# USER DEFINED
gem 'refinerycms-theming'
gem 'refinerycms-portfolio', '~> 0.9.8.rc6'
# END USER DEFINED
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment