b89353b76c
* Add `invited_by` foreign key to User Allows for a User to be tied to the user who invited them * Include `current_user` in new agent initialization parameters * Add `shoulda-matchers` for testing associations * Add Inviter information and associated account to welcome email * Only show inviter info if applicable * Update conversation spec for FFaker compatibility
78 lines
1.7 KiB
Ruby
78 lines
1.7 KiB
Ruby
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'
|
|
gem 'hashie'
|
|
gem 'jbuilder', '~> 2.5'
|
|
gem 'kaminari'
|
|
gem 'koala'
|
|
gem 'mini_magick'
|
|
gem 'nightfury', '~> 1.0', '>= 1.0.1'
|
|
gem 'omniauth-facebook'
|
|
gem 'pg'
|
|
gem 'poltergeist'
|
|
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 'rest-client'
|
|
gem 'sass-rails', '~> 5.0'
|
|
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'
|
|
|
|
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
|
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
|
gem 'webpacker'
|
|
|
|
# for starting different server processes
|
|
gem 'foreman'
|
|
|
|
# static analysis
|
|
gem 'brakeman'
|
|
|
|
group :development do
|
|
gem 'letter_opener'
|
|
gem 'web-console'
|
|
end
|
|
|
|
|
|
group :test do
|
|
gem 'mock_redis'
|
|
gem 'shoulda-matchers'
|
|
end
|
|
|
|
group :development, :test do
|
|
gem 'byebug', platform: :mri
|
|
gem 'factory_bot_rails'
|
|
gem 'ffaker'
|
|
gem 'listen'
|
|
gem 'pry-rails'
|
|
gem 'rspec-rails', '~> 3.8'
|
|
gem 'rubocop', '~> 0.73.0', require: false
|
|
gem 'seed_dump'
|
|
gem 'spring'
|
|
gem 'spring-watcher-listen'
|
|
end
|
|
|
|
gem 'attr_extras'
|