* closes #249 add bullet gem - upgrade gems - fix the warning in the console - fix the deprecation message for where not
This commit is contained in:
@@ -19,6 +19,13 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- checkout
|
- checkout
|
||||||
|
|
||||||
|
- run:
|
||||||
|
name: Configure Bundler
|
||||||
|
command: |
|
||||||
|
echo 'export BUNDLER_VERSION=$(cat Gemfile.lock | tail -1 | tr -d " ")' >> $BASH_ENV
|
||||||
|
source $BASH_ENV
|
||||||
|
gem install bundler
|
||||||
|
|
||||||
- run:
|
- run:
|
||||||
name: Which bundler?
|
name: Which bundler?
|
||||||
command: bundle -v
|
command: bundle -v
|
||||||
|
|||||||
27
Gemfile
27
Gemfile
@@ -4,20 +4,20 @@ ruby '2.6.5'
|
|||||||
|
|
||||||
##-- base gems for rails --##
|
##-- base gems for rails --##
|
||||||
gem 'rack-cors', require: 'rack/cors'
|
gem 'rack-cors', require: 'rack/cors'
|
||||||
gem 'rails', '~> 6', git: 'https://github.com/rails/rails'
|
gem 'rails'
|
||||||
# Reduces boot times through caching; required in config/boot.rb
|
# Reduces boot times through caching; required in config/boot.rb
|
||||||
gem 'bootsnap', require: false
|
gem 'bootsnap', require: false
|
||||||
|
|
||||||
##-- rails helper gems --##
|
##-- rails helper gems --##
|
||||||
gem 'acts-as-taggable-on', git: 'https://github.com/mbleigh/acts-as-taggable-on'
|
gem 'acts-as-taggable-on'
|
||||||
gem 'attr_extras'
|
gem 'attr_extras'
|
||||||
gem 'browser'
|
gem 'browser'
|
||||||
gem 'hashie'
|
gem 'hashie'
|
||||||
gem 'jbuilder', '~> 2.5'
|
gem 'jbuilder'
|
||||||
gem 'kaminari'
|
gem 'kaminari'
|
||||||
gem 'responders'
|
gem 'responders'
|
||||||
gem 'time_diff'
|
gem 'time_diff'
|
||||||
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
gem 'tzinfo-data'
|
||||||
gem 'valid_email2'
|
gem 'valid_email2'
|
||||||
|
|
||||||
##-- gems for database --#
|
##-- gems for database --#
|
||||||
@@ -29,24 +29,25 @@ gem 'redis-rack-cache'
|
|||||||
##--- gems for server & infra configuration ---##
|
##--- gems for server & infra configuration ---##
|
||||||
gem 'dotenv-rails'
|
gem 'dotenv-rails'
|
||||||
gem 'foreman'
|
gem 'foreman'
|
||||||
gem 'puma', '~> 3.0'
|
gem 'puma'
|
||||||
gem 'webpacker'
|
gem 'webpacker'
|
||||||
|
|
||||||
##--- gems for authentication & authorization ---##
|
##--- gems for authentication & authorization ---##
|
||||||
gem 'devise', git: 'https://github.com/plataformatec/devise'
|
gem 'devise'
|
||||||
gem 'devise_token_auth', git: 'https://github.com/lynndylanhurley/devise_token_auth'
|
gem 'devise_token_auth'
|
||||||
# authorization
|
# authorization
|
||||||
gem 'jwt'
|
gem 'jwt'
|
||||||
gem 'pundit'
|
gem 'pundit'
|
||||||
|
|
||||||
##--- gems for pubsub service ---##
|
##--- gems for pubsub service ---##
|
||||||
|
# TODO investigate and remove this gem
|
||||||
gem 'wisper', '2.0.0'
|
gem 'wisper', '2.0.0'
|
||||||
|
|
||||||
##--- gems for reporting ---##
|
##--- gems for reporting ---##
|
||||||
gem 'nightfury', '~> 1.0', '>= 1.0.1'
|
gem 'nightfury'
|
||||||
|
|
||||||
##--- gems for billing ---##
|
##--- gems for billing ---##
|
||||||
gem 'chargebee', '~>2'
|
gem 'chargebee'
|
||||||
|
|
||||||
##--- gems for channels ---##
|
##--- gems for channels ---##
|
||||||
gem 'facebook-messenger'
|
gem 'facebook-messenger'
|
||||||
@@ -63,12 +64,14 @@ gem 'brakeman'
|
|||||||
gem 'sentry-raven'
|
gem 'sentry-raven'
|
||||||
|
|
||||||
##-- TODO: move these gems to appropriate groups --##
|
##-- TODO: move these gems to appropriate groups --##
|
||||||
|
# remove this gem in favor of active storage - github #158
|
||||||
gem 'carrierwave-aws'
|
gem 'carrierwave-aws'
|
||||||
gem 'mini_magick'
|
gem 'mini_magick'
|
||||||
gem 'sidekiq'
|
gem 'sidekiq'
|
||||||
gem 'uglifier', '>= 1.3.0'
|
gem 'uglifier'
|
||||||
|
|
||||||
group :development do
|
group :development do
|
||||||
|
gem 'bullet'
|
||||||
gem 'letter_opener'
|
gem 'letter_opener'
|
||||||
gem 'web-console'
|
gem 'web-console'
|
||||||
end
|
end
|
||||||
@@ -86,8 +89,8 @@ group :development, :test do
|
|||||||
gem 'faker'
|
gem 'faker'
|
||||||
gem 'listen'
|
gem 'listen'
|
||||||
gem 'pry-rails'
|
gem 'pry-rails'
|
||||||
gem 'rspec-rails', git: 'https://github.com/rspec/rspec-rails', tag: 'v4.0.0.beta3'
|
gem 'rspec-rails', '~> 4.0.0.beta2'
|
||||||
gem 'rubocop', '~> 0.73.0', require: false
|
gem 'rubocop', require: false
|
||||||
gem 'rubocop-performance', require: false
|
gem 'rubocop-performance', require: false
|
||||||
gem 'rubocop-rails', require: false
|
gem 'rubocop-rails', require: false
|
||||||
gem 'rubocop-rspec', require: false
|
gem 'rubocop-rspec', require: false
|
||||||
|
|||||||
306
Gemfile.lock
306
Gemfile.lock
@@ -1,150 +1,81 @@
|
|||||||
GIT
|
|
||||||
remote: https://github.com/lynndylanhurley/devise_token_auth
|
|
||||||
revision: d886f476c625a1bf9673f03b95fb629e75ac2875
|
|
||||||
specs:
|
|
||||||
devise_token_auth (1.1.3)
|
|
||||||
bcrypt (~> 3.0)
|
|
||||||
devise (> 3.5.2, < 5)
|
|
||||||
rails (>= 4.2.0, < 6.1)
|
|
||||||
sprockets (= 3.7.2)
|
|
||||||
|
|
||||||
GIT
|
|
||||||
remote: https://github.com/mbleigh/acts-as-taggable-on
|
|
||||||
revision: fbf2b609b69a90edcd5813e9ba6395a7e293e977
|
|
||||||
specs:
|
|
||||||
acts-as-taggable-on (6.0.1)
|
|
||||||
activerecord (>= 5.0, < 6.1)
|
|
||||||
|
|
||||||
GIT
|
|
||||||
remote: https://github.com/plataformatec/devise
|
|
||||||
revision: c5de66245460920f9ce98af43c20188c8948f036
|
|
||||||
specs:
|
|
||||||
devise (4.7.1)
|
|
||||||
bcrypt (~> 3.0)
|
|
||||||
orm_adapter (~> 0.1)
|
|
||||||
railties (>= 4.1.0)
|
|
||||||
responders
|
|
||||||
warden (~> 1.2.3)
|
|
||||||
|
|
||||||
GIT
|
|
||||||
remote: https://github.com/rails/rails
|
|
||||||
revision: 3f1473379ce3eafc6f8a9912a7c4fb410745cac6
|
|
||||||
specs:
|
|
||||||
actioncable (6.1.0.alpha)
|
|
||||||
actionpack (= 6.1.0.alpha)
|
|
||||||
activesupport (= 6.1.0.alpha)
|
|
||||||
nio4r (~> 2.0)
|
|
||||||
websocket-driver (>= 0.6.1)
|
|
||||||
actionmailbox (6.1.0.alpha)
|
|
||||||
actionpack (= 6.1.0.alpha)
|
|
||||||
activejob (= 6.1.0.alpha)
|
|
||||||
activerecord (= 6.1.0.alpha)
|
|
||||||
activestorage (= 6.1.0.alpha)
|
|
||||||
activesupport (= 6.1.0.alpha)
|
|
||||||
mail (>= 2.7.1)
|
|
||||||
actionmailer (6.1.0.alpha)
|
|
||||||
actionpack (= 6.1.0.alpha)
|
|
||||||
actionview (= 6.1.0.alpha)
|
|
||||||
activejob (= 6.1.0.alpha)
|
|
||||||
activesupport (= 6.1.0.alpha)
|
|
||||||
mail (~> 2.5, >= 2.5.4)
|
|
||||||
rails-dom-testing (~> 2.0)
|
|
||||||
actionpack (6.1.0.alpha)
|
|
||||||
actionview (= 6.1.0.alpha)
|
|
||||||
activesupport (= 6.1.0.alpha)
|
|
||||||
rack (~> 2.0)
|
|
||||||
rack-test (>= 0.6.3)
|
|
||||||
rails-dom-testing (~> 2.0)
|
|
||||||
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
|
||||||
actiontext (6.1.0.alpha)
|
|
||||||
actionpack (= 6.1.0.alpha)
|
|
||||||
activerecord (= 6.1.0.alpha)
|
|
||||||
activestorage (= 6.1.0.alpha)
|
|
||||||
activesupport (= 6.1.0.alpha)
|
|
||||||
nokogiri (>= 1.8.5)
|
|
||||||
actionview (6.1.0.alpha)
|
|
||||||
activesupport (= 6.1.0.alpha)
|
|
||||||
builder (~> 3.1)
|
|
||||||
erubi (~> 1.4)
|
|
||||||
rails-dom-testing (~> 2.0)
|
|
||||||
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
|
||||||
activejob (6.1.0.alpha)
|
|
||||||
activesupport (= 6.1.0.alpha)
|
|
||||||
globalid (>= 0.3.6)
|
|
||||||
activemodel (6.1.0.alpha)
|
|
||||||
activesupport (= 6.1.0.alpha)
|
|
||||||
activerecord (6.1.0.alpha)
|
|
||||||
activemodel (= 6.1.0.alpha)
|
|
||||||
activesupport (= 6.1.0.alpha)
|
|
||||||
activestorage (6.1.0.alpha)
|
|
||||||
actionpack (= 6.1.0.alpha)
|
|
||||||
activejob (= 6.1.0.alpha)
|
|
||||||
activerecord (= 6.1.0.alpha)
|
|
||||||
activesupport (= 6.1.0.alpha)
|
|
||||||
marcel (~> 0.3.1)
|
|
||||||
activesupport (6.1.0.alpha)
|
|
||||||
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
||||||
i18n (>= 0.7, < 2)
|
|
||||||
minitest (~> 5.1)
|
|
||||||
tzinfo (~> 1.1)
|
|
||||||
zeitwerk (~> 2.2)
|
|
||||||
rails (6.1.0.alpha)
|
|
||||||
actioncable (= 6.1.0.alpha)
|
|
||||||
actionmailbox (= 6.1.0.alpha)
|
|
||||||
actionmailer (= 6.1.0.alpha)
|
|
||||||
actionpack (= 6.1.0.alpha)
|
|
||||||
actiontext (= 6.1.0.alpha)
|
|
||||||
actionview (= 6.1.0.alpha)
|
|
||||||
activejob (= 6.1.0.alpha)
|
|
||||||
activemodel (= 6.1.0.alpha)
|
|
||||||
activerecord (= 6.1.0.alpha)
|
|
||||||
activestorage (= 6.1.0.alpha)
|
|
||||||
activesupport (= 6.1.0.alpha)
|
|
||||||
bundler (>= 1.3.0)
|
|
||||||
railties (= 6.1.0.alpha)
|
|
||||||
sprockets-rails (>= 2.0.0)
|
|
||||||
railties (6.1.0.alpha)
|
|
||||||
actionpack (= 6.1.0.alpha)
|
|
||||||
activesupport (= 6.1.0.alpha)
|
|
||||||
method_source
|
|
||||||
rake (>= 0.8.7)
|
|
||||||
thor (>= 0.20.3, < 2.0)
|
|
||||||
|
|
||||||
GIT
|
|
||||||
remote: https://github.com/rspec/rspec-rails
|
|
||||||
revision: bfa37ce6d6ab80257c48e407042406007c7cb724
|
|
||||||
tag: v4.0.0.beta3
|
|
||||||
specs:
|
|
||||||
rspec-rails (4.0.0.beta3)
|
|
||||||
actionpack (>= 4.2)
|
|
||||||
activesupport (>= 4.2)
|
|
||||||
railties (>= 4.2)
|
|
||||||
rspec-core (~> 3.8)
|
|
||||||
rspec-expectations (~> 3.8)
|
|
||||||
rspec-mocks (~> 3.8)
|
|
||||||
rspec-support (~> 3.8)
|
|
||||||
|
|
||||||
GEM
|
GEM
|
||||||
remote: https://rubygems.org/
|
remote: https://rubygems.org/
|
||||||
specs:
|
specs:
|
||||||
action-cable-testing (0.6.0)
|
action-cable-testing (0.6.0)
|
||||||
actioncable (>= 5.0)
|
actioncable (>= 5.0)
|
||||||
|
actioncable (6.0.1)
|
||||||
|
actionpack (= 6.0.1)
|
||||||
|
nio4r (~> 2.0)
|
||||||
|
websocket-driver (>= 0.6.1)
|
||||||
|
actionmailbox (6.0.1)
|
||||||
|
actionpack (= 6.0.1)
|
||||||
|
activejob (= 6.0.1)
|
||||||
|
activerecord (= 6.0.1)
|
||||||
|
activestorage (= 6.0.1)
|
||||||
|
activesupport (= 6.0.1)
|
||||||
|
mail (>= 2.7.1)
|
||||||
|
actionmailer (6.0.1)
|
||||||
|
actionpack (= 6.0.1)
|
||||||
|
actionview (= 6.0.1)
|
||||||
|
activejob (= 6.0.1)
|
||||||
|
mail (~> 2.5, >= 2.5.4)
|
||||||
|
rails-dom-testing (~> 2.0)
|
||||||
|
actionpack (6.0.1)
|
||||||
|
actionview (= 6.0.1)
|
||||||
|
activesupport (= 6.0.1)
|
||||||
|
rack (~> 2.0)
|
||||||
|
rack-test (>= 0.6.3)
|
||||||
|
rails-dom-testing (~> 2.0)
|
||||||
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
||||||
|
actiontext (6.0.1)
|
||||||
|
actionpack (= 6.0.1)
|
||||||
|
activerecord (= 6.0.1)
|
||||||
|
activestorage (= 6.0.1)
|
||||||
|
activesupport (= 6.0.1)
|
||||||
|
nokogiri (>= 1.8.5)
|
||||||
|
actionview (6.0.1)
|
||||||
|
activesupport (= 6.0.1)
|
||||||
|
builder (~> 3.1)
|
||||||
|
erubi (~> 1.4)
|
||||||
|
rails-dom-testing (~> 2.0)
|
||||||
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
||||||
|
activejob (6.0.1)
|
||||||
|
activesupport (= 6.0.1)
|
||||||
|
globalid (>= 0.3.6)
|
||||||
|
activemodel (6.0.1)
|
||||||
|
activesupport (= 6.0.1)
|
||||||
|
activerecord (6.0.1)
|
||||||
|
activemodel (= 6.0.1)
|
||||||
|
activesupport (= 6.0.1)
|
||||||
|
activestorage (6.0.1)
|
||||||
|
actionpack (= 6.0.1)
|
||||||
|
activejob (= 6.0.1)
|
||||||
|
activerecord (= 6.0.1)
|
||||||
|
marcel (~> 0.3.1)
|
||||||
|
activesupport (6.0.1)
|
||||||
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||||
|
i18n (>= 0.7, < 2)
|
||||||
|
minitest (~> 5.1)
|
||||||
|
tzinfo (~> 1.1)
|
||||||
|
zeitwerk (~> 2.2)
|
||||||
|
acts-as-taggable-on (6.5.0)
|
||||||
|
activerecord (>= 5.0, < 6.1)
|
||||||
addressable (2.7.0)
|
addressable (2.7.0)
|
||||||
public_suffix (>= 2.0.2, < 5.0)
|
public_suffix (>= 2.0.2, < 5.0)
|
||||||
ast (2.4.0)
|
ast (2.4.0)
|
||||||
attr_extras (6.2.1)
|
attr_extras (6.2.1)
|
||||||
aws-eventstream (1.0.3)
|
aws-eventstream (1.0.3)
|
||||||
aws-partitions (1.226.0)
|
aws-partitions (1.244.0)
|
||||||
aws-sdk-core (3.69.1)
|
aws-sdk-core (3.81.0)
|
||||||
aws-eventstream (~> 1.0, >= 1.0.2)
|
aws-eventstream (~> 1.0, >= 1.0.2)
|
||||||
aws-partitions (~> 1.0)
|
aws-partitions (~> 1, >= 1.239.0)
|
||||||
aws-sigv4 (~> 1.1)
|
aws-sigv4 (~> 1.1)
|
||||||
jmespath (~> 1.0)
|
jmespath (~> 1.0)
|
||||||
aws-sdk-kms (1.24.0)
|
aws-sdk-kms (1.25.0)
|
||||||
aws-sdk-core (~> 3, >= 3.61.1)
|
aws-sdk-core (~> 3, >= 3.71.0)
|
||||||
aws-sigv4 (~> 1.1)
|
aws-sigv4 (~> 1.1)
|
||||||
aws-sdk-s3 (1.50.0)
|
aws-sdk-s3 (1.57.0)
|
||||||
aws-sdk-core (~> 3, >= 3.61.1)
|
aws-sdk-core (~> 3, >= 3.77.0)
|
||||||
aws-sdk-kms (~> 1)
|
aws-sdk-kms (~> 1)
|
||||||
aws-sigv4 (~> 1.1)
|
aws-sigv4 (~> 1.1)
|
||||||
aws-sigv4 (1.1.0)
|
aws-sigv4 (1.1.0)
|
||||||
@@ -161,6 +92,9 @@ GEM
|
|||||||
browser (2.7.0)
|
browser (2.7.0)
|
||||||
buftok (0.2.0)
|
buftok (0.2.0)
|
||||||
builder (3.2.3)
|
builder (3.2.3)
|
||||||
|
bullet (6.0.2)
|
||||||
|
activesupport (>= 3.0.0)
|
||||||
|
uniform_notifier (~> 1.11)
|
||||||
bundle-audit (0.1.0)
|
bundle-audit (0.1.0)
|
||||||
bundler-audit
|
bundler-audit
|
||||||
bundler-audit (0.6.1)
|
bundler-audit (0.6.1)
|
||||||
@@ -188,6 +122,16 @@ GEM
|
|||||||
crass (1.0.5)
|
crass (1.0.5)
|
||||||
descendants_tracker (0.0.4)
|
descendants_tracker (0.0.4)
|
||||||
thread_safe (~> 0.3, >= 0.3.1)
|
thread_safe (~> 0.3, >= 0.3.1)
|
||||||
|
devise (4.7.1)
|
||||||
|
bcrypt (~> 3.0)
|
||||||
|
orm_adapter (~> 0.1)
|
||||||
|
railties (>= 4.1.0)
|
||||||
|
responders
|
||||||
|
warden (~> 1.2.3)
|
||||||
|
devise_token_auth (1.1.3)
|
||||||
|
bcrypt (~> 3.0)
|
||||||
|
devise (> 3.5.2, < 5)
|
||||||
|
rails (>= 4.2.0, < 6.1)
|
||||||
diff-lcs (1.3)
|
diff-lcs (1.3)
|
||||||
domain_name (0.5.20190701)
|
domain_name (0.5.20190701)
|
||||||
unf (>= 0.0.5, < 1.0.0)
|
unf (>= 0.0.5, < 1.0.0)
|
||||||
@@ -206,16 +150,16 @@ GEM
|
|||||||
factory_bot_rails (5.1.1)
|
factory_bot_rails (5.1.1)
|
||||||
factory_bot (~> 5.1.0)
|
factory_bot (~> 5.1.0)
|
||||||
railties (>= 4.2.0)
|
railties (>= 4.2.0)
|
||||||
faker (2.6.0)
|
faker (2.7.0)
|
||||||
i18n (>= 1.6, < 1.8)
|
i18n (>= 1.6, < 1.8)
|
||||||
faraday (0.17.0)
|
faraday (0.17.0)
|
||||||
multipart-post (>= 1.2, < 3)
|
multipart-post (>= 1.2, < 3)
|
||||||
ffi (1.11.1)
|
ffi (1.11.2)
|
||||||
foreman (0.86.0)
|
foreman (0.86.0)
|
||||||
globalid (0.4.2)
|
globalid (0.4.2)
|
||||||
activesupport (>= 4.2.0)
|
activesupport (>= 4.2.0)
|
||||||
haikunator (1.1.0)
|
haikunator (1.1.0)
|
||||||
hashie (3.6.0)
|
hashie (4.0.0)
|
||||||
http (3.3.0)
|
http (3.3.0)
|
||||||
addressable (~> 2.3)
|
addressable (~> 2.3)
|
||||||
http-cookie (~> 1.0)
|
http-cookie (~> 1.0)
|
||||||
@@ -236,7 +180,7 @@ GEM
|
|||||||
mini_magick (>= 4.9.5, < 5)
|
mini_magick (>= 4.9.5, < 5)
|
||||||
ruby-vips (>= 2.0.13, < 3)
|
ruby-vips (>= 2.0.13, < 3)
|
||||||
inflecto (0.0.2)
|
inflecto (0.0.2)
|
||||||
jaro_winkler (1.5.3)
|
jaro_winkler (1.5.4)
|
||||||
jbuilder (2.9.1)
|
jbuilder (2.9.1)
|
||||||
activesupport (>= 4.2.0)
|
activesupport (>= 4.2.0)
|
||||||
jmespath (1.4.0)
|
jmespath (1.4.0)
|
||||||
@@ -295,7 +239,7 @@ GEM
|
|||||||
nokogiri (1.10.5)
|
nokogiri (1.10.5)
|
||||||
mini_portile2 (~> 2.4.0)
|
mini_portile2 (~> 2.4.0)
|
||||||
orm_adapter (0.5.0)
|
orm_adapter (0.5.0)
|
||||||
parallel (1.18.0)
|
parallel (1.19.1)
|
||||||
parser (2.6.5.0)
|
parser (2.6.5.0)
|
||||||
ast (~> 2.4.0)
|
ast (~> 2.4.0)
|
||||||
pg (1.1.4)
|
pg (1.1.4)
|
||||||
@@ -305,25 +249,47 @@ GEM
|
|||||||
pry-rails (0.3.9)
|
pry-rails (0.3.9)
|
||||||
pry (>= 0.10.4)
|
pry (>= 0.10.4)
|
||||||
public_suffix (4.0.1)
|
public_suffix (4.0.1)
|
||||||
puma (3.12.1)
|
puma (4.3.0)
|
||||||
|
nio4r (~> 2.0)
|
||||||
pundit (2.1.0)
|
pundit (2.1.0)
|
||||||
activesupport (>= 3.0.0)
|
activesupport (>= 3.0.0)
|
||||||
rack (2.0.7)
|
rack (2.0.7)
|
||||||
rack-cache (1.9.0)
|
rack-cache (1.10.0)
|
||||||
rack (>= 0.4)
|
rack (>= 0.4)
|
||||||
rack-cors (1.0.6)
|
rack-cors (1.1.0)
|
||||||
rack (>= 1.6.0)
|
rack (>= 2.0.0)
|
||||||
rack-protection (2.0.7)
|
rack-protection (2.0.7)
|
||||||
rack
|
rack
|
||||||
rack-proxy (0.6.5)
|
rack-proxy (0.6.5)
|
||||||
rack
|
rack
|
||||||
rack-test (1.1.0)
|
rack-test (1.1.0)
|
||||||
rack (>= 1.0, < 3)
|
rack (>= 1.0, < 3)
|
||||||
|
rails (6.0.1)
|
||||||
|
actioncable (= 6.0.1)
|
||||||
|
actionmailbox (= 6.0.1)
|
||||||
|
actionmailer (= 6.0.1)
|
||||||
|
actionpack (= 6.0.1)
|
||||||
|
actiontext (= 6.0.1)
|
||||||
|
actionview (= 6.0.1)
|
||||||
|
activejob (= 6.0.1)
|
||||||
|
activemodel (= 6.0.1)
|
||||||
|
activerecord (= 6.0.1)
|
||||||
|
activestorage (= 6.0.1)
|
||||||
|
activesupport (= 6.0.1)
|
||||||
|
bundler (>= 1.3.0)
|
||||||
|
railties (= 6.0.1)
|
||||||
|
sprockets-rails (>= 2.0.0)
|
||||||
rails-dom-testing (2.0.3)
|
rails-dom-testing (2.0.3)
|
||||||
activesupport (>= 4.2.0)
|
activesupport (>= 4.2.0)
|
||||||
nokogiri (>= 1.6)
|
nokogiri (>= 1.6)
|
||||||
rails-html-sanitizer (1.3.0)
|
rails-html-sanitizer (1.3.0)
|
||||||
loofah (~> 2.3)
|
loofah (~> 2.3)
|
||||||
|
railties (6.0.1)
|
||||||
|
actionpack (= 6.0.1)
|
||||||
|
activesupport (= 6.0.1)
|
||||||
|
method_source
|
||||||
|
rake (>= 0.8.7)
|
||||||
|
thor (>= 0.20.3, < 2.0)
|
||||||
rainbow (3.0.0)
|
rainbow (3.0.0)
|
||||||
rake (13.0.1)
|
rake (13.0.1)
|
||||||
rb-fsevent (0.10.3)
|
rb-fsevent (0.10.3)
|
||||||
@@ -332,10 +298,10 @@ GEM
|
|||||||
redis (4.1.3)
|
redis (4.1.3)
|
||||||
redis-namespace (1.6.0)
|
redis-namespace (1.6.0)
|
||||||
redis (>= 3.0.4)
|
redis (>= 3.0.4)
|
||||||
redis-rack-cache (2.1.2)
|
redis-rack-cache (2.2.1)
|
||||||
rack-cache (>= 1.6, < 2)
|
rack-cache (>= 1.10, < 2)
|
||||||
redis-store (>= 1.6, < 2)
|
redis-store (>= 1.6, < 2)
|
||||||
redis-store (1.8.0)
|
redis-store (1.8.1)
|
||||||
redis (>= 4, < 5)
|
redis (>= 4, < 5)
|
||||||
responders (3.0.0)
|
responders (3.0.0)
|
||||||
actionpack (>= 5.0)
|
actionpack (>= 5.0)
|
||||||
@@ -353,15 +319,23 @@ GEM
|
|||||||
rspec-mocks (3.9.0)
|
rspec-mocks (3.9.0)
|
||||||
diff-lcs (>= 1.2.0, < 2.0)
|
diff-lcs (>= 1.2.0, < 2.0)
|
||||||
rspec-support (~> 3.9.0)
|
rspec-support (~> 3.9.0)
|
||||||
|
rspec-rails (4.0.0.beta3)
|
||||||
|
actionpack (>= 4.2)
|
||||||
|
activesupport (>= 4.2)
|
||||||
|
railties (>= 4.2)
|
||||||
|
rspec-core (~> 3.8)
|
||||||
|
rspec-expectations (~> 3.8)
|
||||||
|
rspec-mocks (~> 3.8)
|
||||||
|
rspec-support (~> 3.8)
|
||||||
rspec-support (3.9.0)
|
rspec-support (3.9.0)
|
||||||
rubocop (0.73.0)
|
rubocop (0.76.0)
|
||||||
jaro_winkler (~> 1.5.1)
|
jaro_winkler (~> 1.5.1)
|
||||||
parallel (~> 1.10)
|
parallel (~> 1.10)
|
||||||
parser (>= 2.6)
|
parser (>= 2.6)
|
||||||
rainbow (>= 2.2.2, < 4.0)
|
rainbow (>= 2.2.2, < 4.0)
|
||||||
ruby-progressbar (~> 1.7)
|
ruby-progressbar (~> 1.7)
|
||||||
unicode-display_width (>= 1.4.0, < 1.7)
|
unicode-display_width (>= 1.4.0, < 1.7)
|
||||||
rubocop-performance (1.5.0)
|
rubocop-performance (1.5.1)
|
||||||
rubocop (>= 0.71.0)
|
rubocop (>= 0.71.0)
|
||||||
rubocop-rails (2.3.2)
|
rubocop-rails (2.3.2)
|
||||||
rack (>= 1.1)
|
rack (>= 1.1)
|
||||||
@@ -374,11 +348,11 @@ GEM
|
|||||||
seed_dump (3.3.1)
|
seed_dump (3.3.1)
|
||||||
activerecord (>= 4)
|
activerecord (>= 4)
|
||||||
activesupport (>= 4)
|
activesupport (>= 4)
|
||||||
sentry-raven (2.12.0)
|
sentry-raven (2.12.3)
|
||||||
faraday (>= 0.7.6, < 1.0)
|
faraday (>= 0.7.6, < 1.0)
|
||||||
shoulda-matchers (4.1.2)
|
shoulda-matchers (4.1.2)
|
||||||
activesupport (>= 4.2.0)
|
activesupport (>= 4.2.0)
|
||||||
sidekiq (6.0.2)
|
sidekiq (6.0.3)
|
||||||
connection_pool (>= 2.2.2)
|
connection_pool (>= 2.2.2)
|
||||||
rack (>= 2.0.0)
|
rack (>= 2.0.0)
|
||||||
rack-protection (>= 2.0.0)
|
rack-protection (>= 2.0.0)
|
||||||
@@ -388,7 +362,7 @@ GEM
|
|||||||
spring-watcher-listen (2.0.1)
|
spring-watcher-listen (2.0.1)
|
||||||
listen (>= 2.7, < 4.0)
|
listen (>= 2.7, < 4.0)
|
||||||
spring (>= 1.2, < 3.0)
|
spring (>= 1.2, < 3.0)
|
||||||
sprockets (3.7.2)
|
sprockets (4.0.0)
|
||||||
concurrent-ruby (~> 1.0)
|
concurrent-ruby (~> 1.0)
|
||||||
rack (> 1, < 3)
|
rack (> 1, < 3)
|
||||||
sprockets-rails (3.2.1)
|
sprockets-rails (3.2.1)
|
||||||
@@ -417,13 +391,16 @@ GEM
|
|||||||
simple_oauth (~> 0.3.0)
|
simple_oauth (~> 0.3.0)
|
||||||
tzinfo (1.2.5)
|
tzinfo (1.2.5)
|
||||||
thread_safe (~> 0.1)
|
thread_safe (~> 0.1)
|
||||||
|
tzinfo-data (1.2019.3)
|
||||||
|
tzinfo (>= 1.0.0)
|
||||||
uglifier (4.2.0)
|
uglifier (4.2.0)
|
||||||
execjs (>= 0.3.0, < 3)
|
execjs (>= 0.3.0, < 3)
|
||||||
unf (0.1.4)
|
unf (0.1.4)
|
||||||
unf_ext
|
unf_ext
|
||||||
unf_ext (0.0.7.6)
|
unf_ext (0.0.7.6)
|
||||||
unicode-display_width (1.6.0)
|
unicode-display_width (1.6.0)
|
||||||
valid_email2 (3.0.5)
|
uniform_notifier (1.13.0)
|
||||||
|
valid_email2 (3.1.0)
|
||||||
activemodel (>= 3.2)
|
activemodel (>= 3.2)
|
||||||
mail (~> 2.5)
|
mail (~> 2.5)
|
||||||
virtus (1.0.5)
|
virtus (1.0.5)
|
||||||
@@ -438,7 +415,7 @@ GEM
|
|||||||
activemodel (>= 6.0.0)
|
activemodel (>= 6.0.0)
|
||||||
bindex (>= 0.4.0)
|
bindex (>= 0.4.0)
|
||||||
railties (>= 6.0.0)
|
railties (>= 6.0.0)
|
||||||
webpacker (4.0.7)
|
webpacker (4.2.0)
|
||||||
activesupport (>= 4.2)
|
activesupport (>= 4.2)
|
||||||
rack-proxy (>= 0.6.1)
|
rack-proxy (>= 0.6.1)
|
||||||
railties (>= 4.2)
|
railties (>= 4.2)
|
||||||
@@ -453,17 +430,18 @@ PLATFORMS
|
|||||||
|
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
action-cable-testing
|
action-cable-testing
|
||||||
acts-as-taggable-on!
|
acts-as-taggable-on
|
||||||
attr_extras
|
attr_extras
|
||||||
bootsnap
|
bootsnap
|
||||||
brakeman
|
brakeman
|
||||||
browser
|
browser
|
||||||
|
bullet
|
||||||
bundle-audit
|
bundle-audit
|
||||||
byebug
|
byebug
|
||||||
carrierwave-aws
|
carrierwave-aws
|
||||||
chargebee (~> 2)
|
chargebee
|
||||||
devise!
|
devise
|
||||||
devise_token_auth!
|
devise_token_auth
|
||||||
dotenv-rails
|
dotenv-rails
|
||||||
facebook-messenger
|
facebook-messenger
|
||||||
factory_bot_rails
|
factory_bot_rails
|
||||||
@@ -471,7 +449,7 @@ DEPENDENCIES
|
|||||||
foreman
|
foreman
|
||||||
haikunator
|
haikunator
|
||||||
hashie
|
hashie
|
||||||
jbuilder (~> 2.5)
|
jbuilder
|
||||||
jwt
|
jwt
|
||||||
kaminari
|
kaminari
|
||||||
koala
|
koala
|
||||||
@@ -479,19 +457,19 @@ DEPENDENCIES
|
|||||||
listen
|
listen
|
||||||
mini_magick
|
mini_magick
|
||||||
mock_redis
|
mock_redis
|
||||||
nightfury (~> 1.0, >= 1.0.1)
|
nightfury
|
||||||
pg
|
pg
|
||||||
pry-rails
|
pry-rails
|
||||||
puma (~> 3.0)
|
puma
|
||||||
pundit
|
pundit
|
||||||
rack-cors
|
rack-cors
|
||||||
rails (~> 6)!
|
rails
|
||||||
redis
|
redis
|
||||||
redis-namespace
|
redis-namespace
|
||||||
redis-rack-cache
|
redis-rack-cache
|
||||||
responders
|
responders
|
||||||
rspec-rails!
|
rspec-rails (~> 4.0.0.beta2)
|
||||||
rubocop (~> 0.73.0)
|
rubocop
|
||||||
rubocop-performance
|
rubocop-performance
|
||||||
rubocop-rails
|
rubocop-rails
|
||||||
rubocop-rspec
|
rubocop-rspec
|
||||||
@@ -505,7 +483,7 @@ DEPENDENCIES
|
|||||||
time_diff
|
time_diff
|
||||||
twitter
|
twitter
|
||||||
tzinfo-data
|
tzinfo-data
|
||||||
uglifier (>= 1.3.0)
|
uglifier
|
||||||
valid_email2
|
valid_email2
|
||||||
web-console
|
web-console
|
||||||
webpacker
|
webpacker
|
||||||
@@ -515,4 +493,4 @@ RUBY VERSION
|
|||||||
ruby 2.6.5p114
|
ruby 2.6.5p114
|
||||||
|
|
||||||
BUNDLED WITH
|
BUNDLED WITH
|
||||||
1.17.3
|
2.0.2
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ class Message < ApplicationRecord
|
|||||||
|
|
||||||
# .succ is a hack to avoid https://makandracards.com/makandra/1057-why-two-ruby-time-objects-are-not-equal-although-they-appear-to-be
|
# .succ is a hack to avoid https://makandracards.com/makandra/1057-why-two-ruby-time-objects-are-not-equal-although-they-appear-to-be
|
||||||
scope :unread_since, ->(datetime) { where('EXTRACT(EPOCH FROM created_at) > (?)', datetime.to_i.succ) }
|
scope :unread_since, ->(datetime) { where('EXTRACT(EPOCH FROM created_at) > (?)', datetime.to_i.succ) }
|
||||||
scope :chat, -> { where.not(message_type: :activity, private: true) }
|
scope :chat, -> { where.not(message_type: :activity).where.not(private: true) }
|
||||||
default_scope { order(created_at: :asc) }
|
default_scope { order(created_at: :asc) }
|
||||||
|
|
||||||
belongs_to :account
|
belongs_to :account
|
||||||
|
|||||||
@@ -66,4 +66,12 @@ Rails.application.configure do
|
|||||||
|
|
||||||
# Disable host check during development
|
# Disable host check during development
|
||||||
config.hosts = nil
|
config.hosts = nil
|
||||||
|
|
||||||
|
|
||||||
|
# Bullet configuration to fix the N+1 queries
|
||||||
|
config.after_initialize do
|
||||||
|
Bullet.enable = true
|
||||||
|
Bullet.bullet_logger = true
|
||||||
|
Bullet.rails_logger = true
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ require File.expand_path('../config/environment', __dir__)
|
|||||||
# Prevent database truncation if the environment is production
|
# Prevent database truncation if the environment is production
|
||||||
abort('The Rails environment is running in production mode!') if Rails.env.production?
|
abort('The Rails environment is running in production mode!') if Rails.env.production?
|
||||||
require 'rspec/rails'
|
require 'rspec/rails'
|
||||||
require 'action_cable/testing/rspec'
|
|
||||||
|
|
||||||
# Add additional requires below this line. Rails is not loaded until this point!
|
# Add additional requires below this line. Rails is not loaded until this point!
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user