Skip to content

Commit 0802c40

Browse files
Update rubocop requirement from ~> 0.92.0 to ~> 1.0.0 (#34)
Updates the requirements on [rubocop](https://github.com/rubocop-hq/rubocop) to permit the latest version. - [Release notes](https://github.com/rubocop-hq/rubocop/releases) - [Changelog](https://github.com/rubocop-hq/rubocop/blob/master/CHANGELOG.md) - [Commits](rubocop/rubocop@v0.92.0...v1.0.0) * Require ruby 2.6+ Signed-off-by: Marc Qualie <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marc Qualie <[email protected]>
1 parent de32b0c commit 0802c40

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.rubocop.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
AllCops:
22
NewCops: enable
3+
TargetRubyVersion: 2.6
34

45
Style/ClassAndModuleChildren:
56
Exclude:

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ gemspec
77

88
gem 'minitest', '~> 5.0'
99
gem 'rake', '~> 13.0'
10-
gem 'rubocop', '~> 0.92.0'
10+
gem 'rubocop', '~> 1.0.0'
1111
gem 'simplecov', '~> 0.19.0', require: false # CodeClimate not compatible with 0.18+ yet - https://github.com/codeclimate/test-reporter/issues/413
1212
gem 'simplecov-lcov', '< 0.8'

diffcrypt.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
1212
spec.description = 'Diffable encrypted configuration files that can be safely committed into a git repository'
1313
spec.homepage = 'https://github.com/marcqualie/diffcrypt'
1414
spec.license = 'MIT'
15-
spec.required_ruby_version = Gem::Requirement.new('>= 2.5.0')
15+
spec.required_ruby_version = Gem::Requirement.new('>= 2.6.0')
1616

1717
# spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
1818

0 commit comments

Comments
 (0)