Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions getaround_utils/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand All @@ -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)
Expand All @@ -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)
Expand All @@ -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)

Expand Down
4 changes: 2 additions & 2 deletions getaround_utils/getaround_utils.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions getaround_utils/lib/getaround_utils/mixins/loggable.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

require 'logger'
module GetaroundUtils; end

module GetaroundUtils::Mixins; end

module GetaroundUtils::Mixins::Loggable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
require 'json'

module GetaroundUtils; end

module GetaroundUtils::Ougai; end

class GetaroundUtils::Ougai::JsonFormatter < Ougai::Formatters::Base
Expand Down
1 change: 1 addition & 0 deletions getaround_utils/lib/getaround_utils/railties/lograge.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
require 'lograge'

module GetaroundUtils; end

module GetaroundUtils::Railties; end

class GetaroundUtils::Railties::Lograge < Rails::Railtie
Expand Down
1 change: 1 addition & 0 deletions getaround_utils/lib/getaround_utils/railties/ougai.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
require 'ougai'

module GetaroundUtils; end

module GetaroundUtils::Railties; end

# Rails-compatible Ougai Logger
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# frozen_string_literal: true

module GetaroundUtils; end

module GetaroundUtils::Utils; end

module GetaroundUtils::Utils::DeepKeyValue
Expand Down