mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
150 lines
2.9 KiB
Ruby
150 lines
2.9 KiB
Ruby
source 'https://rubygems.org'
|
|
|
|
gem 'compass-rails', '2.0.4'
|
|
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
|
gem 'rails', '4.2.11.1'
|
|
# Use SCSS for stylesheets
|
|
gem 'sass-rails', '5.0.1'
|
|
|
|
# Use Uglifier as compressor for JavaScript assets
|
|
gem 'uglifier', '>= 4.1.20'
|
|
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
|
|
gem 'therubyracer', '= 0.12.0', platforms: :ruby
|
|
|
|
# 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'
|
|
# bundle exec rake doc:rails generates the API under doc/api.
|
|
gem 'sdoc', '~> 0.4.0', group: :doc # TODO, remove unused ?
|
|
|
|
gem 'forgery'
|
|
gem 'responders', '~> 2.0'
|
|
|
|
group :development, :test do
|
|
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
|
# comment over to use visual debugger (eg. RubyMine), uncomment to use manual debugging
|
|
# gem 'byebug'
|
|
|
|
# Access an IRB console on exception pages or by using <%= console %> in views
|
|
gem 'web-console', '~> 2.1.3'
|
|
|
|
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
|
gem 'spring'
|
|
|
|
gem 'railroady'
|
|
|
|
gem 'rubocop', '~> 0.61.1', require: false
|
|
end
|
|
|
|
group :development do
|
|
gem 'active_record_query_trace'
|
|
gem 'awesome_print'
|
|
gem 'coveralls', require: false
|
|
gem 'foreman'
|
|
# Preview mail in the browser
|
|
gem 'mailcatcher'
|
|
gem 'puma'
|
|
gem 'rb-readline'
|
|
end
|
|
|
|
group :test do
|
|
gem 'byebug'
|
|
gem 'database_cleaner'
|
|
gem 'faker'
|
|
gem 'minitest-reporters'
|
|
gem 'pdf-reader'
|
|
gem 'test_after_commit'
|
|
gem 'vcr'
|
|
gem 'webmock'
|
|
end
|
|
|
|
group :production do
|
|
gem 'rails_12factor'
|
|
end
|
|
|
|
gem 'seed_dump'
|
|
|
|
gem 'pg'
|
|
|
|
gem 'devise', ">= 4.6.0"
|
|
|
|
gem 'omniauth', '~> 1.6.0'
|
|
gem 'omniauth-oauth2'
|
|
|
|
gem 'rolify'
|
|
|
|
gem 'kaminari'
|
|
|
|
gem 'figaro'
|
|
|
|
gem 'bootstrap-sass', '>= 3.4.1'
|
|
gem 'font-awesome-rails'
|
|
|
|
# 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'
|
|
|
|
gem 'stripe', '1.30.2'
|
|
|
|
gem 'recurrence'
|
|
|
|
# PDF
|
|
gem 'prawn'
|
|
gem 'prawn-table'
|
|
|
|
gem 'elasticsearch-model', '~> 5'
|
|
gem 'elasticsearch-persistence', '~> 5'
|
|
gem 'elasticsearch-rails', '~> 5'
|
|
|
|
gem 'notify_with'
|
|
|
|
gem 'pundit'
|
|
|
|
gem 'oj'
|
|
|
|
gem 'actionpack-page_caching'
|
|
gem 'rails-observers'
|
|
|
|
gem 'chroma'
|
|
|
|
|
|
gem 'protected_attributes'
|
|
|
|
gem 'message_format'
|
|
|
|
gem 'openlab_ruby'
|
|
|
|
gem 'api-pagination'
|
|
gem 'apipie-rails'
|
|
gem 'has_secure_token'
|
|
|
|
# XLS files generation
|
|
gem 'axlsx', git: 'https://github.com/randym/axlsx', branch: 'master'
|
|
gem 'axlsx_rails'
|
|
gem 'rubyzip', '>= 1.2.2'
|
|
|
|
gem 'rack-protection', '1.5.5'
|
|
|
|
# get free disk space
|
|
gem 'sys-filesystem'
|
|
|
|
gem 'sha3'
|