guard-foodcritic 2.1.0 → 3.0.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: 7adec25f273f29d9106044263702f0c357d67e47
4
- data.tar.gz: 0df741b9b1480d0127722d2af918f89eef8a9f04
3
+ metadata.gz: 8f468f6c2d8b31faab5543aef092a06405f9e336
4
+ data.tar.gz: 7c3a36fb9f7420012e46d3c9fed991529a20b327
5
5
  SHA512:
6
- metadata.gz: 5331253af58a5b67c1ac310b8dd41f40b233b4ad570379934cd4b50de879bd3ba8a4372ee38c5e2a45373f5ff4a4347aa09caaa6bf928f1f1a6d6653074a970e
7
- data.tar.gz: 50de812e5476293606647b1a1b95b8e07cfebb6bff669d56e074580bcdb877cb7bc6d62a6e89e99ca1af14f9d40090f7b821eb0ea69fbdfe49d297ac285ca78a
6
+ metadata.gz: ec9990b3256a274fd183f053d6178e1ac385d891b774baac8123611ef62f8ca53f2e08080c168a34fefb0b3480de93b06ba62c6af7a16de0fcad0ae880d8f98e
7
+ data.tar.gz: 7c2832b5cc990678e1d67ef55640807381e4c8baace543d09a97d1a3bb267bacb7ab9560092432b7729776f8f0642fbf6e2cd6d10b329054035b242bea5a34ed
@@ -1 +1,8 @@
1
- inherit_from: .rubocop.todo.yml
1
+ Metrics/BlockLength:
2
+ Enabled: false
3
+ Metrics/LineLength:
4
+ Max: 100
5
+ Metrics/ModuleLength:
6
+ Enabled: false
7
+ Style/Documentation:
8
+ Enabled: false
@@ -1,4 +1,6 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.1.6
3
+ - 2.3.3
4
+ - 2.4.0
4
5
  sudo: false
6
+ cache: bundler
@@ -1,28 +1,37 @@
1
1
  # Project History for guard-foodcritic
2
2
 
3
+ ## 3.0.0 (2017-03-16)
4
+
5
+ - Remove the upper bound on the Foodcritic release so this will continue to work as new Foodcritic releases are cut
6
+ - Add testing for Ruby 2.3 / 2.4 to Travis and remove 2.1.6
7
+ - Remove the .ruby-version file in the repo that restricted dev work to an older ruby release
8
+ - Update the dev dependencies
9
+ - Move all rubocop config into a single .rubocop.yml file
10
+
3
11
  ## 2.1.0
4
- * depend on foodcritic ~> 6.0
5
- * Move to RSpec 3.0
6
- * Rubocop cleanup
12
+
13
+ - depend on foodcritic ~> 6.0
14
+ - Move to RSpec 3.0
15
+ - Rubocop cleanup
7
16
 
8
17
  ## 2.0.0
9
18
 
10
- * depend on foodcritic ~> 5.0
11
- * remove support for ruby 1.9.3 (because foodcritic only works with Ruby 2.0.0+)
19
+ - depend on foodcritic ~> 5.0
20
+ - remove support for ruby 1.9.3 (because foodcritic only works with Ruby 2.0.0+)
12
21
 
13
22
  ## 1.1.1
14
23
 
15
- * fix 0 for 1 error, patch from github/myappleguy
24
+ - fix 0 for 1 error, patch from github/myappleguy
16
25
 
17
26
  ## 1.1.0
18
27
 
19
- * merge PR from Nordstrom to make compatible with Guard 2.9 and higher (PR )
20
- * update dependencies to latest Guard and Foodcritic versions
21
- * adapt Richard Nixon's (@trickyearlobe) PR to bring in guard-compat to fix test suite
22
- * first pass at cleaning up Rubocop style issues
23
- * extend Travis-CI matrix to ruby 1.9.3, 2.0.0, 2.1.6 and 2.2.2
24
- * maintainership transferred to Nordstrom, Inc.
28
+ - merge PR from Nordstrom to make compatible with Guard 2.9 and higher (PR )
29
+ - update dependencies to latest Guard and Foodcritic versions
30
+ - adapt Richard Nixon's (@trickyearlobe) PR to bring in guard-compat to fix test suite
31
+ - first pass at cleaning up Rubocop style issues
32
+ - extend Travis-CI matrix to ruby 1.9.3, 2.0.0, 2.1.6 and 2.2.2
33
+ - maintainership transferred to Nordstrom, Inc.
25
34
 
26
35
  ## 1.0.3
27
36
 
28
- * a changelog was not maintained for 1.0.3 or older; we may rebuild this from git changelogs
37
+ - a changelog was not maintained for 1.0.3 or older; we may rebuild this from git changelogs
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # Guard::Foodcritic
2
2
 
3
- [![Gem Version](https://badge.fury.io/rb/guard-foodcritic.png)](http://badge.fury.io/rb/guard-foodcritic)
3
+ [![Gem Version](https://badge.fury.io/rb/guard-foodcritic.svg)](http://badge.fury.io/rb/guard-foodcritic)
4
4
 
5
- [![Build Status](https://travis-ci.org/Nordstrom/guard-foodcritic.png?branch=master)](https://travis-ci.org/Nordstrom/guard-foodcritic)
5
+ [![Build Status](https://travis-ci.org/Nordstrom/guard-foodcritic.svg?branch=master)](https://travis-ci.org/Nordstrom/guard-foodcritic)
6
6
 
7
7
  [![Inline docs](http://inch-ci.org/github/nordstrom/guard-foodcritic.svg?branch=master)](http://inch-ci.org/github/nordstrom/guard-foodcritic)
8
8
 
@@ -17,9 +17,9 @@ Gem::Specification.new do |gem|
17
17
 
18
18
  gem.add_runtime_dependency 'guard', '~> 2.12'
19
19
  gem.add_dependency 'guard-compat', '~> 1.2'
20
- gem.add_runtime_dependency 'foodcritic', '~> 6.0'
20
+ gem.add_runtime_dependency 'foodcritic', '>= 8'
21
21
 
22
- gem.add_development_dependency 'rake', '~> 11.0'
22
+ gem.add_development_dependency 'rake', '~> 12.0'
23
23
  gem.add_development_dependency 'rspec', '~> 3.4'
24
- gem.add_development_dependency 'rubocop', '~> 0.39'
24
+ gem.add_development_dependency 'rubocop', '~> 0.47.1'
25
25
  end
@@ -1,3 +1,3 @@
1
1
  module Guard
2
- FOODCRITIC_VERSION = '2.1.0'.freeze
2
+ FOODCRITIC_VERSION = '3.0.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: guard-foodcritic
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Griego
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-04-04 00:00:00.000000000 Z
12
+ date: 2017-03-16 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: guard
@@ -43,30 +43,30 @@ dependencies:
43
43
  name: foodcritic
44
44
  requirement: !ruby/object:Gem::Requirement
45
45
  requirements:
46
- - - "~>"
46
+ - - ">="
47
47
  - !ruby/object:Gem::Version
48
- version: '6.0'
48
+ version: '8'
49
49
  type: :runtime
50
50
  prerelease: false
51
51
  version_requirements: !ruby/object:Gem::Requirement
52
52
  requirements:
53
- - - "~>"
53
+ - - ">="
54
54
  - !ruby/object:Gem::Version
55
- version: '6.0'
55
+ version: '8'
56
56
  - !ruby/object:Gem::Dependency
57
57
  name: rake
58
58
  requirement: !ruby/object:Gem::Requirement
59
59
  requirements:
60
60
  - - "~>"
61
61
  - !ruby/object:Gem::Version
62
- version: '11.0'
62
+ version: '12.0'
63
63
  type: :development
64
64
  prerelease: false
65
65
  version_requirements: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - "~>"
68
68
  - !ruby/object:Gem::Version
69
- version: '11.0'
69
+ version: '12.0'
70
70
  - !ruby/object:Gem::Dependency
71
71
  name: rspec
72
72
  requirement: !ruby/object:Gem::Requirement
@@ -87,14 +87,14 @@ dependencies:
87
87
  requirements:
88
88
  - - "~>"
89
89
  - !ruby/object:Gem::Version
90
- version: '0.39'
90
+ version: 0.47.1
91
91
  type: :development
92
92
  prerelease: false
93
93
  version_requirements: !ruby/object:Gem::Requirement
94
94
  requirements:
95
95
  - - "~>"
96
96
  - !ruby/object:Gem::Version
97
- version: '0.39'
97
+ version: 0.47.1
98
98
  description: Guard::Foodcritic automatically runs foodcritic.
99
99
  email:
100
100
  - cgriego@gmail.com
@@ -105,9 +105,7 @@ extra_rdoc_files: []
105
105
  files:
106
106
  - ".gitignore"
107
107
  - ".rspec"
108
- - ".rubocop.todo.yml"
109
108
  - ".rubocop.yml"
110
- - ".ruby-version"
111
109
  - ".travis.yml"
112
110
  - CHANGELOG.md
113
111
  - Gemfile
@@ -142,7 +140,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
142
140
  version: '0'
143
141
  requirements: []
144
142
  rubyforge_project:
145
- rubygems_version: 2.5.2
143
+ rubygems_version: 2.6.10
146
144
  signing_key:
147
145
  specification_version: 4
148
146
  summary: Guard::Foodcritic automatically runs foodcritic.
@@ -150,4 +148,3 @@ test_files:
150
148
  - spec/guard/foodcritic/runner_spec.rb
151
149
  - spec/guard/foodcritic_spec.rb
152
150
  - spec/spec_helper.rb
153
- has_rdoc:
@@ -1,8 +0,0 @@
1
- Metrics/LineLength:
2
- Max: 100
3
-
4
- Style/Documentation:
5
- Enabled: false
6
-
7
- Metrics/ModuleLength:
8
- Max: 139