rubocop-rickselby 0.3.0 → 0.4.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 007a11607aad89c8e5348b4c662d0034c6e833edf3d0eeb78dd35551ae9e4e15
4
- data.tar.gz: c13715bcbd586fbfa4200daa95af574df2affd195aa3c8d6e5bad78817041712
3
+ metadata.gz: e651e3c4265c2b56dae8ab38966bb433c0341973c365fc7438583dbc461ef17d
4
+ data.tar.gz: 57ff0a18aeeffc622b6fedd9ea307913d43ce84c01a0379e651b6dda9b088ffb
5
5
  SHA512:
6
- metadata.gz: 4162b7d0fd79610e02477147769fde383b72c163aa7d7e90489ef264a630f114d99bba7e3d73f22bf40419383455399ce9636ae70ab891d3f2f356e47bb24330
7
- data.tar.gz: 8496f1810088a976c90b841b78ddcb67df5f6b4e4f81ed8147a1b95e8ceea6826d621b360e9fd5a57c6006efd38deda0b438517dde6b75863d3401dacadf6751
6
+ metadata.gz: f742c14155d39cdead27056b14f4f7cb5a64809670260e489f430e43903d38dcfa160580354c449a0d66cc5f405bf76c8062c6f1cd23d007bd2cf350b1c232bb
7
+ data.tar.gz: 1c200a619d63c39ff928eb9523347ab71967d8a9ecb1ebf778b64784452dd2061da0f8158d95cdf2025505e7ce7c2a7296ab6eb020032799bd3d5045a5b10c55
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
  ```
@@ -0,0 +1,2 @@
1
+ require:
2
+ - rubocop-capybara
data/config/rspec.yml CHANGED
@@ -1,3 +1,2 @@
1
1
  require:
2
- - rubocop-capybara
3
2
  - rubocop-rspec
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Rubocop
4
4
  module Rickselby
5
- VERSION = "0.3.0"
5
+ VERSION = "0.4.0"
6
6
  end
7
7
  end
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.3.0
4
+ version: 0.4.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