rubocop-rickselby 0.3.0 → 0.5.0
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/README.md +8 -5
- data/config/capybara.yml +2 -0
- data/config/rspec.yml +0 -1
- data/lib/rubocop/rickselby/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 189fcbc5ca7ad79fdb8577740343febeacfcd747ab748f75da785ba2fbb6eba9
|
4
|
+
data.tar.gz: bfa8de3e9d21538efaed490908c1d55defc41f22b00a2456fb5fafff5216379c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8eb8b13a0ac522df817a336fd2e6ee0402168e178038cc53f3df4092e0fc90e8056adf00aea33faf109692bfd9fcd33d79e8466b6e9023b5524217c72757e7dd
|
7
|
+
data.tar.gz: b53a283a2a0ac3991ac51d0f0aed036561c925f7c6155eba2bb5e64953d33612bd8c0e8a510389c1ea2642cfe73152c63fa7b971b6ccd2f0efb52d747381f6f7
|
data/README.md
CHANGED
@@ -16,8 +16,10 @@ group :development, :test do
|
|
16
16
|
gem "rubocop-rails-accessibility", require: false
|
17
17
|
|
18
18
|
# If you are using rspec:
|
19
|
-
gem "rubocop-capybara", require: false
|
20
19
|
gem "rubocop-rspec", require: false
|
20
|
+
|
21
|
+
# If you are using capybara:
|
22
|
+
gem "rubocop-capybara", require: false
|
21
23
|
end
|
22
24
|
```
|
23
25
|
|
@@ -26,8 +28,9 @@ Inherit the configuration in your `.rubocop.yml`:
|
|
26
28
|
```yaml
|
27
29
|
# .rubocop.yml
|
28
30
|
inherit_gem:
|
29
|
-
rubocop-rickselby:
|
30
|
-
- config/default.yml # generic Ruby rules and cops
|
31
|
-
- config/rails.yml # Rails-specific rules and cops
|
32
|
-
- config/rspec.yml # RSpec-specific rules and cops
|
31
|
+
rubocop-rickselby:
|
32
|
+
- config/default.yml # generic Ruby rules and cops
|
33
|
+
- config/rails.yml # Rails-specific rules and cops
|
34
|
+
- config/rspec.yml # RSpec-specific rules and cops
|
35
|
+
- config/capybara.yml # capybara-specific rules and cops
|
33
36
|
```
|
data/config/capybara.yml
ADDED
data/config/rspec.yml
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop-rickselby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rick Selby
|
@@ -60,6 +60,7 @@ extensions: []
|
|
60
60
|
extra_rdoc_files: []
|
61
61
|
files:
|
62
62
|
- README.md
|
63
|
+
- config/capybara.yml
|
63
64
|
- config/default.yml
|
64
65
|
- config/rails.yml
|
65
66
|
- config/rspec.yml
|
@@ -80,7 +81,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
80
81
|
requirements:
|
81
82
|
- - ">="
|
82
83
|
- !ruby/object:Gem::Version
|
83
|
-
version: '3.
|
84
|
+
version: '3.0'
|
84
85
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
85
86
|
requirements:
|
86
87
|
- - ">="
|