2015-05-05 03:10:25 +02:00
|
|
|
source 'https://rubygems.org'
|
|
|
|
|
|
|
|
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
2016-03-23 18:39:41 +01:00
|
|
|
gem 'rails', '4.2.5'
|
2015-05-05 03:10:25 +02:00
|
|
|
# Use SCSS for stylesheets
|
|
|
|
gem 'sass-rails', '5.0.1'
|
|
|
|
gem 'compass-rails', '2.0.4'
|
|
|
|
|
|
|
|
# Use Uglifier as compressor for JavaScript assets
|
|
|
|
gem 'uglifier', '>= 1.3.0'
|
|
|
|
# Use CoffeeScript for .js.coffee assets and views
|
|
|
|
gem 'coffee-rails', '~> 4.1.0'
|
|
|
|
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
|
2016-03-23 18:39:41 +01:00
|
|
|
gem 'therubyracer', '= 0.12.0', platforms: :ruby
|
2015-05-05 03:10:25 +02:00
|
|
|
|
|
|
|
# Use jquery as the JavaScript library
|
|
|
|
gem 'jquery-rails'
|
|
|
|
# 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.
|
2016-03-23 18:39:41 +01:00
|
|
|
gem 'sdoc', '~> 0.4.0', group: :doc #TODO remove unused ?
|
2015-05-05 03:10:25 +02:00
|
|
|
|
|
|
|
gem 'forgery'
|
|
|
|
gem 'responders', '~> 2.0'
|
|
|
|
|
|
|
|
group :development, :test do
|
|
|
|
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
2016-03-23 18:39:41 +01:00
|
|
|
# comment over to use visual debugger (eg. RubyMine), uncomment to use manual debugging
|
|
|
|
# gem 'byebug'
|
2015-05-05 03:10:25 +02:00
|
|
|
|
|
|
|
# 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'
|
|
|
|
|
2016-03-23 18:39:41 +01:00
|
|
|
gem 'railroady'
|
2015-05-05 03:10:25 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
group :development do
|
|
|
|
# Preview mail in the browser
|
|
|
|
gem 'letter_opener'
|
|
|
|
gem 'awesome_print'
|
|
|
|
|
|
|
|
gem "puma"
|
|
|
|
gem 'foreman'
|
|
|
|
|
|
|
|
gem 'capistrano'
|
|
|
|
gem 'rvm-capistrano', require: false
|
|
|
|
gem 'capistrano-sidekiq', require: false
|
2016-03-23 18:39:41 +01:00
|
|
|
gem 'capistrano-maintenance', '0.0.5', require: false
|
|
|
|
|
|
|
|
gem 'active_record_query_trace'
|
2015-05-05 03:10:25 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
group :test do
|
|
|
|
gem 'database_cleaner'
|
|
|
|
gem 'faker'
|
2016-04-04 17:42:45 +02:00
|
|
|
gem 'test_after_commit'
|
|
|
|
gem 'minitest-reporters'
|
2016-04-06 15:15:09 +02:00
|
|
|
gem 'webmock'
|
|
|
|
gem 'vcr'
|
2016-04-08 11:10:36 +02:00
|
|
|
gem 'byebug'
|
2015-05-05 03:10:25 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
group :production do
|
|
|
|
gem 'unicorn'
|
|
|
|
gem 'rails_12factor'
|
|
|
|
end
|
|
|
|
|
|
|
|
gem 'seed_dump'
|
|
|
|
|
|
|
|
gem 'pg'
|
|
|
|
|
|
|
|
gem 'devise'
|
|
|
|
gem 'devise-async'
|
|
|
|
|
2016-03-23 18:39:41 +01:00
|
|
|
gem 'omniauth'
|
|
|
|
gem 'omniauth-oauth2'
|
|
|
|
|
2015-05-05 03:10:25 +02:00
|
|
|
gem 'rolify'
|
|
|
|
|
|
|
|
gem 'kaminari'
|
|
|
|
|
|
|
|
gem 'figaro'
|
|
|
|
|
|
|
|
gem 'bootstrap-sass'
|
|
|
|
gem 'font-awesome-rails'
|
|
|
|
|
2016-03-23 18:39:41 +01:00
|
|
|
#using bower instead
|
|
|
|
#gem 'angularjs-rails'
|
2015-05-05 03:10:25 +02:00
|
|
|
|
|
|
|
# Image processing ruby wrapper for ImageMagick
|
|
|
|
gem 'mini_magick'
|
|
|
|
# upload files
|
|
|
|
gem 'carrierwave'
|
|
|
|
|
|
|
|
gem 'twitter'
|
|
|
|
gem 'twitter-text'
|
|
|
|
|
|
|
|
# slug url
|
|
|
|
gem 'friendly_id', '~> 5.1.0'
|
|
|
|
|
|
|
|
# state machine
|
|
|
|
gem 'aasm'
|
|
|
|
|
|
|
|
# Background job processing
|
|
|
|
gem 'sidekiq'
|
|
|
|
gem 'sinatra', require: false
|
|
|
|
# Recurring jobs for Sidekiq
|
|
|
|
gem 'sidekiq-cron'
|
|
|
|
|
2016-03-23 18:39:41 +01:00
|
|
|
gem 'stripe', '1.30.2'
|
|
|
|
|
2015-05-05 03:10:25 +02:00
|
|
|
gem 'recurrence'
|
|
|
|
|
2016-03-23 18:39:41 +01:00
|
|
|
# PDF
|
|
|
|
gem 'prawn'
|
|
|
|
gem 'prawn-table'
|
2015-05-05 03:10:25 +02:00
|
|
|
|
2016-03-23 18:39:41 +01:00
|
|
|
gem 'elasticsearch-rails'
|
|
|
|
gem 'elasticsearch-model'
|
|
|
|
gem 'elasticsearch-persistence'
|
2015-05-05 03:10:25 +02:00
|
|
|
|
|
|
|
gem 'notify_with'
|
|
|
|
|
|
|
|
gem 'pundit'
|
2016-03-23 18:39:41 +01:00
|
|
|
|
|
|
|
gem 'oj'
|
|
|
|
|
|
|
|
gem 'actionpack-page_caching'
|
|
|
|
gem 'rails-observers'
|
|
|
|
|
|
|
|
gem 'chroma'
|
|
|
|
|
|
|
|
|
|
|
|
gem 'protected_attributes'
|
|
|
|
|
2016-04-04 17:42:45 +02:00
|
|
|
gem 'message_format'
|