Created
May 29, 2015 13:06
-
-
Save bricesanchez/cfa2695368b5b31ade42 to your computer and use it in GitHub Desktop.
Spree 3.x + Refinery 3.x Gemfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source 'https://rubygems.org' | |
ruby '2.2.1' | |
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | |
gem 'rails', '4.2.1' | |
# Use sqlite3 as the database for Active Record | |
gem 'pg' | |
gem 'puma' | |
# Use SCSS for stylesheets | |
gem 'sass' | |
gem 'sass-rails', '~> 5.0' | |
# Use Uglifier as compressor for JavaScript assets | |
gem 'uglifier', '>= 1.3.0' | |
# Use CoffeeScript for .coffee assets and views | |
gem 'coffee-rails', '~> 4.1.0' | |
# Use Font awesome for icons | |
gem "font-awesome-sass" | |
# 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 'jquery-turbolinks' | |
# Slim lang | |
gem 'slim' | |
# Use Bower to manage javascript libraries | |
gem "bower-rails", "~> 0.9.2" | |
# Neat bourbon RWD Framework | |
gem 'neat' | |
gem 'bourbon' | |
gem 'bitters' | |
gem 'bootstrap-sass' | |
gem 'select2-rails' | |
gem 'actionview-encoded_mail_to' | |
gem 'nokogiri' | |
gem 'aws-sdk', '~> 1.61.0' | |
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder | |
gem 'jbuilder', '~> 2.0' | |
# bundle exec rake doc:rails generates the API under doc/api. | |
gem 'sdoc', '~> 0.4.0', group: :doc | |
# Use ActiveModel has_secure_password | |
# gem 'bcrypt', '~> 3.1.7' | |
# Use Unicorn as the app server | |
# gem 'unicorn' | |
# Use Capistrano for deployment | |
# gem 'capistrano-rails', group: :development | |
group :development do | |
# Call 'byebug' anywhere in the code to stop execution and get a debugger console | |
gem 'byebug' | |
# Access an IRB console on exception pages or by using <%= console %> in views | |
gem 'web-console', '~> 2.0' | |
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring | |
gem 'spring' | |
gem 'letter_opener' | |
gem 'sextant' | |
gem 'guard', '>= 2.2.2', :require => false | |
gem 'guard-livereload', :require => false | |
gem 'rack-livereload' | |
gem 'rb-fsevent', :require => false | |
gem 'figaro' | |
gem "bullet" | |
end | |
group :test, :production do | |
# Heroku | |
gem 'dragonfly-s3_data_store' | |
gem 'rails_12factor' | |
gem 'rails_on_heroku' | |
gem 'newrelic_rpm' | |
gem 'whenever', :require => false | |
# Caching strategy | |
gem 'actionpack-page_caching' | |
gem 'rack-cache' | |
gem 'dalli' | |
gem 'memcachier' | |
gem 'kgio' | |
end | |
gem 'refinerycms', github: 'refinery/refinerycms', branch: 'auth-for-real-yo-tmp' | |
gem 'zilch-authorisation', github: 'parndt/zilch-authorisation', branch: "master" | |
gem 'quiet_assets', :group => :development | |
# Add support for refinerycms-acts-as-indexed | |
gem 'refinerycms-acts-as-indexed', ['~> 2.0', '>= 2.0.0'] | |
# Add support for refinerycms-wymeditor | |
gem 'refinerycms-wymeditor', ['~> 1.0', '>= 1.0.6'] | |
gem 'refinerycms-blog', github: 'refinery/refinerycms-blog', branch: 'master' | |
gem 'refinerycms-inquiries', github: 'refinery/refinerycms-inquiries', branch: 'master' | |
gem 'refinerycms-page-images', github: 'refinery/refinerycms-page-images', branch: 'master' | |
gem 'refinerycms-settings', github: 'refinery/refinerycms-settings', branch: 'master' | |
gem 'refinerycms-search', github: 'refinery/refinerycms-search', branch: 'master' | |
gem 'refinerycms-copywriting', github: 'unixcharles/refinerycms-copywriting', branch: 'master' | |
gem 'refinerycms-retailers', github: 'bisscomm/refinerycms-retailers', branch: '3-0-stable' | |
gem 'refinerycms-jobs', github: 'bisscomm/refinerycms-jobs', branch: '3-0-stable' | |
gem 'refinerycms-teams', github: 'bisscomm/refinerycms-teams', branch: '3-0-stable' | |
gem 'spree', github: 'spree/spree', branch: '3-0-stable' | |
gem 'spree_i18n', github: 'spree-contrib/spree_i18n', branch: '3-0-stable' | |
gem 'spree_auth_devise', github: 'spree/spree_auth_devise', branch: '3-0-stable' | |
gem 'spree_editor', github: 'spree-contrib/spree_editor', branch: '3-0-stable' | |
gem 'spree_related_products', github: 'spree-contrib/spree_related_products', branch: '3-0-stable' | |
gem 'spree_recently_viewed', github: 'spree-contrib/spree_recently_viewed', branch: '3-0-stable' | |
gem 'spree_sitemap', github: 'spree-contrib/spree_sitemap', branch: '3-0-stable' | |
gem 'devise-i18n' | |
gem 'spree-refinerycms-authentication', github: 'bricesanchez/spree-refinery-authentication', branch: 'master' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment