2019-08-14 09:48:44 +00:00
|
|
|
source 'https://rubygems.org'
|
|
|
|
|
2019-11-18 03:37:48 +00:00
|
|
|
ruby '2.6.5'
|
2019-08-19 08:19:57 +00:00
|
|
|
|
2019-10-16 22:18:48 +00:00
|
|
|
##-- base gems for rails --##
|
|
|
|
gem 'rack-cors', require: 'rack/cors'
|
2019-11-25 18:25:18 +00:00
|
|
|
gem 'rails'
|
2019-10-16 22:18:48 +00:00
|
|
|
# Reduces boot times through caching; required in config/boot.rb
|
|
|
|
gem 'bootsnap', require: false
|
|
|
|
|
|
|
|
##-- rails helper gems --##
|
2019-11-25 18:25:18 +00:00
|
|
|
gem 'acts-as-taggable-on'
|
2019-10-16 22:18:48 +00:00
|
|
|
gem 'attr_extras'
|
2019-11-16 09:18:38 +00:00
|
|
|
gem 'browser'
|
2019-09-04 04:38:21 +00:00
|
|
|
gem 'hashie'
|
2019-11-25 18:25:18 +00:00
|
|
|
gem 'jbuilder'
|
2019-08-14 09:48:44 +00:00
|
|
|
gem 'kaminari'
|
2019-10-20 08:47:26 +00:00
|
|
|
gem 'responders'
|
2020-02-14 17:49:17 +00:00
|
|
|
gem 'rest-client'
|
2019-10-16 22:18:48 +00:00
|
|
|
gem 'time_diff'
|
2019-11-25 18:25:18 +00:00
|
|
|
gem 'tzinfo-data'
|
2019-10-20 08:47:26 +00:00
|
|
|
gem 'valid_email2'
|
2019-12-10 04:59:35 +00:00
|
|
|
# compress javascript config.assets.js_compressor
|
|
|
|
gem 'uglifier'
|
|
|
|
|
|
|
|
##-- for active storage --##
|
2020-01-07 17:29:17 +00:00
|
|
|
gem 'aws-sdk-s3', require: false
|
|
|
|
gem 'azure-storage', require: false
|
|
|
|
gem 'google-cloud-storage', require: false
|
2019-12-10 04:59:35 +00:00
|
|
|
gem 'mini_magick'
|
2019-10-16 22:18:48 +00:00
|
|
|
|
|
|
|
##-- gems for database --#
|
2019-09-04 04:38:21 +00:00
|
|
|
gem 'pg'
|
|
|
|
gem 'redis'
|
2019-08-14 09:48:44 +00:00
|
|
|
gem 'redis-namespace'
|
|
|
|
gem 'redis-rack-cache'
|
2019-10-16 19:32:42 +00:00
|
|
|
|
2019-10-16 22:18:48 +00:00
|
|
|
##--- gems for server & infra configuration ---##
|
2019-11-23 19:57:39 +00:00
|
|
|
gem 'dotenv-rails'
|
2019-10-20 08:47:26 +00:00
|
|
|
gem 'foreman'
|
2019-11-25 18:25:18 +00:00
|
|
|
gem 'puma'
|
2019-08-17 12:19:31 +00:00
|
|
|
gem 'webpacker'
|
2019-10-16 22:18:48 +00:00
|
|
|
|
|
|
|
##--- gems for authentication & authorization ---##
|
2019-11-25 18:25:18 +00:00
|
|
|
gem 'devise'
|
|
|
|
gem 'devise_token_auth'
|
2019-10-16 22:18:48 +00:00
|
|
|
# authorization
|
2019-10-30 05:13:11 +00:00
|
|
|
gem 'jwt'
|
2019-10-16 22:18:48 +00:00
|
|
|
gem 'pundit'
|
|
|
|
|
|
|
|
##--- gems for pubsub service ---##
|
2019-12-10 04:59:35 +00:00
|
|
|
# https://karolgalanciak.com/blog/2019/11/30/from-activerecord-callbacks-to-publish-slash-subscribe-pattern-and-event-driven-design/
|
2019-10-16 22:18:48 +00:00
|
|
|
gem 'wisper', '2.0.0'
|
|
|
|
|
|
|
|
##--- gems for reporting ---##
|
2019-11-25 18:25:18 +00:00
|
|
|
gem 'nightfury'
|
2019-08-17 12:19:31 +00:00
|
|
|
|
2019-10-16 22:18:48 +00:00
|
|
|
##--- gems for billing ---##
|
2019-11-25 18:25:18 +00:00
|
|
|
gem 'chargebee'
|
2019-10-16 22:18:48 +00:00
|
|
|
|
|
|
|
##--- gems for channels ---##
|
2019-10-19 20:11:24 +00:00
|
|
|
gem 'facebook-messenger'
|
2019-10-16 22:18:48 +00:00
|
|
|
gem 'telegram-bot-ruby'
|
2020-02-02 19:09:00 +00:00
|
|
|
# twitty will handle subscription of twitter account events
|
|
|
|
gem 'twitty', git: 'https://github.com/chatwoot/twitty'
|
|
|
|
|
2019-10-16 22:18:48 +00:00
|
|
|
# facebook client
|
|
|
|
gem 'koala'
|
2019-10-29 07:20:54 +00:00
|
|
|
# Random name generator
|
|
|
|
gem 'haikunator'
|
2019-10-16 22:18:48 +00:00
|
|
|
|
|
|
|
##--- gems for debugging and error reporting ---##
|
2019-08-21 07:29:56 +00:00
|
|
|
# static analysis
|
|
|
|
gem 'brakeman'
|
2020-02-14 22:52:37 +00:00
|
|
|
gem 'scout_apm'
|
2019-10-16 22:18:48 +00:00
|
|
|
gem 'sentry-raven'
|
|
|
|
|
2020-01-07 17:29:17 +00:00
|
|
|
##-- background job processing --##
|
2019-10-16 22:18:48 +00:00
|
|
|
gem 'sidekiq'
|
|
|
|
|
2019-08-25 14:29:28 +00:00
|
|
|
group :development do
|
2019-11-30 13:39:55 +00:00
|
|
|
gem 'annotate'
|
2019-11-25 18:25:18 +00:00
|
|
|
gem 'bullet'
|
2019-08-25 14:29:28 +00:00
|
|
|
gem 'letter_opener'
|
2019-09-04 04:38:21 +00:00
|
|
|
gem 'web-console'
|
2020-02-23 07:24:29 +00:00
|
|
|
|
|
|
|
# used in swagger build
|
2020-02-26 19:49:26 +00:00
|
|
|
gem 'json_refs', git: 'https://github.com/tzmfreedom/json_refs', ref: 'e32deb0'
|
2019-08-25 14:29:28 +00:00
|
|
|
end
|
|
|
|
|
2019-08-14 09:48:44 +00:00
|
|
|
group :development, :test do
|
2020-02-16 10:16:26 +00:00
|
|
|
# locking until https://github.com/codeclimate/test-reporter/issues/418 is resolved
|
2019-12-22 17:23:18 +00:00
|
|
|
gem 'action-cable-testing'
|
2019-11-22 07:23:57 +00:00
|
|
|
gem 'bundle-audit', require: false
|
2019-08-14 09:48:44 +00:00
|
|
|
gem 'byebug', platform: :mri
|
2019-09-04 04:38:21 +00:00
|
|
|
gem 'factory_bot_rails'
|
2019-10-16 21:48:07 +00:00
|
|
|
gem 'faker'
|
2019-08-19 08:19:57 +00:00
|
|
|
gem 'listen'
|
2019-12-22 17:23:18 +00:00
|
|
|
gem 'mock_redis'
|
2019-10-12 18:08:41 +00:00
|
|
|
gem 'pry-rails'
|
2019-11-25 18:25:18 +00:00
|
|
|
gem 'rspec-rails', '~> 4.0.0.beta2'
|
|
|
|
gem 'rubocop', require: false
|
2019-10-23 18:26:48 +00:00
|
|
|
gem 'rubocop-performance', require: false
|
|
|
|
gem 'rubocop-rails', require: false
|
|
|
|
gem 'rubocop-rspec', require: false
|
2020-02-16 10:16:26 +00:00
|
|
|
gem 'scss_lint', require: false
|
2019-09-04 04:38:21 +00:00
|
|
|
gem 'seed_dump'
|
2019-12-22 17:23:18 +00:00
|
|
|
gem 'shoulda-matchers'
|
2020-02-03 08:44:03 +00:00
|
|
|
gem 'simplecov', '0.17.1', require: false
|
2019-08-14 09:48:44 +00:00
|
|
|
gem 'spring'
|
2019-08-19 08:19:57 +00:00
|
|
|
gem 'spring-watcher-listen'
|
2019-10-20 08:47:26 +00:00
|
|
|
end
|