attribool 2.0.5 → 2.0.6
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/.github/workflows/ruby.yml +17 -5
- data/Gemfile.lock +92 -33
- data/attribool.gemspec +1 -0
- data/lib/attribool/version.rb +1 -1
- metadata +17 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f9d29ef897fa9e6257628073c656a92089a6f5ff5e18812ce7d75668511172b5
|
|
4
|
+
data.tar.gz: caf543eed486c4deeba0a9e3e884b2844b28744428ade36b6f530f40c47b92ef
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0e25810cb5817b25a22e48efceb56611ec474fb0e3b01001a1b705165adcfb4b6d31ab9498b7ff127824c461f10e661e2b3f71285bc9ced4ff5c0160876147c1
|
|
7
|
+
data.tar.gz: 710e2d19957f3903d6ace9677c9a52c2c6dbcbbbe70c2db021740bb5b08c33b29a7f59baaa854b52f434395933109f0a4a18f49910d5e77c578bcc92419cbd2a
|
data/.github/workflows/ruby.yml
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
# .github/workflows/ruby.yml
|
|
1
2
|
name: Ruby CI
|
|
2
3
|
|
|
3
4
|
on:
|
|
@@ -8,20 +9,31 @@ on:
|
|
|
8
9
|
|
|
9
10
|
jobs:
|
|
10
11
|
test:
|
|
11
|
-
|
|
12
|
-
runs-on: ubuntu-latest
|
|
12
|
+
runs-on: ubuntu-22.04
|
|
13
13
|
|
|
14
14
|
strategy:
|
|
15
|
+
fail-fast: false
|
|
15
16
|
matrix:
|
|
16
|
-
ruby-version: ['3.2', '3.
|
|
17
|
+
ruby-version: ['3.2', '3.3', '4.0']
|
|
17
18
|
|
|
18
19
|
steps:
|
|
19
20
|
- uses: actions/checkout@v3
|
|
21
|
+
|
|
22
|
+
# Set up Ruby and Bundler
|
|
20
23
|
- name: Set up Ruby ${{ matrix.ruby-version }}
|
|
21
|
-
uses: ruby/setup-ruby@
|
|
24
|
+
uses: ruby/setup-ruby@v1
|
|
22
25
|
with:
|
|
23
26
|
ruby-version: ${{ matrix.ruby-version }}
|
|
27
|
+
bundler: ${{ matrix.ruby-version == '4.0' && '4.0.9' || '2.4.13' }}
|
|
28
|
+
bundler-cache: true
|
|
29
|
+
|
|
30
|
+
- name: Print Ruby and Bundler versions
|
|
31
|
+
run: |
|
|
32
|
+
ruby -v
|
|
33
|
+
bundle -v
|
|
34
|
+
|
|
24
35
|
- name: Install dependencies
|
|
25
|
-
run: bundle install
|
|
36
|
+
run: bundle install --jobs 4 --retry 3
|
|
37
|
+
|
|
26
38
|
- name: Run tests
|
|
27
39
|
run: bundle exec rake
|
data/Gemfile.lock
CHANGED
|
@@ -1,82 +1,141 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
attribool (2.0.
|
|
4
|
+
attribool (2.0.6)
|
|
5
5
|
|
|
6
6
|
GEM
|
|
7
7
|
remote: https://rubygems.org/
|
|
8
8
|
specs:
|
|
9
|
-
ast (2.4.
|
|
9
|
+
ast (2.4.3)
|
|
10
10
|
coderay (1.1.3)
|
|
11
|
+
date (3.5.1)
|
|
11
12
|
docile (1.4.1)
|
|
12
|
-
|
|
13
|
-
|
|
13
|
+
erb (6.0.2)
|
|
14
|
+
io-console (0.8.2)
|
|
15
|
+
json (2.19.3)
|
|
16
|
+
language_server-protocol (3.17.0.5)
|
|
14
17
|
lint_roller (1.1.0)
|
|
15
18
|
method_source (1.1.0)
|
|
16
|
-
parallel (1.
|
|
17
|
-
parser (3.3.
|
|
19
|
+
parallel (1.28.0)
|
|
20
|
+
parser (3.3.11.1)
|
|
18
21
|
ast (~> 2.4.1)
|
|
19
22
|
racc
|
|
20
|
-
power_assert (
|
|
21
|
-
|
|
23
|
+
power_assert (3.0.1)
|
|
24
|
+
prism (1.9.0)
|
|
25
|
+
pry (0.16.0)
|
|
22
26
|
coderay (~> 1.1)
|
|
23
27
|
method_source (~> 1.0)
|
|
28
|
+
reline (>= 0.6.0)
|
|
29
|
+
psych (5.3.1)
|
|
30
|
+
date
|
|
31
|
+
stringio
|
|
24
32
|
racc (1.8.1)
|
|
25
33
|
rainbow (3.1.1)
|
|
26
|
-
rake (13.
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
34
|
+
rake (13.3.1)
|
|
35
|
+
rdoc (7.2.0)
|
|
36
|
+
erb
|
|
37
|
+
psych (>= 4.0.0)
|
|
38
|
+
tsort
|
|
39
|
+
regexp_parser (2.12.0)
|
|
40
|
+
reline (0.6.3)
|
|
41
|
+
io-console (~> 0.5)
|
|
42
|
+
rubocop (1.84.2)
|
|
31
43
|
json (~> 2.3)
|
|
32
|
-
language_server-protocol (
|
|
44
|
+
language_server-protocol (~> 3.17.0.2)
|
|
45
|
+
lint_roller (~> 1.1.0)
|
|
33
46
|
parallel (~> 1.10)
|
|
34
47
|
parser (>= 3.3.0.2)
|
|
35
48
|
rainbow (>= 2.2.2, < 4.0)
|
|
36
|
-
regexp_parser (>=
|
|
37
|
-
|
|
38
|
-
rubocop-ast (>= 1.31.1, < 2.0)
|
|
49
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
|
50
|
+
rubocop-ast (>= 1.49.0, < 2.0)
|
|
39
51
|
ruby-progressbar (~> 1.7)
|
|
40
|
-
unicode-display_width (>= 2.4.0, <
|
|
41
|
-
rubocop-ast (1.
|
|
42
|
-
parser (>= 3.3.
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
52
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
|
53
|
+
rubocop-ast (1.49.1)
|
|
54
|
+
parser (>= 3.3.7.2)
|
|
55
|
+
prism (~> 1.7)
|
|
56
|
+
rubocop-performance (1.26.1)
|
|
57
|
+
lint_roller (~> 1.1)
|
|
58
|
+
rubocop (>= 1.75.0, < 2.0)
|
|
59
|
+
rubocop-ast (>= 1.47.1, < 2.0)
|
|
46
60
|
ruby-progressbar (1.13.0)
|
|
47
61
|
simplecov (0.22.0)
|
|
48
62
|
docile (~> 1.1)
|
|
49
63
|
simplecov-html (~> 0.11)
|
|
50
64
|
simplecov_json_formatter (~> 0.1)
|
|
51
|
-
simplecov-html (0.
|
|
65
|
+
simplecov-html (0.13.2)
|
|
52
66
|
simplecov_json_formatter (0.1.4)
|
|
53
|
-
standard (1.
|
|
67
|
+
standard (1.54.0)
|
|
54
68
|
language_server-protocol (~> 3.17.0.2)
|
|
55
69
|
lint_roller (~> 1.0)
|
|
56
|
-
rubocop (~> 1.
|
|
70
|
+
rubocop (~> 1.84.0)
|
|
57
71
|
standard-custom (~> 1.0.0)
|
|
58
|
-
standard-performance (~> 1.
|
|
72
|
+
standard-performance (~> 1.8)
|
|
59
73
|
standard-custom (1.0.2)
|
|
60
74
|
lint_roller (~> 1.0)
|
|
61
75
|
rubocop (~> 1.50)
|
|
62
|
-
standard-performance (1.
|
|
76
|
+
standard-performance (1.9.0)
|
|
63
77
|
lint_roller (~> 1.1)
|
|
64
|
-
rubocop-performance (~> 1.
|
|
65
|
-
|
|
66
|
-
test-unit (3.
|
|
78
|
+
rubocop-performance (~> 1.26.0)
|
|
79
|
+
stringio (3.2.0)
|
|
80
|
+
test-unit (3.7.7)
|
|
67
81
|
power_assert
|
|
68
|
-
|
|
82
|
+
tsort (0.2.0)
|
|
83
|
+
unicode-display_width (3.2.0)
|
|
84
|
+
unicode-emoji (~> 4.1)
|
|
85
|
+
unicode-emoji (4.2.0)
|
|
69
86
|
|
|
70
87
|
PLATFORMS
|
|
88
|
+
arm64-darwin-25
|
|
71
89
|
ruby
|
|
72
90
|
|
|
73
91
|
DEPENDENCIES
|
|
74
92
|
attribool!
|
|
75
93
|
pry
|
|
76
94
|
rake (~> 13.0, >= 13.0.1)
|
|
95
|
+
rdoc
|
|
77
96
|
simplecov
|
|
78
97
|
standard
|
|
79
98
|
test-unit (~> 3.3, >= 3.3.5)
|
|
80
99
|
|
|
100
|
+
CHECKSUMS
|
|
101
|
+
ast (2.4.3) sha256=954615157c1d6a382bc27d690d973195e79db7f55e9765ac7c481c60bdb4d383
|
|
102
|
+
attribool (2.0.6)
|
|
103
|
+
coderay (1.1.3) sha256=dc530018a4684512f8f38143cd2a096c9f02a1fc2459edcfe534787a7fc77d4b
|
|
104
|
+
date (3.5.1) sha256=750d06384d7b9c15d562c76291407d89e368dda4d4fff957eb94962d325a0dc0
|
|
105
|
+
docile (1.4.1) sha256=96159be799bfa73cdb721b840e9802126e4e03dfc26863db73647204c727f21e
|
|
106
|
+
erb (6.0.2) sha256=9fe6264d44f79422c87490a1558479bd0e7dad4dd0e317656e67ea3077b5242b
|
|
107
|
+
io-console (0.8.2) sha256=d6e3ae7a7cc7574f4b8893b4fca2162e57a825b223a177b7afa236c5ef9814cc
|
|
108
|
+
json (2.19.3) sha256=289b0bb53052a1fa8c34ab33cc750b659ba14a5c45f3fcf4b18762dc67c78646
|
|
109
|
+
language_server-protocol (3.17.0.5) sha256=fd1e39a51a28bf3eec959379985a72e296e9f9acfce46f6a79d31ca8760803cc
|
|
110
|
+
lint_roller (1.1.0) sha256=2c0c845b632a7d172cb849cc90c1bce937a28c5c8ccccb50dfd46a485003cc87
|
|
111
|
+
method_source (1.1.0) sha256=181301c9c45b731b4769bc81e8860e72f9161ad7d66dd99103c9ab84f560f5c5
|
|
112
|
+
parallel (1.28.0) sha256=33e6de1484baf2524792d178b0913fc8eb94c628d6cfe45599ad4458c638c970
|
|
113
|
+
parser (3.3.11.1) sha256=d17ace7aabe3e72c3cc94043714be27cc6f852f104d81aa284c2281aecc65d54
|
|
114
|
+
power_assert (3.0.1) sha256=8ce9876716cc74e863fcd4cdcdc52d792bd983598d1af3447083a3a9a4d34103
|
|
115
|
+
prism (1.9.0) sha256=7b530c6a9f92c24300014919c9dcbc055bf4cdf51ec30aed099b06cd6674ef85
|
|
116
|
+
pry (0.16.0) sha256=d76c69065698ed1f85e717bd33d7942c38a50868f6b0673c636192b3d1b6054e
|
|
117
|
+
psych (5.3.1) sha256=eb7a57cef10c9d70173ff74e739d843ac3b2c019a003de48447b2963d81b1974
|
|
118
|
+
racc (1.8.1) sha256=4a7f6929691dbec8b5209a0b373bc2614882b55fc5d2e447a21aaa691303d62f
|
|
119
|
+
rainbow (3.1.1) sha256=039491aa3a89f42efa1d6dec2fc4e62ede96eb6acd95e52f1ad581182b79bc6a
|
|
120
|
+
rake (13.3.1) sha256=8c9e89d09f66a26a01264e7e3480ec0607f0c497a861ef16063604b1b08eb19c
|
|
121
|
+
rdoc (7.2.0) sha256=8650f76cd4009c3b54955eb5d7e3a075c60a57276766ebf36f9085e8c9f23192
|
|
122
|
+
regexp_parser (2.12.0) sha256=35a916a1d63190ab5c9009457136ae5f3c0c7512d60291d0d1378ba18ce08ebb
|
|
123
|
+
reline (0.6.3) sha256=1198b04973565b36ec0f11542ab3f5cfeeec34823f4e54cebde90968092b1835
|
|
124
|
+
rubocop (1.84.2) sha256=5692cea54168f3dc8cb79a6fe95c5424b7ea893c707ad7a4307b0585e88dbf5f
|
|
125
|
+
rubocop-ast (1.49.1) sha256=4412f3ee70f6fe4546cc489548e0f6fcf76cafcfa80fa03af67098ffed755035
|
|
126
|
+
rubocop-performance (1.26.1) sha256=cd19b936ff196df85829d264b522fd4f98b6c89ad271fa52744a8c11b8f71834
|
|
127
|
+
ruby-progressbar (1.13.0) sha256=80fc9c47a9b640d6834e0dc7b3c94c9df37f08cb072b7761e4a71e22cff29b33
|
|
128
|
+
simplecov (0.22.0) sha256=fe2622c7834ff23b98066bb0a854284b2729a569ac659f82621fc22ef36213a5
|
|
129
|
+
simplecov-html (0.13.2) sha256=bd0b8e54e7c2d7685927e8d6286466359b6f16b18cb0df47b508e8d73c777246
|
|
130
|
+
simplecov_json_formatter (0.1.4) sha256=529418fbe8de1713ac2b2d612aa3daa56d316975d307244399fa4838c601b428
|
|
131
|
+
standard (1.54.0) sha256=7a4b08f83d9893083c8f03bc486f0feeb6a84d48233b40829c03ef4767ea0100
|
|
132
|
+
standard-custom (1.0.2) sha256=424adc84179a074f1a2a309bb9cf7cd6bfdb2b6541f20c6bf9436c0ba22a652b
|
|
133
|
+
standard-performance (1.9.0) sha256=49483d31be448292951d80e5e67cdcb576c2502103c7b40aec6f1b6e9c88e3f2
|
|
134
|
+
stringio (3.2.0) sha256=c37cb2e58b4ffbd33fe5cd948c05934af997b36e0b6ca6fdf43afa234cf222e1
|
|
135
|
+
test-unit (3.7.7) sha256=3c89d5ff0690a16bef9946156c4624390402b9d54dfcf4ce9cbd5b06bead1e45
|
|
136
|
+
tsort (0.2.0) sha256=9650a793f6859a43b6641671278f79cfead60ac714148aabe4e3f0060480089f
|
|
137
|
+
unicode-display_width (3.2.0) sha256=0cdd96b5681a5949cdbc2c55e7b420facae74c4aaf9a9815eee1087cb1853c42
|
|
138
|
+
unicode-emoji (4.2.0) sha256=519e69150f75652e40bf736106cfbc8f0f73aa3fb6a65afe62fefa7f80b0f80f
|
|
139
|
+
|
|
81
140
|
BUNDLED WITH
|
|
82
|
-
|
|
141
|
+
4.0.9
|
data/attribool.gemspec
CHANGED
|
@@ -29,6 +29,7 @@ Gem::Specification.new do |spec|
|
|
|
29
29
|
spec.require_paths = ["lib"]
|
|
30
30
|
spec.add_development_dependency "pry"
|
|
31
31
|
spec.add_development_dependency "rake", "~> 13.0", ">= 13.0.1"
|
|
32
|
+
spec.add_development_dependency "rdoc"
|
|
32
33
|
spec.add_development_dependency "simplecov"
|
|
33
34
|
spec.add_development_dependency "standard"
|
|
34
35
|
spec.add_development_dependency "test-unit", "~> 3.3", ">= 3.3.5"
|
data/lib/attribool/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: attribool
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Evan Gray
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: pry
|
|
@@ -44,6 +43,20 @@ dependencies:
|
|
|
44
43
|
- - ">="
|
|
45
44
|
- !ruby/object:Gem::Version
|
|
46
45
|
version: 13.0.1
|
|
46
|
+
- !ruby/object:Gem::Dependency
|
|
47
|
+
name: rdoc
|
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
|
49
|
+
requirements:
|
|
50
|
+
- - ">="
|
|
51
|
+
- !ruby/object:Gem::Version
|
|
52
|
+
version: '0'
|
|
53
|
+
type: :development
|
|
54
|
+
prerelease: false
|
|
55
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
56
|
+
requirements:
|
|
57
|
+
- - ">="
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: '0'
|
|
47
60
|
- !ruby/object:Gem::Dependency
|
|
48
61
|
name: simplecov
|
|
49
62
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -128,7 +141,6 @@ metadata:
|
|
|
128
141
|
homepage_uri: https://github.com/evanthegrayt/attribool
|
|
129
142
|
source_code_uri: https://github.com/evanthegrayt/attribool
|
|
130
143
|
documentation_uri: https://evanthegrayt.github.io/attribool/
|
|
131
|
-
post_install_message:
|
|
132
144
|
rdoc_options: []
|
|
133
145
|
require_paths:
|
|
134
146
|
- lib
|
|
@@ -143,8 +155,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
143
155
|
- !ruby/object:Gem::Version
|
|
144
156
|
version: '0'
|
|
145
157
|
requirements: []
|
|
146
|
-
rubygems_version:
|
|
147
|
-
signing_key:
|
|
158
|
+
rubygems_version: 4.0.9
|
|
148
159
|
specification_version: 4
|
|
149
160
|
summary: Macros for creating boolean attribute methods
|
|
150
161
|
test_files: []
|