Skip to content

Instantly share code, notes, and snippets.

@gwuix2
Created March 23, 2013 17:09
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 gwuix2/5228488 to your computer and use it in GitHub Desktop.
Save gwuix2/5228488 to your computer and use it in GitHub Desktop.
capistrano deploy gemfile
source 'https://rubygems.org'
gem 'rails', '3.2.13'
gem 'sqlite3'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
group :development do
gem 'better_errors'
gem 'capistrano'
gem 'rvm-capistrano'
gem 'foreman'
end
group :production do
gem 'unicorn'
gem 'foreman'
gem 'therubyracer'
end
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
gem 'spree', '1.3.2'
gem 'spree_gateway', :github => 'spree/spree_gateway', :branch => '1-3-stable'
gem 'spree_auth_devise', :github => 'spree/spree_auth_devise', :branch => '1-3-stable'
gem 'spree_i18n', :git => 'git://github.com/spree/spree_i18n.git'
gem 'rails-i18n'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment