BikeBikeBike/Gemfile

102 lines
2.7 KiB
Ruby
Raw Normal View History

2014-03-09 14:43:33 -06:00
source 'http://rubygems.org'
2013-04-19 19:14:51 +02:00
2015-03-17 20:29:17 -07:00
gem 'rails', '4.2.0'
2013-04-19 19:14:51 +02:00
gem 'pg'
gem 'rake', '11.1.2'
gem 'ruby_dep', '1.3.1' # Lock at 1.3.1 since 1.4 requires ruby 2.5. We should unlock once we upgrade the ruby version on our server
2016-05-15 12:51:50 -07:00
gem 'rack-mini-profiler'
2013-04-19 19:14:51 +02:00
gem 'haml'
2017-04-15 10:22:25 -07:00
gem 'nokogiri'
2017-04-09 11:37:16 -07:00
gem 'sass'
gem 'sass-rails'
gem 'uglifier', '>= 1.3.0'
# replace this once these changes are merged in sorcery
gem 'sorcery', git: 'https://github.com/tg90nor/sorcery.git', branch: 'make-facebook-provider-use-json-token-parser'
gem 'carrierwave'
gem 'carrierwave-imageoptimizer'
gem 'mini_magick'
gem 'activerecord-session_store'
gem 'premailer-rails'
gem 'sidekiq'
gem 'letter_opener'
gem 'launchy'
2017-04-15 10:08:38 -07:00
# Bike Collectives gems, when developing locally execute:
# bundle config local.bikecollectives_core ../bikecollectives_core
# bundle config local.bumbleberry ../bumbleberry
# bundle config local.lingua_franca ../lingua_franca
# bundle config local.marmara ../marmara
gem 'bikecollectives_core', git: 'https://github.com/bikebike/bikecollectives_core.git', branch: 'master'
gem 'bumbleberry', git: 'https://github.com/bumbleberry/bumbleberry.git', branch: '2017'
gem 'lingua_franca', git: 'https://github.com/lingua-franca/lingua_franca.git', branch: '2017'
gem 'marmara', git: 'https://github.com/lingua-franca/marmara.git', branch: 'master'
2017-04-09 11:37:16 -07:00
# Bike!Bike! specific stuff
2017-05-18 17:01:10 -07:00
gem 'ianfleeton-paypal-express', require: 'paypal/express'
2014-03-09 14:43:33 -06:00
gem 'geocoder'
2014-07-13 11:08:01 -06:00
gem 'sitemap_generator'
2014-12-18 21:29:53 -08:00
gem 'sass-json-vars'
2015-08-18 22:18:29 -07:00
gem 'redcarpet'
2017-04-09 11:37:16 -07:00
gem 'to_spreadsheet', git: 'https://github.com/glebm/to_spreadsheet.git'
2013-04-19 19:14:51 +02:00
group :development do
2017-04-09 11:37:16 -07:00
gem 'better_errors'
gem 'binding_of_caller'
gem 'meta_request'
gem 'capistrano', '~> 3.1'
gem 'capistrano-rails', '~> 1.1'
gem 'capistrano-faster-assets', '~> 1.0'
gem 'eventmachine', git: 'https://github.com/krzcho/eventmachine', :branch => 'master'
gem 'thin'
2017-04-09 11:37:16 -07:00
gem 'rubocop', require: false
gem 'haml-lint', require: false
2013-04-19 19:14:51 +02:00
end
group :test do
2017-04-09 11:37:16 -07:00
gem 'rspec'
gem 'rspec-rails'
gem 'gherkin3', '>= 3.1.0'
gem 'cucumber'
gem 'cucumber-core'
gem 'cucumber-rails', require: false
gem 'guard-cucumber'
gem 'poltergeist'
gem 'capybara-email'
gem 'guard-rspec'
gem 'factory_girl_rails'
gem 'coveralls', require: false
gem 'selenium-webdriver'
gem 'simplecov', require: false
gem 'webmock', require: false
gem 'database_cleaner'
gem 'mocha'
2013-04-19 19:14:51 +02:00
end
2013-06-21 11:37:31 +02:00
group :production, :preview do
2017-04-09 11:37:16 -07:00
gem 'rails_12factor'
2015-08-04 21:54:04 -07:00
end
group :production, :preview do
2017-05-18 17:01:10 -07:00
platforms :ruby do
gem 'unicorn', require: false
end
2017-04-09 11:37:16 -07:00
gem 'daemon-spawn'
gem 'daemons'
2014-06-11 19:38:00 -07:00
end
platforms 'mswin', 'mingw' do
gem 'tzinfo-data'
2017-04-09 11:37:16 -07:00
group :test do
gem 'wdm', '>= 0.1.0'
gem 'win32console', require: false
2017-04-09 11:37:16 -07:00
end
2013-06-21 11:37:31 +02:00
end