Skip to content

Instantly share code, notes, and snippets.

@erotte
Created July 20, 2011 12:32
Show Gist options
  • Save erotte/1094870 to your computer and use it in GitHub Desktop.
Save erotte/1094870 to your computer and use it in GitHub Desktop.
Spree 0.60.1 Gemfile
# EXAMPLE Gemfile for a spree application, your Gemfile will be different
source 'http://rubygems.org'
# Generic gem dependencies first
gem 'rails'
gem 'sqlite3'
gem 'mysql2', '0.2.6'
gem 'aws-s3', :require => 'aws/s3'
gem 'dynamic_form'
gem 'heroku'
gem 'memcache-client'
# Followed by spree itself first, all spree-specific extensions second
gem 'spree', '~> 0.60.1'
gem 'spree_static_content'
gem 'spree_editor'
# Install with:
# rake spree_flexi_variants:install && rake db:migrate
# gem 'sr spree_flexi_variants', :git=>'[email protected]:jsqu99/spree_flexi_variants.git', :branch => 'pre-deface-stable'
# Install with:
# rails g spree_product_assembly:install && rake db:migrate
gem 'spree_product_assembly', :git => 'git://github.com/spree/spree-product-assembly.git', :ref => "c9da1618e0a8ce200e6101358c714b57b536ede8"
# Dev/Test gems
group :development, :test do
gem 'webrat'
gem 'cucumber-rails'
gem 'rspec-rails'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment