Package not found. Please check the package name and try again.
bixby 1.0.0 → 2.0.0.pre.beta1
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 +5 -5
- data/bixby.gemspec +3 -3
- data/bixby_default.yml +24 -30
- metadata +13 -25
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 746a55d52af52d8d2dc66624cb90df7f99483ea1a1c5abcd42d229db8dd6064c
|
|
4
|
+
data.tar.gz: 8ccfe8bd8507449103ec1fa39c49e342ff3b9e49e219e6f131f47ab2f4528b18
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: faa7c26aa8307040a0633ed5abe8f100ae4a485b4b126e39a70767df26bbfff632016bb06332783011e9d06010f27d16efabf33786eec92ce769448f866e8385
|
|
7
|
+
data.tar.gz: a06ce2feddcf1b599e0e00307070d6d0b69b912574616941f9232c47fab0eff79b44f34a6cb742dd8752007076c655a6997c2dd3594ce3b487adbbbdbb512758
|
data/bixby.gemspec
CHANGED
|
@@ -10,9 +10,9 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.name = 'bixby'
|
|
11
11
|
spec.require_paths = ['lib']
|
|
12
12
|
|
|
13
|
-
spec.version = '
|
|
13
|
+
spec.version = '2.0.0-beta1'
|
|
14
14
|
spec.license = 'Apache-2.0'
|
|
15
15
|
|
|
16
|
-
spec.add_dependency 'rubocop', '
|
|
17
|
-
spec.add_dependency 'rubocop-rspec', '
|
|
16
|
+
spec.add_dependency 'rubocop', '0.63.1'
|
|
17
|
+
spec.add_dependency 'rubocop-rspec', '1.31.0'
|
|
18
18
|
end
|
data/bixby_default.yml
CHANGED
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
AllCops:
|
|
2
|
-
TargetRubyVersion: 2.
|
|
2
|
+
TargetRubyVersion: 2.3
|
|
3
3
|
DisabledByDefault: true
|
|
4
4
|
DisplayCopNames: true
|
|
5
|
-
Include:
|
|
6
|
-
- '**/Rakefile'
|
|
7
|
-
- '**/config.ru'
|
|
8
5
|
Exclude:
|
|
9
6
|
- 'db/**/*'
|
|
10
7
|
- 'script/**/*'
|
|
@@ -15,8 +12,6 @@ inherit_from:
|
|
|
15
12
|
- bixby_rails_enabled.yml
|
|
16
13
|
- bixby_rspec_enabled.yml
|
|
17
14
|
|
|
18
|
-
# These are all the cops that are enabled in the default configuration.
|
|
19
|
-
|
|
20
15
|
Style/Alias:
|
|
21
16
|
Enabled: true
|
|
22
17
|
|
|
@@ -122,9 +117,6 @@ Style/EvenOdd:
|
|
|
122
117
|
Style/FrozenStringLiteralComment:
|
|
123
118
|
Enabled: true
|
|
124
119
|
|
|
125
|
-
Style/FlipFlop:
|
|
126
|
-
Enabled: true
|
|
127
|
-
|
|
128
120
|
Style/For:
|
|
129
121
|
Enabled: true
|
|
130
122
|
|
|
@@ -173,7 +165,10 @@ Style/MethodCallWithoutArgsParentheses:
|
|
|
173
165
|
Style/MethodDefParentheses:
|
|
174
166
|
Enabled: true
|
|
175
167
|
|
|
176
|
-
Style/
|
|
168
|
+
Style/MethodMissingSuper:
|
|
169
|
+
Enabled: true
|
|
170
|
+
|
|
171
|
+
Style/MissingRespondToMissing:
|
|
177
172
|
Enabled: true
|
|
178
173
|
|
|
179
174
|
Style/ModuleFunction:
|
|
@@ -328,7 +323,10 @@ Style/TernaryParentheses:
|
|
|
328
323
|
Style/TrailingCommaInArguments:
|
|
329
324
|
Enabled: true
|
|
330
325
|
|
|
331
|
-
Style/
|
|
326
|
+
Style/TrailingCommaInArrayLiteral:
|
|
327
|
+
Enabled: true
|
|
328
|
+
|
|
329
|
+
Style/TrailingCommaInHashLiteral:
|
|
332
330
|
Enabled: true
|
|
333
331
|
|
|
334
332
|
Style/TrivialAccessors:
|
|
@@ -376,6 +374,9 @@ Layout/AlignHash:
|
|
|
376
374
|
Layout/AlignParameters:
|
|
377
375
|
Enabled: true
|
|
378
376
|
|
|
377
|
+
Layout/BlockAlignment:
|
|
378
|
+
Enabled: true
|
|
379
|
+
|
|
379
380
|
Layout/BlockEndNewline:
|
|
380
381
|
Enabled: true
|
|
381
382
|
|
|
@@ -385,15 +386,24 @@ Layout/CaseIndentation:
|
|
|
385
386
|
Layout/ClosingParenthesisIndentation:
|
|
386
387
|
Enabled: true
|
|
387
388
|
|
|
389
|
+
Layout/ConditionPosition:
|
|
390
|
+
Enabled: true
|
|
391
|
+
|
|
388
392
|
Layout/CommentIndentation:
|
|
389
393
|
Enabled: true
|
|
390
394
|
|
|
395
|
+
Layout/DefEndAlignment:
|
|
396
|
+
Enabled: true
|
|
397
|
+
|
|
391
398
|
Layout/DotPosition:
|
|
392
399
|
Enabled: true
|
|
393
400
|
|
|
394
401
|
Layout/ElseAlignment:
|
|
395
402
|
Enabled: true
|
|
396
403
|
|
|
404
|
+
Layout/EndAlignment:
|
|
405
|
+
Enabled: true
|
|
406
|
+
|
|
397
407
|
Layout/EmptyLineBetweenDefs:
|
|
398
408
|
Enabled: true
|
|
399
409
|
|
|
@@ -645,21 +655,12 @@ Lint/AmbiguousRegexpLiteral:
|
|
|
645
655
|
Lint/AssignmentInCondition:
|
|
646
656
|
Enabled: true
|
|
647
657
|
|
|
648
|
-
Lint/BlockAlignment:
|
|
649
|
-
Enabled: true
|
|
650
|
-
|
|
651
658
|
Lint/CircularArgumentReference:
|
|
652
659
|
Enabled: true
|
|
653
660
|
|
|
654
|
-
Lint/ConditionPosition:
|
|
655
|
-
Enabled: true
|
|
656
|
-
|
|
657
661
|
Lint/Debugger:
|
|
658
662
|
Enabled: true
|
|
659
663
|
|
|
660
|
-
Lint/DefEndAlignment:
|
|
661
|
-
Enabled: true
|
|
662
|
-
|
|
663
664
|
Lint/DeprecatedClassMethods:
|
|
664
665
|
Enabled: true
|
|
665
666
|
|
|
@@ -691,15 +692,15 @@ Lint/EmptyInterpolation:
|
|
|
691
692
|
Lint/EmptyWhen:
|
|
692
693
|
Enabled: true
|
|
693
694
|
|
|
694
|
-
Lint/EndAlignment:
|
|
695
|
-
Enabled: true
|
|
696
|
-
|
|
697
695
|
Lint/EndInMethod:
|
|
698
696
|
Enabled: true
|
|
699
697
|
|
|
700
698
|
Lint/EnsureReturn:
|
|
701
699
|
Enabled: true
|
|
702
700
|
|
|
701
|
+
Lint/FlipFlop:
|
|
702
|
+
Enabled: true
|
|
703
|
+
|
|
703
704
|
Lint/FloatOutOfRange:
|
|
704
705
|
Enabled: true
|
|
705
706
|
|
|
@@ -776,9 +777,6 @@ Lint/UnderscorePrefixedVariableName:
|
|
|
776
777
|
Lint/UnifiedInteger:
|
|
777
778
|
Enabled: true
|
|
778
779
|
|
|
779
|
-
Lint/UnneededDisable:
|
|
780
|
-
Enabled: true
|
|
781
|
-
|
|
782
780
|
Lint/UnneededSplatExpansion:
|
|
783
781
|
Enabled: true
|
|
784
782
|
|
|
@@ -856,10 +854,6 @@ Performance/FlatMap:
|
|
|
856
854
|
# This can be dangerous since `flat_map` will only flatten 1 level, and
|
|
857
855
|
# `flatten` without any parameters can flatten multiple levels.
|
|
858
856
|
|
|
859
|
-
Performance/HashEachMethods:
|
|
860
|
-
Enabled: true
|
|
861
|
-
AutoCorrect: false
|
|
862
|
-
|
|
863
857
|
Performance/LstripRstrip:
|
|
864
858
|
Enabled: true
|
|
865
859
|
|
metadata
CHANGED
|
@@ -1,55 +1,43 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bixby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 2.0.0.pre.beta1
|
|
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: 2019-02-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- -
|
|
17
|
+
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version:
|
|
20
|
-
- - "<="
|
|
21
|
-
- !ruby/object:Gem::Version
|
|
22
|
-
version: 0.52.1
|
|
19
|
+
version: 0.63.1
|
|
23
20
|
type: :runtime
|
|
24
21
|
prerelease: false
|
|
25
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
26
23
|
requirements:
|
|
27
|
-
- -
|
|
28
|
-
- !ruby/object:Gem::Version
|
|
29
|
-
version: '0.50'
|
|
30
|
-
- - "<="
|
|
24
|
+
- - '='
|
|
31
25
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 0.
|
|
26
|
+
version: 0.63.1
|
|
33
27
|
- !ruby/object:Gem::Dependency
|
|
34
28
|
name: rubocop-rspec
|
|
35
29
|
requirement: !ruby/object:Gem::Requirement
|
|
36
30
|
requirements:
|
|
37
|
-
- -
|
|
38
|
-
- !ruby/object:Gem::Version
|
|
39
|
-
version: '1.22'
|
|
40
|
-
- - "<="
|
|
31
|
+
- - '='
|
|
41
32
|
- !ruby/object:Gem::Version
|
|
42
|
-
version: 1.
|
|
33
|
+
version: 1.31.0
|
|
43
34
|
type: :runtime
|
|
44
35
|
prerelease: false
|
|
45
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
46
37
|
requirements:
|
|
47
|
-
- -
|
|
38
|
+
- - '='
|
|
48
39
|
- !ruby/object:Gem::Version
|
|
49
|
-
version:
|
|
50
|
-
- - "<="
|
|
51
|
-
- !ruby/object:Gem::Version
|
|
52
|
-
version: 1.22.2
|
|
40
|
+
version: 1.31.0
|
|
53
41
|
description: A Style Configuration for RuboCop
|
|
54
42
|
email:
|
|
55
43
|
- tom@curationexperts.com
|
|
@@ -81,12 +69,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
81
69
|
version: '0'
|
|
82
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
83
71
|
requirements:
|
|
84
|
-
- - "
|
|
72
|
+
- - ">"
|
|
85
73
|
- !ruby/object:Gem::Version
|
|
86
|
-
version:
|
|
74
|
+
version: 1.3.1
|
|
87
75
|
requirements: []
|
|
88
76
|
rubyforge_project:
|
|
89
|
-
rubygems_version: 2.
|
|
77
|
+
rubygems_version: 2.7.7
|
|
90
78
|
signing_key:
|
|
91
79
|
specification_version: 4
|
|
92
80
|
summary: This is the recommended style configuration for use by Samvera Community
|