1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-28 09:24:24 +01:00
fab-manager/Gemfile

155 lines
3.0 KiB
Ruby
Raw Normal View History

2015-05-05 03:10:25 +02:00
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
2017-11-13 12:22:33 +01:00
gem 'rails', '4.2.10'
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.5'
gem 'jbuilder_cache_multi'
2015-05-05 03:10:25 +02:00
# 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
2017-12-13 15:28:57 +01:00
gem 'web-console', '~> 2.1.3'
2015-05-05 03:10:25 +02:00
# 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
2017-03-02 10:29:17 +01:00
gem 'mailcatcher'
2015-05-05 03:10:25 +02:00
gem 'awesome_print'
2017-08-24 16:08:42 +02:00
gem 'puma'
2015-05-05 03:10:25 +02:00
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'
2016-12-01 13:08:41 +01:00
gem 'coveralls', require: false
2015-05-05 03:10:25 +02:00
end
group :test do
gem 'database_cleaner'
gem 'faker'
gem 'test_after_commit'
gem 'minitest-reporters'
gem 'webmock'
gem 'vcr'
2016-04-08 11:10:36 +02:00
gem 'byebug'
gem 'pdf-reader'
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'
2018-03-26 17:03:57 +02:00
gem 'omniauth', '~> 1.6.0'
2016-03-23 18:39:41 +01:00
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'
gem 'message_format'
2016-04-20 18:13:36 +02:00
gem 'openlab_ruby'
2016-05-04 18:17:50 +02:00
gem 'api-pagination'
gem 'has_secure_token'
2016-05-05 15:02:02 +02:00
gem 'apipie-rails'
2016-07-05 16:13:11 +02:00
# XLS files generation
gem 'axlsx', git: 'https://github.com/randym/axlsx', branch: 'release-3.0.0'
2016-07-05 16:13:11 +02:00
gem 'axlsx_rails'
2018-03-08 12:00:17 +01:00
gem "rack-protection", "1.5.5"