foodcritic 10.2.1 → 10.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -2
- data/lib/foodcritic/rake_task.rb +2 -0
- data/lib/foodcritic/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: dcbbb15acbc25d0fdec9a129d629d5a45c08ef3a
|
4
|
+
data.tar.gz: 7982dfc208b2c1a15466aead18c67964dbd87335
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a4a3b4dbbfd73ba79d6a41d4b518a2b911836ded03b1d686266a0529ec0e952c0846622cba28bb513be8e4fc8952f014744c3752ddacb124f0accc50754dd772
|
7
|
+
data.tar.gz: 5804dbecb771cdff66df4f4be7c67a082b9ac6029c0706aa6b02217d91a281c8e10c85de8a1680ba124f75a4a21639b6a8eb6e581a9d46d093610cc0644cfb2f
|
data/CHANGELOG.md
CHANGED
@@ -1,7 +1,14 @@
|
|
1
1
|
# Foodcritic Changelog:
|
2
2
|
|
3
|
-
## [10.2.
|
4
|
-
[Full Changelog](https://github.com/acrmp/foodcritic/compare/v10.2.
|
3
|
+
## [10.2.2](https://github.com/acrmp/foodcritic/tree/10.2.2) (2017-03-31)
|
4
|
+
[Full Changelog](https://github.com/acrmp/foodcritic/compare/v10.2.1...10.2.2)
|
5
|
+
|
6
|
+
**Implemented enhancements:**
|
7
|
+
|
8
|
+
- Align rake setup better with CLI options to resolve bugs with tags in Rake [\#533](https://github.com/acrmp/foodcritic/pull/533) ([tas50](https://github.com/tas50))
|
9
|
+
|
10
|
+
## [v10.2.1](https://github.com/acrmp/foodcritic/tree/v10.2.1) (2017-03-31)
|
11
|
+
[Full Changelog](https://github.com/acrmp/foodcritic/compare/v10.2.0...v10.2.1)
|
5
12
|
|
6
13
|
**Implemented enhancements:**
|
7
14
|
|
data/lib/foodcritic/rake_task.rb
CHANGED
@@ -32,9 +32,11 @@ module FoodCritic
|
|
32
32
|
{
|
33
33
|
fail_tags: ["correctness"], # differs to default cmd-line behaviour
|
34
34
|
cookbook_paths: files,
|
35
|
+
tags: [],
|
35
36
|
exclude_paths: ["test/**/*", "spec/**/*", "features/**/*"],
|
36
37
|
context: false,
|
37
38
|
chef_version: FoodCritic::Linter::DEFAULT_CHEF_VERSION,
|
39
|
+
progress: true,
|
38
40
|
}
|
39
41
|
end
|
40
42
|
end
|
data/lib/foodcritic/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: foodcritic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 10.2.
|
4
|
+
version: 10.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrew Crump
|
@@ -361,5 +361,5 @@ rubyforge_project:
|
|
361
361
|
rubygems_version: 2.6.11
|
362
362
|
signing_key:
|
363
363
|
specification_version: 4
|
364
|
-
summary: foodcritic-10.2.
|
364
|
+
summary: foodcritic-10.2.2
|
365
365
|
test_files: []
|