mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
66 lines
1.7 KiB
Ruby
66 lines
1.7 KiB
Ruby
source 'http://rubygems.org'
|
|
ruby "1.9.3"
|
|
|
|
gem 'rails', '3.2.11'
|
|
|
|
gem 'pg'
|
|
gem 'spree', :git => 'git://github.com/spree/spree.git', :branch => '1-3-stable'
|
|
gem 'spree_i18n', :git => 'git://github.com/spree/spree_i18n.git'
|
|
gem 'spree_paypal_express', :git => 'git://github.com/spree/spree_paypal_express.git', :branch => '1-3-stable'
|
|
gem 'spree_last_address', :git => 'git://github.com/eaterprises/spree-last-address.git'
|
|
gem 'spree_auth_devise', :git => 'https://github.com/spree/spree_auth_devise.git', :branch => '1-3-stable'
|
|
|
|
gem 'comfortable_mexican_sofa'
|
|
|
|
# Fix bug in simple_form preventing collection_check_boxes usage within form_for block
|
|
# When merged, revert to upstream gem
|
|
gem 'simple_form', :git => 'git://github.com/RohanM/simple_form.git'
|
|
|
|
gem 'unicorn'
|
|
gem 'bugsnag'
|
|
gem 'newrelic_rpm'
|
|
gem 'spree_heroku', :git => 'git://github.com/eaterprises/spree-heroku.git'
|
|
gem 'haml'
|
|
gem 'aws-sdk'
|
|
gem 'db2fog'
|
|
gem 'andand'
|
|
gem 'truncate_html'
|
|
gem 'representative_view'
|
|
|
|
# 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'
|
|
|
|
gem 'uglifier', '>= 1.0.3'
|
|
|
|
gem 'turbo-sprockets-rails3'
|
|
end
|
|
|
|
gem 'jquery-rails'
|
|
|
|
|
|
|
|
group :test, :development do
|
|
# Pretty printed test output
|
|
gem 'turn', '~> 0.8.3', :require => false
|
|
gem 'rspec-rails'
|
|
gem 'shoulda-matchers'
|
|
gem 'factory_girl_rails', :require => false
|
|
gem 'faker'
|
|
gem 'capybara'
|
|
gem 'database_cleaner', '0.7.1', :require => false
|
|
gem 'simplecov', :require => false
|
|
gem 'awesome_print'
|
|
gem "letter_opener"
|
|
end
|
|
|
|
group :development do
|
|
gem 'pry-debugger'
|
|
gem 'debugger-linecache'
|
|
end
|