diff --git a/getaround_utils/Gemfile.lock b/getaround_utils/Gemfile.lock index 72e1755..0c32cc4 100644 --- a/getaround_utils/Gemfile.lock +++ b/getaround_utils/Gemfile.lock @@ -77,10 +77,10 @@ GEM crass (1.0.6) diff-lcs (1.4.4) erubi (1.10.0) - getaround-rubocop (0.2.3) + getaround-rubocop (0.2.5) relaxed-rubocop (= 2.5) - rubocop (= 1.3.1) - rubocop-rspec (= 2.0.0) + rubocop (= 1.11.0) + rubocop-rspec (= 2.2.0) globalid (0.4.2) activesupport (>= 4.2.0) hashdiff (1.0.1) @@ -109,7 +109,7 @@ GEM ougai (2.0.0) oj (~> 3.10) parallel (1.20.1) - parser (3.0.0.0) + parser (3.0.2.0) ast (~> 2.4.1) pry (0.14.1) coderay (~> 1.1) @@ -176,18 +176,18 @@ GEM rspec-mocks (~> 3.10) rspec-support (~> 3.10) rspec-support (3.10.2) - rubocop (1.3.1) + rubocop (1.11.0) parallel (~> 1.10) - parser (>= 2.7.1.5) + parser (>= 3.0.0.0) rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8) + regexp_parser (>= 1.8, < 3.0) rexml - rubocop-ast (>= 1.1.1) + rubocop-ast (>= 1.2.0, < 2.0) ruby-progressbar (~> 1.7) - unicode-display_width (>= 1.4.0, < 2.0) - rubocop-ast (1.4.1) - parser (>= 2.7.1.5) - rubocop-rspec (2.0.0) + unicode-display_width (>= 1.4.0, < 3.0) + rubocop-ast (1.8.0) + parser (>= 3.0.1.1) + rubocop-rspec (2.2.0) rubocop (~> 1.0) rubocop-ast (>= 1.1.0) ruby-progressbar (1.11.0) @@ -205,7 +205,7 @@ GEM thor (1.1.0) tzinfo (2.0.4) concurrent-ruby (~> 1.0) - unicode-display_width (1.7.0) + unicode-display_width (2.0.0) webmock (3.13.0) addressable (>= 2.3.6) crack (>= 0.3.2) @@ -220,7 +220,7 @@ PLATFORMS DEPENDENCIES bundler (~> 2.0) - getaround-rubocop (= 0.2.3) + getaround-rubocop (= 0.2.5) getaround_utils! lograge (~> 0.11.2) ougai (~> 2.0) @@ -230,7 +230,7 @@ DEPENDENCIES request_store_rails (~> 2.0) rspec (~> 3.9, >= 3.9.0) rspec-rails (~> 5.0) - rubocop (= 1.3.1) + rubocop (= 1.11.0) sidekiq (~> 6.0) webmock (~> 3.7) diff --git a/getaround_utils/getaround_utils.gemspec b/getaround_utils/getaround_utils.gemspec index 5ddc9f8..00094b2 100644 --- a/getaround_utils/getaround_utils.gemspec +++ b/getaround_utils/getaround_utils.gemspec @@ -19,12 +19,12 @@ Gem::Specification.new do |gem| # Development dependencies gem.add_development_dependency 'bundler', '~> 2.0' - gem.add_development_dependency 'getaround-rubocop', '= 0.2.3' + gem.add_development_dependency 'getaround-rubocop', '= 0.2.5' gem.add_development_dependency 'pry', '~> 0.14.0' gem.add_development_dependency 'rake', '~> 13.0' gem.add_development_dependency 'rspec', '~> 3.9', '>= 3.9.0' gem.add_development_dependency 'rspec-rails', '~> 5.0' - gem.add_development_dependency 'rubocop', '= 1.3.1' + gem.add_development_dependency 'rubocop', '= 1.11.0' gem.add_development_dependency 'webmock', '~> 3.7' # Functional (optional) dependencies diff --git a/getaround_utils/lib/getaround_utils/mixins/loggable.rb b/getaround_utils/lib/getaround_utils/mixins/loggable.rb index b51a994..de8f22f 100644 --- a/getaround_utils/lib/getaround_utils/mixins/loggable.rb +++ b/getaround_utils/lib/getaround_utils/mixins/loggable.rb @@ -2,6 +2,7 @@ require 'logger' module GetaroundUtils; end + module GetaroundUtils::Mixins; end module GetaroundUtils::Mixins::Loggable diff --git a/getaround_utils/lib/getaround_utils/ougai/deep_key_value_formatter.rb b/getaround_utils/lib/getaround_utils/ougai/deep_key_value_formatter.rb index 93346e1..7770ac7 100644 --- a/getaround_utils/lib/getaround_utils/ougai/deep_key_value_formatter.rb +++ b/getaround_utils/lib/getaround_utils/ougai/deep_key_value_formatter.rb @@ -4,6 +4,7 @@ require 'getaround_utils/utils/deep_key_value' module GetaroundUtils; end + module GetaroundUtils::Ougai; end class GetaroundUtils::Ougai::DeepKeyValueFormatter < Ougai::Formatters::Base diff --git a/getaround_utils/lib/getaround_utils/ougai/json_formatter.rb b/getaround_utils/lib/getaround_utils/ougai/json_formatter.rb index c554d13..4bb38e7 100644 --- a/getaround_utils/lib/getaround_utils/ougai/json_formatter.rb +++ b/getaround_utils/lib/getaround_utils/ougai/json_formatter.rb @@ -4,6 +4,7 @@ require 'json' module GetaroundUtils; end + module GetaroundUtils::Ougai; end class GetaroundUtils::Ougai::JsonFormatter < Ougai::Formatters::Base diff --git a/getaround_utils/lib/getaround_utils/railties/lograge.rb b/getaround_utils/lib/getaround_utils/railties/lograge.rb index 6de12c4..578837c 100644 --- a/getaround_utils/lib/getaround_utils/railties/lograge.rb +++ b/getaround_utils/lib/getaround_utils/railties/lograge.rb @@ -4,6 +4,7 @@ require 'lograge' module GetaroundUtils; end + module GetaroundUtils::Railties; end class GetaroundUtils::Railties::Lograge < Rails::Railtie diff --git a/getaround_utils/lib/getaround_utils/railties/ougai.rb b/getaround_utils/lib/getaround_utils/railties/ougai.rb index 64e2d7e..a1d32a0 100644 --- a/getaround_utils/lib/getaround_utils/railties/ougai.rb +++ b/getaround_utils/lib/getaround_utils/railties/ougai.rb @@ -6,6 +6,7 @@ require 'ougai' module GetaroundUtils; end + module GetaroundUtils::Railties; end # Rails-compatible Ougai Logger diff --git a/getaround_utils/lib/getaround_utils/utils/deep_key_value.rb b/getaround_utils/lib/getaround_utils/utils/deep_key_value.rb index 9d64f66..e76c960 100644 --- a/getaround_utils/lib/getaround_utils/utils/deep_key_value.rb +++ b/getaround_utils/lib/getaround_utils/utils/deep_key_value.rb @@ -1,6 +1,7 @@ # frozen_string_literal: true module GetaroundUtils; end + module GetaroundUtils::Utils; end module GetaroundUtils::Utils::DeepKeyValue