Skip to content

Commit

Permalink
Technical/Update gem dependencies (#138)
Browse files Browse the repository at this point in the history
* Updated gem development dependencies
* Updated rubocop/codeclimate config
* Updated gem version, changelog
  • Loading branch information
bestwebua authored Mar 8, 2021
1 parent e55ca16 commit 872b472
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .codeclimate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ checks:
plugins:
rubocop:
enabled: true
channel: rubocop-1-10
channel: rubocop-1-11

reek:
enabled: true
6 changes: 6 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,12 @@ Performance/ConstantRegexp:
Performance/MethodObjectAsBlock:
Enabled: true

Performance/RedundantEqualityComparisonBlock:
Enabled: true

Performance/RedundantSplitRegexpArgument:
Enabled: true

RSpec/ExampleLength:
Enabled: false

Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.3.2] - 2020.03.08

### Changed

- Updated gem development dependencies
- Updated rubocop/codeclimate config

## [2.3.1] - 2020.02.26

### Changed
Expand Down
16 changes: 8 additions & 8 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
truemail (2.3.1)
truemail (2.3.2)
simpleidn (~> 0.2.1)

GEM
Expand Down Expand Up @@ -35,7 +35,7 @@ GEM
json (2.5.1)
json_matchers (0.11.1)
json_schema
json_schema (0.20.9)
json_schema (0.21.0)
kwalify (0.7.2)
method_source (1.0.0)
overcommit (0.57.0)
Expand Down Expand Up @@ -74,7 +74,7 @@ GEM
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.10.0)
rspec-support (3.10.2)
rubocop (1.10.0)
rubocop (1.11.0)
parallel (~> 1.10)
parser (>= 3.0.0.0)
rainbow (>= 2.2.2, < 4.0)
Expand All @@ -85,7 +85,7 @@ GEM
unicode-display_width (>= 1.4.0, < 3.0)
rubocop-ast (1.4.1)
parser (>= 2.7.1.5)
rubocop-performance (1.9.2)
rubocop-performance (1.10.1)
rubocop (>= 0.90.0, < 2.0)
rubocop-ast (>= 0.4.0)
rubocop-rspec (2.2.0)
Expand All @@ -111,7 +111,7 @@ GEM
unf_ext
unf_ext (0.0.7.7)
unicode-display_width (2.0.0)
webmock (3.12.0)
webmock (3.12.1)
addressable (>= 2.3.6)
crack (>= 0.3.2)
hashdiff (>= 0.4.0, < 2.0.0)
Expand All @@ -131,13 +131,13 @@ DEPENDENCIES
rake (~> 13.0, >= 13.0.3)
reek (~> 6.0, >= 6.0.3)
rspec (~> 3.10)
rubocop (~> 1.10)
rubocop-performance (~> 1.9, >= 1.9.2)
rubocop (~> 1.11)
rubocop-performance (~> 1.10, >= 1.10.1)
rubocop-rspec (~> 2.2)
simplecov (~> 0.17.1)
truemail!
truemail-rspec (~> 0.4)
webmock (~> 3.12)
webmock (~> 3.12, >= 3.12.1)

BUNDLED WITH
1.16.6
2 changes: 1 addition & 1 deletion lib/truemail/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Truemail
VERSION = '2.3.1'
VERSION = '2.3.2'
end
6 changes: 3 additions & 3 deletions truemail.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ Gem::Specification.new do |spec|
spec.add_development_dependency 'rake', '~> 13.0', '>= 13.0.3'
spec.add_development_dependency 'reek', '~> 6.0', '>= 6.0.3'
spec.add_development_dependency 'rspec', '~> 3.10'
spec.add_development_dependency 'rubocop', '~> 1.10'
spec.add_development_dependency 'rubocop-performance', '~> 1.9', '>= 1.9.2'
spec.add_development_dependency 'rubocop', '~> 1.11'
spec.add_development_dependency 'rubocop-performance', '~> 1.10', '>= 1.10.1'
spec.add_development_dependency 'rubocop-rspec', '~> 2.2'
spec.add_development_dependency 'simplecov', '~> 0.17.1'
spec.add_development_dependency 'truemail-rspec', '~> 0.4'
spec.add_development_dependency 'webmock', '~> 3.12'
spec.add_development_dependency 'webmock', '~> 3.12', '>= 3.12.1'
end

0 comments on commit 872b472

Please sign in to comment.