mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
Add travis config (cherry picked from commite3fdb12289) Only build on Ruby 1.9.3 (cherry picked from commit719ef386bf) Exclude pry from CI build (cherry picked from commitd60935c800) Conflicts: Gemfile Attempt 2 (cherry picked from commit2b19253895) Conflicts: Gemfile.lock Configure travis for postgres (cherry picked from commit3a441cd7d9) Fix migrations that fail because of coupling to changed/removed models (cherry picked from commitb030793f15) Set up xvfb for Travis (cherry picked from commitcdc3ab09a1) Add a failing test to test travis (cherry picked from commit72aa8fe5e5) Revert "Add a failing test to test travis" This reverts commit72aa8fe5e5. (cherry picked from commitbd5533e2b1) Add simplecov (cherry picked from commit5089d3bb22) Conflicts: Gemfile.lock Add turbo sprockets for faster asset precompile (cherry picked from commit3e6c56a638) Remove spork (cherry picked from commited7bded642) Conflicts: spec/spec_helper.rb Remove more spork-specific things, remove unused cuc config from zeus (cherry picked from commitfa11ff8982) Ensure order decorator is required, fix test fragility (cherry picked from commit1e94f88c5e)
73 lines
1.9 KiB
Ruby
73 lines
1.9 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-1-stable'
|
|
gem 'spree_i18n', :git => 'git://github.com/spree/spree_i18n.git'
|
|
gem 'spree_paypal_express', :git => 'git://github.com/eaterprises/spree_paypal_express.git', :branch => '1-1-stable'
|
|
gem 'spree_last_address', :git => 'git://github.com/eaterprises/spree-last-address.git'
|
|
|
|
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 'haml'
|
|
gem 'aws-sdk'
|
|
gem 'db2fog'
|
|
gem 'andand'
|
|
gem 'truncate_html'
|
|
gem 'representative_view'
|
|
gem 'chili', :github => 'eaterprises/chili'
|
|
gem 'deface', :github => 'spree/deface'
|
|
|
|
# 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'
|
|
gem 'timecop'
|
|
end
|
|
|
|
group :chili do
|
|
gem 'enterprises_distributor_info_rich_text_feature', path: 'lib/chili/enterprises_distributor_info_rich_text_feature'
|
|
gem 'eaterprises_feature', path: 'lib/chili/eaterprises_feature'
|
|
gem 'local_organics_feature', path: 'lib/chili/local_organics_feature'
|
|
end
|
|
|
|
group :development do
|
|
gem 'pry-debugger'
|
|
gem 'debugger-linecache'
|
|
end
|