reinteractive-style 0.2.3 → 0.2.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 +4 -4
- data/default.yml +3 -2
- data/lib/reinteractive/style/version.rb +1 -1
- data/reinteractive-style.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e9cba0c3bc6f63ef64bbdd76fb5f74e8860187f8
|
|
4
|
+
data.tar.gz: cbcf2ec0c06724085cf052b189062abd72bcae9b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: de705cee39d9717dc1ad903612c7f5f900379f31235566dd908652c00cd1782d9182f12825021fb3e0c268e1990100b29d9f75e50f22402d50c35074979db0a4
|
|
7
|
+
data.tar.gz: 7883ae3eb9b29fbb2c1fcbe17317cebaa2d4348fd931e12721bbaab9af6c7d6c0eac35758c3a75383c38ca2f89a57ed82dc8c34e66362413457dc5d13704e81a
|
data/default.yml
CHANGED
|
@@ -126,7 +126,6 @@ Style/IfUnlessModifier:
|
|
|
126
126
|
Description: Favor modifier if/unless usage when you have a single-line body.
|
|
127
127
|
StyleGuide: https://github.com/bbatsov/ruby-style-guide#if-as-a-modifier
|
|
128
128
|
Enabled: false
|
|
129
|
-
MaxLineLength: 80
|
|
130
129
|
Style/LambdaCall:
|
|
131
130
|
Description: Use lambda.call(...) instead of lambda.(...).
|
|
132
131
|
StyleGuide: https://github.com/bbatsov/ruby-style-guide#proc-call
|
|
@@ -331,7 +330,6 @@ Style/WhileUntilModifier:
|
|
|
331
330
|
Description: Favor modifier while/until usage when you have a single-line body.
|
|
332
331
|
StyleGuide: https://github.com/bbatsov/ruby-style-guide#while-as-a-modifier
|
|
333
332
|
Enabled: false
|
|
334
|
-
MaxLineLength: 80
|
|
335
333
|
Style/WordArray:
|
|
336
334
|
Description: Use %w or %W for arrays of words.
|
|
337
335
|
StyleGuide: https://github.com/bbatsov/ruby-style-guide#percent-w
|
|
@@ -1074,3 +1072,6 @@ Lint/AmbiguousBlockAssociation:
|
|
|
1074
1072
|
RSpec/LetSetup:
|
|
1075
1073
|
Description: Using let! in configuration is not a bad thing if well structured
|
|
1076
1074
|
Enabled: false
|
|
1075
|
+
RSpec/MultipleExpectations:
|
|
1076
|
+
Description: Multiple expectations in a spec are fine if used with caution
|
|
1077
|
+
Enabled: false
|
data/reinteractive-style.gemspec
CHANGED
|
@@ -31,7 +31,7 @@ Gem::Specification.new do |spec|
|
|
|
31
31
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
32
32
|
spec.require_paths = ["lib"]
|
|
33
33
|
|
|
34
|
-
spec.add_dependency "rubocop", "~> 0.
|
|
34
|
+
spec.add_dependency "rubocop", "~> 0.52.0"
|
|
35
35
|
spec.add_dependency "rubocop-rspec", "~> 1.15"
|
|
36
36
|
|
|
37
37
|
spec.add_development_dependency "bundler", "~> 1.15"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: reinteractive-style
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- reinteractive
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-12-
|
|
11
|
+
date: 2017-12-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.
|
|
19
|
+
version: 0.52.0
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.
|
|
26
|
+
version: 0.52.0
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: rubocop-rspec
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|