bixby 0.3.1 → 1.0.0.pre.rc1
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 +6 -0
- data/bixby.gemspec +3 -5
- data/bixby_default.yml +7 -3
- data/bixby_rspec_enabled.yml +0 -11
- metadata +12 -12
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: de45bf8fea7c6e91762a6f80d42f323a25793a55
|
|
4
|
+
data.tar.gz: b81bccfe9f9002258a848e46fbff66f784a83de4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 843a0b9b0aba09264b00a8b2d8fc61b5d186474ff6d1350cda6b0c1547c76f385846be6d74c5ae12d6ef26870402823b2be055bd0d2ce4f821870058c96e2014
|
|
7
|
+
data.tar.gz: df3a5b93e2d4a0166cba7fda7da013655f55e3e64c0314e6f3f589269b66658d590a8587adc886edd60c6ca55f03ffab45c19e50e1e61767e997f9d85bd8ddc9
|
data/README.md
CHANGED
|
@@ -25,6 +25,12 @@ inherit_gem:
|
|
|
25
25
|
bixby: bixby_default.yml
|
|
26
26
|
```
|
|
27
27
|
|
|
28
|
+
## Versioning & Dependencies
|
|
29
|
+
|
|
30
|
+
This project depends on `rubocop` and `rubocop-rspec`. It supports versions of those gems pessimistically. Beginning with release `1.0.0`, we will periodically add support for new versions of the dependencies and manage the included cops. When compatibility breaks, the major version of `bixby` will be bumped.
|
|
31
|
+
|
|
32
|
+
Our goal is to insulate downstream projects from breakage due to pre-1.0 version updates in `rubocop`.
|
|
33
|
+
|
|
28
34
|
## License
|
|
29
35
|
|
|
30
36
|
Bixby is available under [the Apache 2.0 license](LICENSE.md).
|
data/bixby.gemspec
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
# -*- encoding: utf-8 -*-
|
|
2
|
-
|
|
3
1
|
Gem::Specification.new do |spec|
|
|
4
2
|
spec.authors = ['Tom Johnson']
|
|
5
3
|
spec.email = ['tom@curationexperts.com']
|
|
@@ -12,9 +10,9 @@ Gem::Specification.new do |spec|
|
|
|
12
10
|
spec.name = 'bixby'
|
|
13
11
|
spec.require_paths = ['lib']
|
|
14
12
|
|
|
15
|
-
spec.version = '0.
|
|
13
|
+
spec.version = '1.0.0-rc1'
|
|
16
14
|
spec.license = 'Apache-2.0'
|
|
17
15
|
|
|
18
|
-
spec.add_dependency 'rubocop', '~> 0.
|
|
19
|
-
spec.add_dependency 'rubocop-rspec', '~> 1.
|
|
16
|
+
spec.add_dependency 'rubocop', '~> 0.50', '<= 0.52.1'
|
|
17
|
+
spec.add_dependency 'rubocop-rspec', '~> 1.22', '<= 1.22.2'
|
|
20
18
|
end
|
data/bixby_default.yml
CHANGED
|
@@ -8,6 +8,7 @@ AllCops:
|
|
|
8
8
|
Exclude:
|
|
9
9
|
- 'db/**/*'
|
|
10
10
|
- 'script/**/*'
|
|
11
|
+
- 'tmp/**/*'
|
|
11
12
|
- 'vendor/**/*'
|
|
12
13
|
|
|
13
14
|
inherit_from:
|
|
@@ -525,7 +526,10 @@ Layout/SpaceInsideArrayPercentLiteral:
|
|
|
525
526
|
Layout/SpaceInsidePercentLiteralDelimiters:
|
|
526
527
|
Enabled: true
|
|
527
528
|
|
|
528
|
-
Layout/
|
|
529
|
+
Layout/SpaceInsideReferenceBrackets:
|
|
530
|
+
Enabled: true
|
|
531
|
+
|
|
532
|
+
Layout/SpaceInsideArrayLiteralBrackets:
|
|
529
533
|
Enabled: true
|
|
530
534
|
|
|
531
535
|
Layout/SpaceInsideHashLiteralBraces:
|
|
@@ -557,7 +561,7 @@ Naming/AccessorMethodName:
|
|
|
557
561
|
Naming/AsciiIdentifiers:
|
|
558
562
|
Enabled: true
|
|
559
563
|
|
|
560
|
-
Naming/
|
|
564
|
+
Naming/BinaryOperatorParameterName:
|
|
561
565
|
Enabled: true
|
|
562
566
|
|
|
563
567
|
Naming/ClassAndModuleCamelCase:
|
|
@@ -714,7 +718,7 @@ Lint/IneffectiveAccessModifier:
|
|
|
714
718
|
Lint/InheritException:
|
|
715
719
|
Enabled: true
|
|
716
720
|
|
|
717
|
-
Lint/
|
|
721
|
+
Lint/LiteralAsCondition:
|
|
718
722
|
Enabled: true
|
|
719
723
|
|
|
720
724
|
Lint/LiteralInInterpolation:
|
data/bixby_rspec_enabled.yml
CHANGED
|
@@ -45,13 +45,6 @@ RSpec/ExpectActual:
|
|
|
45
45
|
RSpec/ExpectOutput:
|
|
46
46
|
Enabled: true
|
|
47
47
|
|
|
48
|
-
RSpec/FilePath:
|
|
49
|
-
Enabled: true
|
|
50
|
-
CustomTransform:
|
|
51
|
-
RuboCop: rubocop
|
|
52
|
-
RSpec: rspec
|
|
53
|
-
IgnoreMethods: false
|
|
54
|
-
|
|
55
48
|
RSpec/Focus:
|
|
56
49
|
Enabled: true
|
|
57
50
|
|
|
@@ -100,10 +93,6 @@ RSpec/MessageSpies:
|
|
|
100
93
|
RSpec/MultipleDescribes:
|
|
101
94
|
Enabled: true
|
|
102
95
|
|
|
103
|
-
RSpec/MultipleExpectations:
|
|
104
|
-
Enabled: true
|
|
105
|
-
Max: 1
|
|
106
|
-
|
|
107
96
|
RSpec/NamedSubject:
|
|
108
97
|
Enabled: true
|
|
109
98
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bixby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0.pre.rc1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tom Johnson
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-02-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|
|
@@ -16,40 +16,40 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '0.
|
|
19
|
+
version: '0.50'
|
|
20
20
|
- - "<="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 0.
|
|
22
|
+
version: 0.52.1
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
26
26
|
requirements:
|
|
27
27
|
- - "~>"
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: '0.
|
|
29
|
+
version: '0.50'
|
|
30
30
|
- - "<="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 0.
|
|
32
|
+
version: 0.52.1
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: rubocop-rspec
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
36
36
|
requirements:
|
|
37
37
|
- - "~>"
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
|
-
version: '1.
|
|
39
|
+
version: '1.22'
|
|
40
40
|
- - "<="
|
|
41
41
|
- !ruby/object:Gem::Version
|
|
42
|
-
version: 1.
|
|
42
|
+
version: 1.22.2
|
|
43
43
|
type: :runtime
|
|
44
44
|
prerelease: false
|
|
45
45
|
version_requirements: !ruby/object:Gem::Requirement
|
|
46
46
|
requirements:
|
|
47
47
|
- - "~>"
|
|
48
48
|
- !ruby/object:Gem::Version
|
|
49
|
-
version: '1.
|
|
49
|
+
version: '1.22'
|
|
50
50
|
- - "<="
|
|
51
51
|
- !ruby/object:Gem::Version
|
|
52
|
-
version: 1.
|
|
52
|
+
version: 1.22.2
|
|
53
53
|
description: A Style Configuration for RuboCop
|
|
54
54
|
email:
|
|
55
55
|
- tom@curationexperts.com
|
|
@@ -81,9 +81,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
81
81
|
version: '0'
|
|
82
82
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
83
83
|
requirements:
|
|
84
|
-
- - "
|
|
84
|
+
- - ">"
|
|
85
85
|
- !ruby/object:Gem::Version
|
|
86
|
-
version:
|
|
86
|
+
version: 1.3.1
|
|
87
87
|
requirements: []
|
|
88
88
|
rubyforge_project:
|
|
89
89
|
rubygems_version: 2.6.13
|