Skip to content

Instantly share code, notes, and snippets.

@ninabreznik
Last active December 19, 2015 23:59
Show Gist options
  • Save ninabreznik/6037896 to your computer and use it in GitHub Desktop.
Save ninabreznik/6037896 to your computer and use it in GitHub Desktop.
source 'https://rubygems.org'
# Provides basic authentication functionality for testing parts of your engine
gem 'spree', :git => 'https://github.com/spree/spree.git', :branch => '2-0-stable'
gem 'spree_gateway', :git => 'https://github.com/spree/spree_gateway.git', :branch => '2-0-stable'
gem 'spree_auth_devise', :git => 'https://github.com/spree/spree_auth_devise.git', :branch => '2-0-stable'
gemspec
@theCrab
Copy link

theCrab commented Jul 19, 2013

This is not enough. Is this all that is in your Gemfile?

@ninabreznik
Copy link
Author

yes

@ninabreznik
Copy link
Author

that's a gemfile from spree_sample_sales

@theCrab
Copy link

theCrab commented Jul 19, 2013

I was actually asking for your apps Gemfile

@theCrab
Copy link

theCrab commented Jul 19, 2013

This is the closest to what a Rails Spree app would require to run. It is the Gemfile

#Gemfile

source 'https://rubygems.org'

ruby '1.9.2'
gem 'rails', '3.2.13'


group :development, :test do
    gem 'rspec-rails'
  gem 'sqlite3'
  gem 'pry'
end

# For a better development experience
# NOTE: always ensure better_errors is above meta_request
group :development do
  gem 'better_errors'
  gem 'binding_of_caller'
  gem 'meta_request'
end

# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
  gem 'pg'

# Gems used only for assets and not required
# in production environments by default.
group :assets do
  gem 'sass-rails',   '~> 3.2.3'
  gem 'coffee-rails', '~> 3.2.1'

  # See https://github.com/sstephenson/execjs#readme for more supported runtimes
  # gem 'therubyracer', :platforms => :ruby

  gem 'uglifier', '>= 1.0.3'
end

gem 'jquery-rails'

# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'

# To use Jbuilder templates for JSON
# gem 'jbuilder'
gem 'aws-sdk'
# gem 'aws-s3'
# Use unicorn as the app server
gem 'thin'

# Deploy with Capistrano
# gem 'capistrano'
# gem 'cap_bootstrap'

# To use debugger
# gem 'debugger'
gem 'ransack', '0.7.2'
# gem 'gocardless'

gem 'spree', '~> 1.3.2'
gem 'spree_auth_devise', :github => 'spree/spree_auth_devise', :branch => '1-3-stable'

gem 'spree_subscriptions', :git => "https://github.com/nebulab/spree-subscriptions.git"
gem 'spree_static_content', :git => 'git://github.com/spree/spree_static_content', :branch => "1-3-stable"
gem 'spree_variant_options', :git => "https://github.com/theCrab/spree_variant_options.git", :branch => 'master'
gem 'spree_gocardless', :git => 'git://github.com/theCrab/spree_gocardless'

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