Skip to content

Commit

Permalink
Merge pull request #67 from gocardless/new-cop-0.84
Browse files Browse the repository at this point in the history
Bump Rubocop to v0.84, add new Lint/DeprecatedOpenSSLConstant cop
  • Loading branch information
matt-thomson committed May 21, 2020
2 parents 467632a + f35dbf7 commit 55dc60e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,10 @@
Changelog
=========

2.14.0
------
* Enable a new cop introduced by rubocop v0.84: `Lint/DeprecatedOpenSSLConstant`

2.13.0
------
* Enable two cops introduced by rubocop v0.83: `Layout/EmptyLinesAroundAttributeAccessor` and
Expand Down
4 changes: 2 additions & 2 deletions gc_ruboconfig.gemspec
Expand Up @@ -2,15 +2,15 @@

Gem::Specification.new do |spec|
spec.name = 'gc_ruboconfig'
spec.version = '2.13.0'
spec.version = '2.14.0'
spec.summary = "GoCardless's shared Rubocop configuration, conforming to our house style"
spec.authors = %w[GoCardless]
spec.homepage = 'https://github.com/gocardless/ruboconfig'
spec.email = %w[developers@gocardless.com]
spec.license = 'MIT'

spec.files = 'rubocop.yml'
spec.add_dependency 'rubocop', '>= 0.83'
spec.add_dependency 'rubocop', '>= 0.84'
spec.add_dependency 'rubocop-rspec', '>= 1.38.1'
spec.add_dependency 'rubocop-performance', '~> 1.5'
end
3 changes: 3 additions & 0 deletions rubocop.yml
Expand Up @@ -170,3 +170,6 @@ Style/ExponentialNotation:

Style/SlicingWithRange:
Enabled: true

Lint/DeprecatedOpenSSLConstant:
Enabled: true

0 comments on commit 55dc60e

Please sign in to comment.