fashion_police 1.2.1 → 1.2.2

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: 7e7f95af27004dd26dd15308769beaeb47a2d1a3
4
- data.tar.gz: 5ef4b550cefe2e528d3aa53d12bc3b5525427666
3
+ metadata.gz: '09293a995a54238cac82f9c98cc10de5289fd2b0'
4
+ data.tar.gz: ad4729f8a7dcb275715043b0061658710d550d6e
5
5
  SHA512:
6
- metadata.gz: 64ac7352144e515a3a86451815dde4b2f4c8f5a81661f747efa165cdda54d5b4c34e69e1472c94630a03730374319c892e6374fae8839f192916b55e8fbf75b9
7
- data.tar.gz: 284e98fbb36ecd37d8f94ccf1e1e6b0a299509e8f7e7ce9af6a4d208bc15303fafc92c01c5725c82347ec3a455c170c69ddd03f58c1e5a1e6f95f683807dcae9
6
+ metadata.gz: f33aa546ce1c8ea5afa29598a9c41cb1cbfefdd85e1946c2162e383b9f7eb3c30f565d5d859fb9ff234f6b154298b7a8979fb5abd6ad771ef7c2be403501b269
7
+ data.tar.gz: 3147b10707335b19f4795747480216f9ae4eaf0f9b8b52f1ce93018ef704c04258d7b52e23045a39958712fdd8aaac5cc822f5cc362d74520291e06dbcb881dd
data/.rubocop.yml CHANGED
@@ -101,18 +101,26 @@ Rails/SkipsModelValidations:
101
101
  Rails/CreateTableWithTimestamps:
102
102
  Enabled: false
103
103
 
104
+ # Allow using `allow_any_instance_of` for stubbing.
105
+ RSpec/AnyInstance:
106
+ Enabled: false
107
+
104
108
  # Allow `let!` to setup test data in specs.
105
109
  RSpec/LetSetup:
106
110
  Enabled: false
107
111
 
108
- # Allow a nesting of up to 4 of describe/context blocks (default is 3).
112
+ # Allow a nesting of up to 5 of describe/context blocks (default is 3).
109
113
  RSpec/NestedGroups:
110
- Max: 4
114
+ Max: 5
111
115
 
112
116
  # Allow any number of expectations in an example, for performance.
113
117
  RSpec/MultipleExpectations:
114
118
  Enabled: false
115
119
 
120
+ # Allow using normal test doubles, since they are useful for mocking.
121
+ RSpec/VerifiedDoubles:
122
+ Enabled: false
123
+
116
124
  # Allow template token "%{foo}" since they are used in translation keys.
117
125
  Style/FormatStringToken:
118
126
  EnforcedStyle: template
data/CHANGELOG.md CHANGED
@@ -1,7 +1,12 @@
1
1
  Rubocop Gem updates
2
2
  ===================
3
3
 
4
- ## unreleased
4
+ ## v1.2.2
5
+
6
+ Fixes:
7
+ - Disable `RSpec/VerifiedDoubles`.
8
+ - Disable `RSpec/AnyInstance`.
9
+ - Allow up to 5 nested groups in `RSpec/NestedGroups`.
5
10
 
6
11
  ## v1.2.1
7
12
 
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = 'fashion_police'
3
- spec.version = '1.2.1'
3
+ spec.version = '1.2.2'
4
4
  spec.authors = ['Sunny Ripert']
5
5
  spec.email = ['sunny.ripert@kisskissbankbank.com']
6
6
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fashion_police
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sunny Ripert
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-10-30 00:00:00.000000000 Z
11
+ date: 2018-11-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop