bixby 4.0.0 → 5.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +34 -5
- data/bixby.gemspec +2 -2
- data/bixby_default.yml +1 -4
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4bec268a62607964f227f595aea3b764ed410a96570086e7b203031fd28c4c8e
|
4
|
+
data.tar.gz: ef65feaff1f2024e968ab0d2098028421462fd2c43ca13fe8baeb152bbc407a4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c63e741779fe9b097717f4fbf7b44d16e84bfca6fef002f9871afc1259565083d19bba1a799a9ef8e2c64844f3fb62802e9f18f12a06e9abc94c3e8c8e678f5a
|
7
|
+
data.tar.gz: 18dc60c2a7845acdb60b0fbafa1e8fdd9b77e7722b59e9ce6d2fe38e6336e755eb56600ecd0a567eee5875c41e45633b8889ec53fd6bf0daf5f794744bfe9934
|
data/.circleci/config.yml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
version: 2.1
|
2
2
|
|
3
3
|
orbs:
|
4
|
-
samvera: samvera/circleci-orb@1
|
4
|
+
samvera: samvera/circleci-orb@1.0
|
5
5
|
|
6
6
|
jobs:
|
7
7
|
bundle_lint_test:
|
@@ -12,7 +12,7 @@ jobs:
|
|
12
12
|
type: string
|
13
13
|
bundler_version:
|
14
14
|
type: string
|
15
|
-
default: 2.3.
|
15
|
+
default: 2.3.11
|
16
16
|
|
17
17
|
executor:
|
18
18
|
name: 'samvera/ruby'
|
@@ -44,15 +44,44 @@ workflows:
|
|
44
44
|
jobs:
|
45
45
|
- bundle_lint_test:
|
46
46
|
project: bixby
|
47
|
-
name:
|
48
|
-
ruby_version:
|
49
|
-
|
47
|
+
name: ruby3-1
|
48
|
+
ruby_version: 3.1.1
|
49
|
+
- bundle_lint_test:
|
50
|
+
project: bixby
|
51
|
+
name: ruby3-0
|
52
|
+
ruby_version: 3.0.3
|
50
53
|
- bundle_lint_test:
|
51
54
|
project: bixby
|
52
55
|
name: ruby2-7
|
53
56
|
ruby_version: 2.7.5
|
57
|
+
- bundle_lint_test:
|
58
|
+
project: bixby
|
59
|
+
name: ruby2-6
|
60
|
+
ruby_version: 2.6.9
|
54
61
|
|
62
|
+
nightly:
|
63
|
+
triggers:
|
64
|
+
- schedule:
|
65
|
+
cron: "0 0 * * *"
|
66
|
+
filters:
|
67
|
+
branches:
|
68
|
+
only:
|
69
|
+
- main
|
70
|
+
jobs:
|
71
|
+
- bundle_lint_test:
|
72
|
+
project: bixby
|
73
|
+
name: ruby3-1
|
74
|
+
ruby_version: 3.1.1
|
55
75
|
- bundle_lint_test:
|
56
76
|
project: bixby
|
57
77
|
name: ruby3-0
|
58
78
|
ruby_version: 3.0.3
|
79
|
+
- bundle_lint_test:
|
80
|
+
project: bixby
|
81
|
+
name: ruby2-7
|
82
|
+
ruby_version: 2.7.5
|
83
|
+
- bundle_lint_test:
|
84
|
+
project: bixby
|
85
|
+
name: ruby2-6
|
86
|
+
ruby_version: 2.6.9
|
87
|
+
|
data/bixby.gemspec
CHANGED
@@ -12,10 +12,10 @@ Gem::Specification.new do |spec|
|
|
12
12
|
spec.name = 'bixby'
|
13
13
|
spec.require_paths = ['lib']
|
14
14
|
|
15
|
-
spec.version = '
|
15
|
+
spec.version = '5.0.0'
|
16
16
|
spec.license = 'Apache-2.0'
|
17
17
|
|
18
|
-
spec.required_ruby_version = '>= 2.
|
18
|
+
spec.required_ruby_version = '>= 2.6'
|
19
19
|
|
20
20
|
spec.add_dependency 'rubocop', '>= 1', '< 2'
|
21
21
|
spec.add_dependency 'rubocop-ast'
|
data/bixby_default.yml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
require: rubocop-performance
|
2
2
|
|
3
3
|
AllCops:
|
4
|
-
TargetRubyVersion: 2.
|
4
|
+
TargetRubyVersion: 2.6
|
5
5
|
DisabledByDefault: true
|
6
6
|
DisplayCopNames: true
|
7
7
|
Exclude:
|
@@ -801,9 +801,6 @@ Lint/UselessAssignment:
|
|
801
801
|
Lint/BinaryOperatorWithIdenticalOperands:
|
802
802
|
Enabled: true
|
803
803
|
|
804
|
-
Lint/UselessElseWithoutRescue:
|
805
|
-
Enabled: true
|
806
|
-
|
807
804
|
Lint/UselessSetterCall:
|
808
805
|
Enabled: true
|
809
806
|
|
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:
|
4
|
+
version: 5.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tamsin Johnson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-05-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|
@@ -136,14 +136,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
136
136
|
requirements:
|
137
137
|
- - ">="
|
138
138
|
- !ruby/object:Gem::Version
|
139
|
-
version: '2.
|
139
|
+
version: '2.6'
|
140
140
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
141
141
|
requirements:
|
142
142
|
- - ">="
|
143
143
|
- !ruby/object:Gem::Version
|
144
144
|
version: '0'
|
145
145
|
requirements: []
|
146
|
-
rubygems_version: 3.1.
|
146
|
+
rubygems_version: 3.1.4
|
147
147
|
signing_key:
|
148
148
|
specification_version: 4
|
149
149
|
summary: This is the recommended style configuration for use by Samvera Community
|