standard-rspec 0.1.2 → 0.1.4

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: 6a7df2ed9027afe0b7597cfa38a7c75ccc38368d641752a7955a6cf695b77b7b
4
- data.tar.gz: 73545048ffb300f699739697eb68966729e6fd6f8a444afaf41bc5f1b0a76d8e
3
+ metadata.gz: dc87c59fed24e4b18c06c5c5f04b90cb1365d696f42f044620765fe2cfb445d7
4
+ data.tar.gz: 7cc11bec3112b4076dfcdc6d31945c816338778db8a88bd0b4ecc6a1c17642b9
5
5
  SHA512:
6
- metadata.gz: 55c407680bc30e520cca7d082acd8d24971e8bd4238af7ab73b3800a916130f198777ea83540719482b8bad4dbc1031781fb353bc0c7f12005f28f301b18655e
7
- data.tar.gz: 39bf410b6b2cfc4607a70f4877d397e6738d05c6118ba4093c7f7134498d3169b28ffa9767c8801216bf3dd795d61c01ad972991e5341394065c8e61c6fca869
6
+ metadata.gz: 56f91794706412008d4fe49aff32449bb998c733e0c710b08c6d44ba5c320e744e75cc2a0247f23c560b9904c8ae4cf86e185f09422cd7e1ceebcc841fa83e55
7
+ data.tar.gz: e47cc3bc2c68cdca94736e9e2edfa8cf30cf7eb339b9cf12304accd5f655454066a3b91c9e2150cd184fc7ed196d7c66bdef7bc0cfedb3f6938d48fb4e801349
data/config/base.yml CHANGED
@@ -720,7 +720,7 @@ RSpec/VariableName:
720
720
  SupportedStyles:
721
721
  - snake_case
722
722
  - camelCase
723
- IgnoredPatterns: []
723
+ AllowedPatterns: []
724
724
  VersionAdded: '1.40'
725
725
  VersionChanged: '1.43'
726
726
  StyleGuide: https://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/VariableName
@@ -29,6 +29,8 @@ require require_path.join("rubocop/rspec/wording")
29
29
  # Dependent on `RuboCop::RSpec::Language::NodePattern`.
30
30
  require require_path.join("rubocop/rspec/language")
31
31
 
32
+ require require_path.join("rubocop/rspec/factory_bot/language")
33
+
32
34
  require require_path.join("rubocop/cop/rspec/mixin/final_end_location")
33
35
  require require_path.join("rubocop/cop/rspec/mixin/inside_example_group")
34
36
  require require_path.join("rubocop/cop/rspec/mixin/location_help")
@@ -48,6 +50,7 @@ require require_path.join("rubocop/rspec/concept")
48
50
  require require_path.join("rubocop/rspec/corrector/move_node")
49
51
  require require_path.join("rubocop/rspec/example")
50
52
  require require_path.join("rubocop/rspec/example_group")
53
+ require require_path.join("rubocop/rspec/factory_bot")
51
54
  require require_path.join("rubocop/rspec/hook")
52
55
 
53
56
  # RuboCop::RSpec::Inject.defaults!
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Standard
4
4
  module Rspec
5
- VERSION = "0.1.2"
5
+ VERSION = "0.1.4"
6
6
  end
7
7
  end
@@ -33,4 +33,5 @@ Gem::Specification.new do |spec|
33
33
 
34
34
  spec.add_dependency "lint_roller", "~> 1.0"
35
35
  spec.add_dependency "rubocop-rspec", "~> 2.22.0"
36
+ spec.add_dependency "rubocop-factory_bot", "~> 2.22"
36
37
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: standard-rspec
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - shilin-anton
@@ -38,6 +38,20 @@ dependencies:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: 2.22.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: rubocop-factory_bot
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '2.22'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '2.22'
41
55
  description:
42
56
  email:
43
57
  - anton.d.shilin@gmail.com