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 +4 -4
- data/Rakefile +2 -0
- data/default.yml +10 -0
- data/lib/defra/style/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ff6a7614ec70e2e36fb804a3a718b523f79443f7
|
4
|
+
data.tar.gz: 6b9f1eb8f132ac5f8467b45c86f857eb681b60fe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f9813ff132949b7207b30308fe7a3a3f33ffa5da6dd04b3477954b0242665190b903f7a30f9e9f7eb64ee32f65f965ae8e3f55cf51ec54c366e42f24daa286e7
|
7
|
+
data.tar.gz: 5fd4a085e76798e935d11afd794e24984567761b5c70a628bcb36ac51b7639bea16f81e3efc3ce7dac62d03fff88ddb4dd9636a14887be36e53c44cf51b32cf4
|
data/Rakefile
CHANGED
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"
|
data/lib/defra/style/version.rb
CHANGED
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.
|
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-
|
11
|
+
date: 2020-04-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|