rubocop-rspec 1.5.0 → 1.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -1
- data/config/default.yml +1 -0
- data/lib/rubocop/rspec/version.rb +1 -1
- data/rubocop-rspec.gemspec +2 -2
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6e7b5f7025e117a87e31f15d9e2a8f052e590270
|
4
|
+
data.tar.gz: 89bfe35b6ba5d2af8eb751403e87d765a73931ce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 83f01b1e8b7a94599499b286ba65034c791b5939bfbfb84400db6950ed6c4092c27e0b1ac4544c6d21bcf068724495ea73408812cdf7216ef6199cf510c51cac
|
7
|
+
data.tar.gz: da36f3a208108b5342d3718fc64a6a35dfcaf2fd9a0b18039f244f6a0ea1ad97e0b2a39ce4d78f8cff69fb2d189fbd5dce8403559c92157d4d8d10e6e436e488
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,9 @@
|
|
1
1
|
# Change log
|
2
2
|
|
3
|
-
##
|
3
|
+
## 1.5.1 (2016-07-20)
|
4
|
+
|
5
|
+
* Fix `unrecognized parameter RSpec/VerifiedDoubles:IgnoreSymbolicNames` warning. ([@jeffreyc][])
|
6
|
+
* Update to rubocop 0.41.2. ([@backus][])
|
4
7
|
|
5
8
|
## 1.5.0 (2016-05-17)
|
6
9
|
|
@@ -87,6 +90,7 @@
|
|
87
90
|
<!-- Contributors -->
|
88
91
|
|
89
92
|
[@andyw8]: https://github.com/andyw8
|
93
|
+
[@backus]: https://github.com/backus
|
90
94
|
[@bquorning]: https://github.com/bquorning
|
91
95
|
[@deivid-rodriguez]: https://github.com/deivid-rodriguez
|
92
96
|
[@geniou]: https://github.com/geniou
|
@@ -99,3 +103,4 @@
|
|
99
103
|
[@renanborgescampos]: https://github.com/renanborgescampos
|
100
104
|
[@jaredmoody]: https://github.com/jaredmoody
|
101
105
|
[@baberthal]: https://github.com/baberthal
|
106
|
+
[@jeffreyc]: https://github.com/jeffreyc
|
data/config/default.yml
CHANGED
@@ -42,6 +42,7 @@ RSpec/FilePath:
|
|
42
42
|
RSpec/VerifiedDoubles:
|
43
43
|
Description: 'Prefer using verifying doubles over normal doubles.'
|
44
44
|
Enabled: true
|
45
|
+
IgnoreSymbolicNames: false
|
45
46
|
|
46
47
|
RSpec/NotToNot:
|
47
48
|
Description: 'Enforces the usage of the same method on all negative message expectations.'
|
data/rubocop-rspec.gemspec
CHANGED
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
|
|
17
17
|
|
18
18
|
spec.version = RuboCop::RSpec::Version::STRING
|
19
19
|
spec.platform = Gem::Platform::RUBY
|
20
|
-
spec.required_ruby_version = '>=
|
20
|
+
spec.required_ruby_version = '>= 2.0.0'
|
21
21
|
|
22
22
|
spec.require_paths = ['lib']
|
23
23
|
spec.files = Dir[
|
@@ -30,7 +30,7 @@ Gem::Specification.new do |spec|
|
|
30
30
|
spec.test_files = spec.files.grep(%r{^spec/})
|
31
31
|
spec.extra_rdoc_files = ['MIT-LICENSE.md', 'README.md']
|
32
32
|
|
33
|
-
spec.add_runtime_dependency 'rubocop', '>= 0.
|
33
|
+
spec.add_runtime_dependency 'rubocop', '>= 0.41.2'
|
34
34
|
|
35
35
|
spec.add_development_dependency 'rake'
|
36
36
|
spec.add_development_dependency 'rspec', '>= 3.4'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop-rspec
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.5.
|
4
|
+
version: 1.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ian MacLeod
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2016-
|
12
|
+
date: 2016-07-20 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rubocop
|
@@ -17,14 +17,14 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - ">="
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: 0.
|
20
|
+
version: 0.41.2
|
21
21
|
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
25
|
- - ">="
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version: 0.
|
27
|
+
version: 0.41.2
|
28
28
|
- !ruby/object:Gem::Dependency
|
29
29
|
name: rake
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
@@ -128,7 +128,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
128
128
|
requirements:
|
129
129
|
- - ">="
|
130
130
|
- !ruby/object:Gem::Version
|
131
|
-
version:
|
131
|
+
version: 2.0.0
|
132
132
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
133
133
|
requirements:
|
134
134
|
- - ">="
|
@@ -136,7 +136,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
136
136
|
version: '0'
|
137
137
|
requirements: []
|
138
138
|
rubyforge_project:
|
139
|
-
rubygems_version: 2.
|
139
|
+
rubygems_version: 2.6.3
|
140
140
|
signing_key:
|
141
141
|
specification_version: 4
|
142
142
|
summary: Code style checking for RSpec files
|