Skip to content

Instantly share code, notes, and snippets.

@johnjameswhitman
Created July 29, 2014 21:47
Show Gist options
  • Save johnjameswhitman/b9a3d9bec03a7a31d689 to your computer and use it in GitHub Desktop.
Save johnjameswhitman/b9a3d9bec03a7a31d689 to your computer and use it in GitHub Desktop.
Spree Gemfile
if RUBY_VERSION =~ /1.9/ # assuming you're running Ruby ~1.9
Encoding.default_external = Encoding::UTF_8
Encoding.default_internal = Encoding::UTF_8
end
if Time.now.getlocal.utc_offset / 3600 == 8 # China Standard Time
source 'http://ruby.taobao.org'
else
source 'https://rubygems.org'
end
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.0.5'
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
# Use SCSS for stylesheets
# gem 'sass-rails', '~> 4.0.2'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
gem 'active_link_to', '1.0.2'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
group :production do
gem 'pg'
end
# Attempting To Fix Error on openshift
# gem "less-rails"
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano', group: :development
# Use debugger
# gem 'debugger', group: [:development, :test]
gem 'spree', '2.2.2'
gem 'spree_gateway', git: 'https://github.com/spree/spree_gateway.git', branch: '2-2-stable'
gem 'braintree', '~> 2.32'
gem 'spree_auth_devise', git: 'https://github.com/spree/spree_auth_devise.git', branch: '2-2-stable'
gem 'spree_bootstrap_frontend', github: '200Creative/spree_bootstrap_frontend', branch: '2-2-stable'
gem 'bootstrap-sass', '~> 3.1'
gem 'sass-rails', '>= 3.2'
gem 'autoprefixer-rails', '~> 2.1.0'
# gem 'spree_admin_bootstrap', :github => 'reinaris/spree_admin_bootstrap', branch: 'master'
gem 'comfortable_mexican_sofa', '~> 1.12.0'
gem 'comfy_blog', '~> 1.12.0'
gem 'modernizr-rails', '~> 2.7.1'
gem 'nprogress-rails', '~> 0.1.3.0'
gem 'jquery-turbolinks', '~> 2.0.2'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment