Chatwoot/Gemfile

97 lines
2.2 KiB
Text
Raw Normal View History

source 'https://rubygems.org'
2019-11-18 03:37:48 +00:00
ruby '2.6.5'
2019-10-16 22:18:48 +00:00
##-- base gems for rails --##
gem 'rack-cors', require: 'rack/cors'
2019-10-20 08:47:26 +00:00
gem 'rails', '~> 6', github: 'rails/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-10-20 08:47:26 +00:00
gem 'acts-as-taggable-on', git: 'https://github.com/mbleigh/acts-as-taggable-on'
2019-10-16 22:18:48 +00:00
gem 'attr_extras'
gem 'browser'
2019-09-04 04:38:21 +00:00
gem 'hashie'
gem 'jbuilder', '~> 2.5'
gem 'kaminari'
2019-10-20 08:47:26 +00:00
gem 'responders'
2019-10-16 22:18:48 +00:00
gem 'time_diff'
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
2019-10-20 08:47:26 +00:00
gem 'valid_email2'
2019-10-16 22:18:48 +00:00
##-- gems for database --#
2019-09-04 04:38:21 +00:00
gem 'pg'
gem 'redis'
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-10-20 08:47:26 +00:00
gem 'figaro'
gem 'foreman'
2019-10-16 22:18:48 +00:00
gem 'puma', '~> 3.0'
2019-08-17 12:19:31 +00:00
gem 'webpacker'
2019-10-16 22:18:48 +00:00
##--- 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 'jwt'
2019-10-16 22:18:48 +00:00
gem 'pundit'
##--- gems for pubsub service ---##
gem 'wisper', '2.0.0'
##--- gems for reporting ---##
gem 'nightfury', '~> 1.0', '>= 1.0.1'
2019-08-17 12:19:31 +00:00
2019-10-16 22:18:48 +00:00
##--- gems for billing ---##
gem 'chargebee', '~>2'
##--- gems for channels ---##
gem 'facebook-messenger'
2019-10-16 22:18:48 +00:00
gem 'telegram-bot-ruby'
2019-10-20 08:47:26 +00:00
gem 'twitter'
2019-10-16 22:18:48 +00:00
# facebook client
gem 'koala'
# Random name generator
gem 'haikunator'
2019-10-16 22:18:48 +00:00
##--- gems for debugging and error reporting ---##
# static analysis
gem 'brakeman'
2019-10-16 22:18:48 +00:00
gem 'sentry-raven'
##-- TODO: move these gems to appropriate groups --##
gem 'carrierwave-aws'
gem 'mini_magick'
gem 'sidekiq'
gem 'uglifier', '>= 1.3.0'
group :development do
gem 'letter_opener'
2019-09-04 04:38:21 +00:00
gem 'web-console'
end
group :test do
gem 'action-cable-testing'
gem 'mock_redis'
gem 'shoulda-matchers'
end
group :development, :test do
gem 'byebug', platform: :mri
2019-09-04 04:38:21 +00:00
gem 'factory_bot_rails'
gem 'faker'
gem 'listen'
gem 'pry-rails'
gem 'rspec-rails', git: 'https://github.com/rspec/rspec-rails', tag: 'v4.0.0.beta3'
2019-09-04 04:38:21 +00:00
gem 'rubocop', '~> 0.73.0', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
2019-09-04 04:38:21 +00:00
gem 'seed_dump'
gem 'spring'
gem 'spring-watcher-listen'
2019-10-20 08:47:26 +00:00
end