At the time of using, `json_refs` gem did not have the ability to recursively resolve the references. So we had to fork this into one of our own and make the required changes. So this fork was used as the source for the gem. Along with this, we had raised a PR in the original repo so as to push the recursive dereferencing changes upstream. This was merged in the gem's parent repo. So updated the source of this gem to the original parent repo source.
113 lines
2.5 KiB
Ruby
113 lines
2.5 KiB
Ruby
source 'https://rubygems.org'
|
|
|
|
ruby '2.6.5'
|
|
|
|
##-- base gems for rails --##
|
|
gem 'rack-cors', require: 'rack/cors'
|
|
gem 'rails'
|
|
# Reduces boot times through caching; required in config/boot.rb
|
|
gem 'bootsnap', require: false
|
|
|
|
##-- rails helper gems --##
|
|
gem 'acts-as-taggable-on'
|
|
gem 'attr_extras'
|
|
gem 'browser'
|
|
gem 'hashie'
|
|
gem 'jbuilder'
|
|
gem 'kaminari'
|
|
gem 'responders'
|
|
gem 'rest-client'
|
|
gem 'time_diff'
|
|
gem 'tzinfo-data'
|
|
gem 'valid_email2'
|
|
# compress javascript config.assets.js_compressor
|
|
gem 'uglifier'
|
|
|
|
##-- for active storage --##
|
|
gem 'aws-sdk-s3', require: false
|
|
gem 'azure-storage', require: false
|
|
gem 'google-cloud-storage', require: false
|
|
gem 'mini_magick'
|
|
|
|
##-- gems for database --#
|
|
gem 'pg'
|
|
gem 'redis'
|
|
gem 'redis-namespace'
|
|
gem 'redis-rack-cache'
|
|
|
|
##--- gems for server & infra configuration ---##
|
|
gem 'dotenv-rails'
|
|
gem 'foreman'
|
|
gem 'puma'
|
|
gem 'webpacker'
|
|
|
|
##--- gems for authentication & authorization ---##
|
|
gem 'devise'
|
|
gem 'devise_token_auth'
|
|
# authorization
|
|
gem 'jwt'
|
|
gem 'pundit'
|
|
|
|
##--- gems for pubsub service ---##
|
|
# https://karolgalanciak.com/blog/2019/11/30/from-activerecord-callbacks-to-publish-slash-subscribe-pattern-and-event-driven-design/
|
|
gem 'wisper', '2.0.0'
|
|
|
|
##--- gems for reporting ---##
|
|
gem 'nightfury'
|
|
|
|
##--- gems for billing ---##
|
|
gem 'chargebee'
|
|
|
|
##--- gems for channels ---##
|
|
gem 'facebook-messenger'
|
|
gem 'telegram-bot-ruby'
|
|
# twitty will handle subscription of twitter account events
|
|
gem 'twitty', git: 'https://github.com/chatwoot/twitty'
|
|
|
|
# facebook client
|
|
gem 'koala'
|
|
# Random name generator
|
|
gem 'haikunator'
|
|
|
|
##--- gems for debugging and error reporting ---##
|
|
# static analysis
|
|
gem 'brakeman'
|
|
gem 'scout_apm'
|
|
gem 'sentry-raven'
|
|
|
|
##-- background job processing --##
|
|
gem 'sidekiq'
|
|
|
|
group :development do
|
|
gem 'annotate'
|
|
gem 'bullet'
|
|
gem 'letter_opener'
|
|
gem 'web-console'
|
|
|
|
# used in swagger build
|
|
gem 'json_refs', git: 'https://github.com/tzmfreedom/json_refs', ref: 'e32deb0'
|
|
end
|
|
|
|
group :development, :test do
|
|
# locking until https://github.com/codeclimate/test-reporter/issues/418 is resolved
|
|
gem 'action-cable-testing'
|
|
gem 'bundle-audit', require: false
|
|
gem 'byebug', platform: :mri
|
|
gem 'factory_bot_rails'
|
|
gem 'faker'
|
|
gem 'listen'
|
|
gem 'mock_redis'
|
|
gem 'pry-rails'
|
|
gem 'rspec-rails', '~> 4.0.0.beta2'
|
|
gem 'rubocop', require: false
|
|
gem 'rubocop-performance', require: false
|
|
gem 'rubocop-rails', require: false
|
|
gem 'rubocop-rspec', require: false
|
|
gem 'scss_lint', require: false
|
|
gem 'seed_dump'
|
|
gem 'shoulda-matchers'
|
|
gem 'simplecov', '0.17.1', require: false
|
|
gem 'spring'
|
|
gem 'spring-watcher-listen'
|
|
end
|