Refactoring Gem Groups
This commit is contained in:
93
Gemfile
93
Gemfile
@@ -2,52 +2,81 @@ source 'https://rubygems.org'
|
||||
|
||||
ruby '2.6.3'
|
||||
|
||||
gem 'acts-as-taggable-on', git: 'https://github.com/mbleigh/acts-as-taggable-on'
|
||||
gem 'bootsnap'
|
||||
gem 'carrierwave-aws'
|
||||
gem 'chargebee', '~>2'
|
||||
gem 'coffee-rails'
|
||||
gem 'devise', git: 'https://github.com/plataformatec/devise'
|
||||
gem 'devise_token_auth', git: 'https://github.com/lynndylanhurley/devise_token_auth'
|
||||
gem 'facebook-messenger', '~> 0.11.1'
|
||||
gem 'figaro'
|
||||
##-- base gems for rails --##
|
||||
gem 'rails', '~> 6', github: 'rails/rails'
|
||||
gem 'rack-cors', require: 'rack/cors'
|
||||
# Reduces boot times through caching; required in config/boot.rb
|
||||
gem 'bootsnap', require: false
|
||||
gem 'therubyracer', platforms: :ruby
|
||||
|
||||
|
||||
##-- rails helper gems --##
|
||||
gem 'responders'
|
||||
gem 'valid_email2'
|
||||
gem 'attr_extras'
|
||||
gem 'hashie'
|
||||
gem 'jbuilder', '~> 2.5'
|
||||
gem 'kaminari'
|
||||
gem 'koala'
|
||||
gem 'mini_magick'
|
||||
gem 'nightfury', '~> 1.0', '>= 1.0.1'
|
||||
gem 'time_diff'
|
||||
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
||||
gem 'acts-as-taggable-on', git: 'https://github.com/mbleigh/acts-as-taggable-on'
|
||||
|
||||
|
||||
##-- gems for database --#
|
||||
gem 'pg'
|
||||
gem 'puma', '~> 3.0'
|
||||
gem 'pundit'
|
||||
gem 'pusher'
|
||||
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
||||
gem 'rack-cors', require: 'rack/cors'
|
||||
gem 'rails', '~> 6', github: 'rails/rails'
|
||||
gem 'redis'
|
||||
gem 'redis-namespace'
|
||||
gem 'redis-rack-cache'
|
||||
gem 'responders'
|
||||
gem 'sentry-raven'
|
||||
gem 'sidekiq'
|
||||
gem 'telegram-bot-ruby'
|
||||
gem 'therubyracer', platforms: :ruby
|
||||
gem 'time_diff'
|
||||
gem 'uglifier', '>= 1.3.0'
|
||||
gem 'valid_email2'
|
||||
gem 'wisper', '2.0.0'
|
||||
gem 'attr_extras'
|
||||
|
||||
|
||||
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
||||
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
||||
##--- gems for server & infra configuration ---##
|
||||
gem 'puma', '~> 3.0'
|
||||
gem 'webpacker'
|
||||
|
||||
# for starting different server processes
|
||||
gem 'foreman'
|
||||
gem 'figaro'
|
||||
|
||||
|
||||
##--- gems for authentication & authorization ---##
|
||||
gem 'devise', git: 'https://github.com/plataformatec/devise'
|
||||
gem 'devise_token_auth', git: 'https://github.com/lynndylanhurley/devise_token_auth'
|
||||
# authorization
|
||||
gem 'pundit'
|
||||
|
||||
|
||||
##--- gems for pubsub service ---##
|
||||
gem 'pusher'
|
||||
gem 'wisper', '2.0.0'
|
||||
|
||||
|
||||
##--- gems for reporting ---##
|
||||
gem 'nightfury', '~> 1.0', '>= 1.0.1'
|
||||
|
||||
|
||||
##--- gems for billing ---##
|
||||
gem 'chargebee', '~>2'
|
||||
|
||||
|
||||
##--- gems for channels ---##
|
||||
gem 'facebook-messenger', '~> 0.11.1'
|
||||
gem 'twitter'
|
||||
gem 'telegram-bot-ruby'
|
||||
# facebook client
|
||||
gem 'koala'
|
||||
|
||||
|
||||
##--- gems for debugging and error reporting ---##
|
||||
# static analysis
|
||||
gem 'brakeman'
|
||||
gem 'sentry-raven'
|
||||
|
||||
|
||||
##-- TODO: move these gems to appropriate groups --##
|
||||
gem 'carrierwave-aws'
|
||||
gem 'coffee-rails'
|
||||
gem 'mini_magick'
|
||||
gem 'sidekiq'
|
||||
gem 'uglifier', '>= 1.3.0'
|
||||
|
||||
|
||||
group :development do
|
||||
gem 'letter_opener'
|
||||
|
||||
Reference in New Issue
Block a user