defra_ruby_style 0.1.4 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 07060d4e1ca7fca47059f46551632decfa0b699c
4
- data.tar.gz: 646fc6d07be3956dab5f9f2d5d3e9b420835fe36
3
+ metadata.gz: ff6a7614ec70e2e36fb804a3a718b523f79443f7
4
+ data.tar.gz: 6b9f1eb8f132ac5f8467b45c86f857eb681b60fe
5
5
  SHA512:
6
- metadata.gz: 69cf6e4fbe1ed04e190cb92a28b38affb2531bd61bc1d55b41776bf5457929065d36fc88385f3f10f61f1f7bade593777f95f9bd4ffdad612ce075848cd24c27
7
- data.tar.gz: c100ec9e5bf0a6463aba946071d95ae1d1fa337805910d5d7734023c987e27b3cf81ebfef373eadaca1da136b87b50464becb3dc7d60adaf26cddd22329c40da
6
+ metadata.gz: f9813ff132949b7207b30308fe7a3a3f33ffa5da6dd04b3477954b0242665190b903f7a30f9e9f7eb64ee32f65f965ae8e3f55cf51ec54c366e42f24daa286e7
7
+ data.tar.gz: 5fd4a085e76798e935d11afd794e24984567761b5c70a628bcb36ac51b7639bea16f81e3efc3ce7dac62d03fff88ddb4dd9636a14887be36e53c44cf51b32cf4
data/Rakefile CHANGED
@@ -11,4 +11,6 @@ Bundler::GemHelper.install_tasks
11
11
  require "github_changelog_generator/task"
12
12
 
13
13
  GitHubChangelogGenerator::RakeTask.new :changelog do |config|
14
+ config.user = "DEFRA"
15
+ config.project = "defra-ruby-style"
14
16
  end
data/default.yml CHANGED
@@ -8,6 +8,16 @@ AllCops:
8
8
  # find it useful to go straight to the documentation for a rule when
9
9
  # investigating what the fix may be.
10
10
  DisplayStyleGuide: true
11
+ # Starting in 0.80 new cops are no longer enabled by default. It was noted
12
+ # that when ever rubocop updated and new cops were added, project builds
13
+ # generally always broke. To resolve this the rubocop team have decided that
14
+ # projects now need to specify whether new cops are disabled or enabled and if
15
+ # not, they will omit a warning message.
16
+ # Though it generally does break our builds, we want to always be using the
17
+ # latest conventions and will deal with build issues as they arise. So we
18
+ # set this flag so rubocop will just mark any new cops as enabled and saving
19
+ # us having to dip in each time and enable them one-by-one
20
+ NewCops: enable
11
21
  Include:
12
22
  - "**/*.gemspec"
13
23
  - "**/*.rake"
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Defra
4
4
  module Style
5
- VERSION = "0.1.4"
5
+ VERSION = "0.2.0"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: defra_ruby_style
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Defra
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-01-29 00:00:00.000000000 Z
11
+ date: 2020-04-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop