lcgstyle 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.rubocop.yml +0 -0
- data/Rakefile +1 -1
- data/config/chefstyle.yml +3 -0
- data/lib/lcgstyle/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9f6dd155d5ff3cb439b02173ca467654cd5e660e
|
4
|
+
data.tar.gz: 71374c4b676c446e04bd597d53a45f2f97de3b47
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 84fd27d76c66ce70e0fac6cad8f99162da21284e7633c4713d56c340e1f2911d39a27387ce9c1c2424222e1e2f1e2dae47c71f41f6ddc107c574b393da856298
|
7
|
+
data.tar.gz: 25a9e43dd497bbc6f317da55fe99e57c1b8e74cbb35afcb85c99193c3f1711e4cbf3eb6f21995ba415613f3d4e6b50ebc6b31034e0a46b9acd11164a21462cc1
|
data/.rubocop.yml
ADDED
File without changes
|
data/Rakefile
CHANGED
@@ -14,7 +14,7 @@ task :vendor do
|
|
14
14
|
|
15
15
|
require "rubocop"
|
16
16
|
require "yaml"
|
17
|
-
cfg = RuboCop::Cop::Cop.all.
|
17
|
+
cfg = RuboCop::Cop::Cop.all.each_with_object({}) { |cop, acc| acc[cop.cop_name] = { "Enabled" => false }; acc }
|
18
18
|
File.open(dst.join("disable_all.yml"), "w") { |fh| fh.write cfg.to_yaml }
|
19
19
|
|
20
20
|
sh %{git add #{dst}/{upstream,enabled,disabled,disable_all}.yml}
|
data/config/chefstyle.yml
CHANGED
@@ -322,6 +322,9 @@ Style/RedundantFreeze:
|
|
322
322
|
Enabled: true
|
323
323
|
Style/RescueEnsureAlignment:
|
324
324
|
Enabled: true
|
325
|
+
Style/Semicolon:
|
326
|
+
AllowAsExpressionSeparator: true
|
327
|
+
Enabled: true
|
325
328
|
# we only 'raise' and do not 'fail'
|
326
329
|
Style/SignalException:
|
327
330
|
EnforcedStyle: only_raise
|
data/lib/lcgstyle/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lcgstyle
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Thom May
|
@@ -76,6 +76,7 @@ extra_rdoc_files: []
|
|
76
76
|
files:
|
77
77
|
- ".gitignore"
|
78
78
|
- ".rspec"
|
79
|
+
- ".rubocop.yml"
|
79
80
|
- ".travis.yml"
|
80
81
|
- Gemfile
|
81
82
|
- LICENSE.txt
|