amaterasu 0.6.0 → 0.6.1
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/amaterasu.gemspec +31 -0
- data/exe/amaterasu +1 -1
- data/lib/amaterasu/version.rb +6 -0
- metadata +4 -7
- data/.gitignore +0 -14
- data/.rspec +0 -1
- data/.rubocop.yml +0 -54
- data/Gemfile +0 -32
- data/Gemfile.lock +0 -267
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 98aed6574c6f121b4d6e26758203feed8b7d1351faa31b26294ce305991f527a
|
|
4
|
+
data.tar.gz: 3ffd98a744ecd511eb48786fc2550baf4758fd25b297837ba5445671eceea4dc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: db9624cbe9895a451d119a020fb3b586d7497447d360d03800893e8f4f2164afe168451948b156196cc3b4de9fab55d884026c5f7b2abf080832514ed1450270
|
|
7
|
+
data.tar.gz: 7167951ce163ffc663c30086cc9215cabb1b9310850833ffc58c0c81996bbcfa7487305fdfcab4ef53824b0a33fe473009b9462e26b1a6660f3c08418d8791c8
|
data/amaterasu.gemspec
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require_relative 'lib/amaterasu/version'
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |spec|
|
|
6
|
+
spec.name = 'amaterasu'
|
|
7
|
+
spec.version = Amaterasu::VERSION
|
|
8
|
+
spec.authors = ['Fernando Eufrásio']
|
|
9
|
+
spec.summary = 'A cycle-accurate Game Boy emulator written in Ruby'
|
|
10
|
+
spec.homepage = 'https://github.com/nerdyshibe/amaterasu-rb'
|
|
11
|
+
spec.license = 'MIT'
|
|
12
|
+
|
|
13
|
+
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
|
|
14
|
+
spec.metadata['homepage_uri'] = spec.homepage
|
|
15
|
+
spec.metadata['source_code_uri'] = spec.homepage
|
|
16
|
+
# spec.metadata['changelog_uri'] = 'https://github.com/nerdyshibe/amaterasu/blob/main/CHANGELOG.md'
|
|
17
|
+
spec.metadata['rubygems_mfa_required'] = 'true'
|
|
18
|
+
|
|
19
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
|
20
|
+
f.match(%r{^(test|spec|features|bench|bin)/|^\.|^Gemfile|^Rakefile})
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
spec.bindir = 'exe'
|
|
24
|
+
spec.executables = ['amaterasu']
|
|
25
|
+
spec.require_paths = ['lib']
|
|
26
|
+
|
|
27
|
+
spec.add_dependency 'ffi', '>= 1.15.5'
|
|
28
|
+
spec.add_dependency 'zeitwerk', '>= 2.8.2'
|
|
29
|
+
|
|
30
|
+
spec.required_ruby_version = '>= 3.2.0'
|
|
31
|
+
end
|
data/exe/amaterasu
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: amaterasu
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Fernando Eufrásio
|
|
@@ -42,14 +42,10 @@ executables:
|
|
|
42
42
|
extensions: []
|
|
43
43
|
extra_rdoc_files: []
|
|
44
44
|
files:
|
|
45
|
-
- ".gitignore"
|
|
46
|
-
- ".rspec"
|
|
47
|
-
- ".rubocop.yml"
|
|
48
|
-
- Gemfile
|
|
49
|
-
- Gemfile.lock
|
|
50
45
|
- LICENSE
|
|
51
46
|
- README.md
|
|
52
47
|
- Steepfile
|
|
48
|
+
- amaterasu.gemspec
|
|
53
49
|
- exe/amaterasu
|
|
54
50
|
- lib/amaterasu.rb
|
|
55
51
|
- lib/amaterasu/cartridge.rb
|
|
@@ -133,6 +129,7 @@ files:
|
|
|
133
129
|
- lib/amaterasu/hal/sdl2.rb
|
|
134
130
|
- lib/amaterasu/hal/sdl2/bindings.rb
|
|
135
131
|
- lib/amaterasu/utils/bit_ops.rb
|
|
132
|
+
- lib/amaterasu/version.rb
|
|
136
133
|
- sig/akane.rbs
|
|
137
134
|
- sig/akane/cartridge.rbs
|
|
138
135
|
- sig/akane/cartridge/rom.rbs
|
|
@@ -220,7 +217,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
220
217
|
- !ruby/object:Gem::Version
|
|
221
218
|
version: '0'
|
|
222
219
|
requirements: []
|
|
223
|
-
rubygems_version: 4.0.
|
|
220
|
+
rubygems_version: 4.0.14
|
|
224
221
|
specification_version: 4
|
|
225
222
|
summary: A cycle-accurate Game Boy emulator written in Ruby
|
|
226
223
|
test_files: []
|
data/.gitignore
DELETED
data/.rspec
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
--require spec_helper
|
data/.rubocop.yml
DELETED
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
plugins:
|
|
2
|
-
- rubocop-performance
|
|
3
|
-
- rubocop-rspec
|
|
4
|
-
|
|
5
|
-
AllCops:
|
|
6
|
-
NewCops: enable
|
|
7
|
-
|
|
8
|
-
Metrics/AbcSize:
|
|
9
|
-
Enabled: false
|
|
10
|
-
|
|
11
|
-
Metrics/ClassLength:
|
|
12
|
-
Max: 120
|
|
13
|
-
|
|
14
|
-
Metrics/CyclomaticComplexity:
|
|
15
|
-
Max: 20
|
|
16
|
-
|
|
17
|
-
Metrics/MethodLength:
|
|
18
|
-
Max: 20
|
|
19
|
-
Exclude:
|
|
20
|
-
- 'lib/amaterasu/gameboy/bus.rb'
|
|
21
|
-
|
|
22
|
-
Metrics/ParameterLists:
|
|
23
|
-
Enabled: false
|
|
24
|
-
|
|
25
|
-
Metrics/PerceivedComplexity:
|
|
26
|
-
Max: 20
|
|
27
|
-
|
|
28
|
-
Naming/AccessorMethodName:
|
|
29
|
-
Enabled: false
|
|
30
|
-
|
|
31
|
-
RSpec/ExampleLength:
|
|
32
|
-
Max: 15
|
|
33
|
-
|
|
34
|
-
RSpec/NestedGroups:
|
|
35
|
-
Max: 4
|
|
36
|
-
|
|
37
|
-
RSpec/MultipleMemoizedHelpers:
|
|
38
|
-
Max: 10
|
|
39
|
-
|
|
40
|
-
Style/FrozenStringLiteralComment:
|
|
41
|
-
Enabled: true
|
|
42
|
-
EnforcedStyle: always
|
|
43
|
-
|
|
44
|
-
Style/ComparableBetween:
|
|
45
|
-
Enabled: false
|
|
46
|
-
|
|
47
|
-
Style/EmptyLiteral:
|
|
48
|
-
Enabled: false
|
|
49
|
-
|
|
50
|
-
Style/NumericPredicate:
|
|
51
|
-
Enabled: false
|
|
52
|
-
|
|
53
|
-
Style/BitwisePredicate:
|
|
54
|
-
Enabled: false
|
data/Gemfile
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
source 'https://rubygems.org'
|
|
4
|
-
|
|
5
|
-
ruby '4.0.3'
|
|
6
|
-
|
|
7
|
-
# gem 'curses'
|
|
8
|
-
# gem 'gosu'
|
|
9
|
-
# gem 'raylib-bindings'
|
|
10
|
-
|
|
11
|
-
gemspec
|
|
12
|
-
|
|
13
|
-
group :development do
|
|
14
|
-
gem 'benchmark-ips'
|
|
15
|
-
gem 'debug'
|
|
16
|
-
gem 'memory_profiler'
|
|
17
|
-
gem 'pastel'
|
|
18
|
-
gem 'rake'
|
|
19
|
-
gem 'rubocop'
|
|
20
|
-
gem 'rubocop-performance'
|
|
21
|
-
gem 'rubocop-rspec'
|
|
22
|
-
gem 'stackprof'
|
|
23
|
-
gem 'steep', require: false
|
|
24
|
-
gem 'vernier', require: false
|
|
25
|
-
gem 'yard', require: false
|
|
26
|
-
end
|
|
27
|
-
|
|
28
|
-
group :test do
|
|
29
|
-
gem 'rspec'
|
|
30
|
-
gem 'rspec-benchmark'
|
|
31
|
-
gem 'simplecov'
|
|
32
|
-
end
|
data/Gemfile.lock
DELETED
|
@@ -1,267 +0,0 @@
|
|
|
1
|
-
GEM
|
|
2
|
-
remote: https://rubygems.org/
|
|
3
|
-
specs:
|
|
4
|
-
ast (2.4.3)
|
|
5
|
-
benchmark-ips (2.14.0)
|
|
6
|
-
benchmark-malloc (0.2.0)
|
|
7
|
-
benchmark-perf (0.6.0)
|
|
8
|
-
benchmark-trend (0.4.0)
|
|
9
|
-
concurrent-ruby (1.3.6)
|
|
10
|
-
csv (3.3.5)
|
|
11
|
-
date (3.5.1)
|
|
12
|
-
debug (1.11.1)
|
|
13
|
-
irb (~> 1.10)
|
|
14
|
-
reline (>= 0.3.8)
|
|
15
|
-
diff-lcs (1.6.2)
|
|
16
|
-
docile (1.4.1)
|
|
17
|
-
erb (6.0.4)
|
|
18
|
-
ffi (1.17.4)
|
|
19
|
-
ffi (1.17.4-aarch64-linux-gnu)
|
|
20
|
-
ffi (1.17.4-aarch64-linux-musl)
|
|
21
|
-
ffi (1.17.4-arm-linux-gnu)
|
|
22
|
-
ffi (1.17.4-arm-linux-musl)
|
|
23
|
-
ffi (1.17.4-arm64-darwin)
|
|
24
|
-
ffi (1.17.4-x86-linux-gnu)
|
|
25
|
-
ffi (1.17.4-x86-linux-musl)
|
|
26
|
-
ffi (1.17.4-x86_64-darwin)
|
|
27
|
-
ffi (1.17.4-x86_64-linux-gnu)
|
|
28
|
-
ffi (1.17.4-x86_64-linux-musl)
|
|
29
|
-
fileutils (1.8.0)
|
|
30
|
-
io-console (0.8.2)
|
|
31
|
-
irb (1.18.0)
|
|
32
|
-
pp (>= 0.6.0)
|
|
33
|
-
prism (>= 1.3.0)
|
|
34
|
-
rdoc (>= 4.0.0)
|
|
35
|
-
reline (>= 0.4.2)
|
|
36
|
-
json (2.19.4)
|
|
37
|
-
language_server-protocol (3.17.0.5)
|
|
38
|
-
lint_roller (1.1.0)
|
|
39
|
-
listen (3.10.0)
|
|
40
|
-
logger
|
|
41
|
-
rb-fsevent (~> 0.10, >= 0.10.3)
|
|
42
|
-
rb-inotify (~> 0.9, >= 0.9.10)
|
|
43
|
-
logger (1.7.0)
|
|
44
|
-
memory_profiler (1.1.0)
|
|
45
|
-
parallel (2.1.0)
|
|
46
|
-
parser (3.3.11.1)
|
|
47
|
-
ast (~> 2.4.1)
|
|
48
|
-
racc
|
|
49
|
-
pastel (0.8.0)
|
|
50
|
-
tty-color (~> 0.5)
|
|
51
|
-
pp (0.6.3)
|
|
52
|
-
prettyprint
|
|
53
|
-
prettyprint (0.2.0)
|
|
54
|
-
prism (1.9.0)
|
|
55
|
-
psych (5.3.1)
|
|
56
|
-
date
|
|
57
|
-
stringio
|
|
58
|
-
racc (1.8.1)
|
|
59
|
-
rainbow (3.1.1)
|
|
60
|
-
rake (13.4.2)
|
|
61
|
-
rb-fsevent (0.11.2)
|
|
62
|
-
rb-inotify (0.11.1)
|
|
63
|
-
ffi (~> 1.0)
|
|
64
|
-
rbs (4.0.2)
|
|
65
|
-
logger
|
|
66
|
-
prism (>= 1.6.0)
|
|
67
|
-
tsort
|
|
68
|
-
rdoc (7.2.0)
|
|
69
|
-
erb
|
|
70
|
-
psych (>= 4.0.0)
|
|
71
|
-
tsort
|
|
72
|
-
regexp_parser (2.12.0)
|
|
73
|
-
reline (0.6.3)
|
|
74
|
-
io-console (~> 0.5)
|
|
75
|
-
rspec (3.13.2)
|
|
76
|
-
rspec-core (~> 3.13.0)
|
|
77
|
-
rspec-expectations (~> 3.13.0)
|
|
78
|
-
rspec-mocks (~> 3.13.0)
|
|
79
|
-
rspec-benchmark (0.6.0)
|
|
80
|
-
benchmark-malloc (~> 0.2)
|
|
81
|
-
benchmark-perf (~> 0.6)
|
|
82
|
-
benchmark-trend (~> 0.4)
|
|
83
|
-
rspec (>= 3.0)
|
|
84
|
-
rspec-core (3.13.6)
|
|
85
|
-
rspec-support (~> 3.13.0)
|
|
86
|
-
rspec-expectations (3.13.5)
|
|
87
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
88
|
-
rspec-support (~> 3.13.0)
|
|
89
|
-
rspec-mocks (3.13.8)
|
|
90
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
91
|
-
rspec-support (~> 3.13.0)
|
|
92
|
-
rspec-support (3.13.7)
|
|
93
|
-
rubocop (1.86.1)
|
|
94
|
-
json (~> 2.3)
|
|
95
|
-
language_server-protocol (~> 3.17.0.2)
|
|
96
|
-
lint_roller (~> 1.1.0)
|
|
97
|
-
parallel (>= 1.10)
|
|
98
|
-
parser (>= 3.3.0.2)
|
|
99
|
-
rainbow (>= 2.2.2, < 4.0)
|
|
100
|
-
regexp_parser (>= 2.9.3, < 3.0)
|
|
101
|
-
rubocop-ast (>= 1.49.0, < 2.0)
|
|
102
|
-
ruby-progressbar (~> 1.7)
|
|
103
|
-
unicode-display_width (>= 2.4.0, < 4.0)
|
|
104
|
-
rubocop-ast (1.49.1)
|
|
105
|
-
parser (>= 3.3.7.2)
|
|
106
|
-
prism (~> 1.7)
|
|
107
|
-
rubocop-performance (1.26.1)
|
|
108
|
-
lint_roller (~> 1.1)
|
|
109
|
-
rubocop (>= 1.75.0, < 2.0)
|
|
110
|
-
rubocop-ast (>= 1.47.1, < 2.0)
|
|
111
|
-
rubocop-rspec (3.9.0)
|
|
112
|
-
lint_roller (~> 1.1)
|
|
113
|
-
rubocop (~> 1.81)
|
|
114
|
-
ruby-progressbar (1.13.0)
|
|
115
|
-
securerandom (0.4.1)
|
|
116
|
-
simplecov (0.22.0)
|
|
117
|
-
docile (~> 1.1)
|
|
118
|
-
simplecov-html (~> 0.11)
|
|
119
|
-
simplecov_json_formatter (~> 0.1)
|
|
120
|
-
simplecov-html (0.13.2)
|
|
121
|
-
simplecov_json_formatter (0.1.4)
|
|
122
|
-
stackprof (0.2.28)
|
|
123
|
-
steep (2.0.0)
|
|
124
|
-
concurrent-ruby (>= 1.1.10)
|
|
125
|
-
csv (>= 3.0.9)
|
|
126
|
-
fileutils (>= 1.1.0)
|
|
127
|
-
json (>= 2.1.0)
|
|
128
|
-
language_server-protocol (>= 3.17.0.4, < 4.0)
|
|
129
|
-
listen (~> 3.0)
|
|
130
|
-
logger (>= 1.3.0)
|
|
131
|
-
parser (>= 3.2)
|
|
132
|
-
prism (>= 0.25.0)
|
|
133
|
-
rainbow (>= 2.2.2, < 4.0)
|
|
134
|
-
rbs (~> 4.0)
|
|
135
|
-
securerandom (>= 0.1)
|
|
136
|
-
strscan (>= 1.0.0)
|
|
137
|
-
terminal-table (>= 2, < 5)
|
|
138
|
-
uri (>= 0.12.0)
|
|
139
|
-
stringio (3.2.0)
|
|
140
|
-
strscan (3.1.8)
|
|
141
|
-
terminal-table (4.0.0)
|
|
142
|
-
unicode-display_width (>= 1.1.1, < 4)
|
|
143
|
-
tsort (0.2.0)
|
|
144
|
-
tty-color (0.6.0)
|
|
145
|
-
unicode-display_width (3.2.0)
|
|
146
|
-
unicode-emoji (~> 4.1)
|
|
147
|
-
unicode-emoji (4.2.0)
|
|
148
|
-
uri (1.1.1)
|
|
149
|
-
vernier (1.10.0)
|
|
150
|
-
yard (0.9.43)
|
|
151
|
-
zeitwerk (2.8.2)
|
|
152
|
-
|
|
153
|
-
PLATFORMS
|
|
154
|
-
aarch64-linux-gnu
|
|
155
|
-
aarch64-linux-musl
|
|
156
|
-
arm-linux-gnu
|
|
157
|
-
arm-linux-musl
|
|
158
|
-
arm64-darwin
|
|
159
|
-
ruby
|
|
160
|
-
x86-linux-gnu
|
|
161
|
-
x86-linux-musl
|
|
162
|
-
x86_64-darwin
|
|
163
|
-
x86_64-linux-gnu
|
|
164
|
-
x86_64-linux-musl
|
|
165
|
-
|
|
166
|
-
DEPENDENCIES
|
|
167
|
-
benchmark-ips
|
|
168
|
-
debug
|
|
169
|
-
ffi
|
|
170
|
-
memory_profiler
|
|
171
|
-
pastel
|
|
172
|
-
rake
|
|
173
|
-
rspec
|
|
174
|
-
rspec-benchmark
|
|
175
|
-
rubocop
|
|
176
|
-
rubocop-performance
|
|
177
|
-
rubocop-rspec
|
|
178
|
-
simplecov
|
|
179
|
-
stackprof
|
|
180
|
-
steep
|
|
181
|
-
vernier
|
|
182
|
-
yard
|
|
183
|
-
zeitwerk
|
|
184
|
-
|
|
185
|
-
CHECKSUMS
|
|
186
|
-
ast (2.4.3) sha256=954615157c1d6a382bc27d690d973195e79db7f55e9765ac7c481c60bdb4d383
|
|
187
|
-
benchmark-ips (2.14.0) sha256=b72bc8a65d525d5906f8cd94270dccf73452ee3257a32b89fbd6684d3e8a9b1d
|
|
188
|
-
benchmark-malloc (0.2.0) sha256=37c68f0435261634026f584d79956a35325a3027e3e6b4cc8d7575aa10537e6b
|
|
189
|
-
benchmark-perf (0.6.0) sha256=fe2b01959f3de0f9dd34820d54ef881eb4f3589fccb7d17b63068ac92d7f9621
|
|
190
|
-
benchmark-trend (0.4.0) sha256=de5a02a9f443babefbbd97784759820decee8554a0c273d859c02a0990845d81
|
|
191
|
-
concurrent-ruby (1.3.6) sha256=6b56837e1e7e5292f9864f34b69c5a2cbc75c0cf5338f1ce9903d10fa762d5ab
|
|
192
|
-
csv (3.3.5) sha256=6e5134ac3383ef728b7f02725d9872934f523cb40b961479f69cf3afa6c8e73f
|
|
193
|
-
date (3.5.1) sha256=750d06384d7b9c15d562c76291407d89e368dda4d4fff957eb94962d325a0dc0
|
|
194
|
-
debug (1.11.1) sha256=2e0b0ac6119f2207a6f8ac7d4a73ca8eb4e440f64da0a3136c30343146e952b6
|
|
195
|
-
diff-lcs (1.6.2) sha256=9ae0d2cba7d4df3075fe8cd8602a8604993efc0dfa934cff568969efb1909962
|
|
196
|
-
docile (1.4.1) sha256=96159be799bfa73cdb721b840e9802126e4e03dfc26863db73647204c727f21e
|
|
197
|
-
erb (6.0.4) sha256=38e3803694be357fe2bfe312487c74beaf9fb4e5beb3e22498952fe1645b95d9
|
|
198
|
-
ffi (1.17.4) sha256=bcd1642e06f0d16fc9e09ac6d49c3a7298b9789bcb58127302f934e437d60acf
|
|
199
|
-
ffi (1.17.4-aarch64-linux-gnu) sha256=b208f06f91ffd8f5e1193da3cae3d2ccfc27fc36fba577baf698d26d91c080df
|
|
200
|
-
ffi (1.17.4-aarch64-linux-musl) sha256=9286b7a615f2676245283aef0a0a3b475ae3aae2bb5448baace630bb77b91f39
|
|
201
|
-
ffi (1.17.4-arm-linux-gnu) sha256=d6dbddf7cb77bf955411af5f187a65b8cd378cb003c15c05697f5feee1cb1564
|
|
202
|
-
ffi (1.17.4-arm-linux-musl) sha256=9d4838ded0465bef6e2426935f6bcc93134b6616785a84ffd2a3d82bc3cf6f95
|
|
203
|
-
ffi (1.17.4-arm64-darwin) sha256=19071aaf1419251b0a46852abf960e77330a3b334d13a4ab51d58b31a937001b
|
|
204
|
-
ffi (1.17.4-x86-linux-gnu) sha256=38e150df5f4ca555e25beca4090823ae09657bceded154e3c52f8631c1ed72cf
|
|
205
|
-
ffi (1.17.4-x86-linux-musl) sha256=fbeec0fc7c795bcf86f623bb18d31ea1820f7bd580e1703a3d3740d527437809
|
|
206
|
-
ffi (1.17.4-x86_64-darwin) sha256=aa70390523cf3235096cf64962b709b4cfbd5c082a2cb2ae714eb0fe2ccda496
|
|
207
|
-
ffi (1.17.4-x86_64-linux-gnu) sha256=9d3db14c2eae074b382fa9c083fe95aec6e0a1451da249eab096c34002bc752d
|
|
208
|
-
ffi (1.17.4-x86_64-linux-musl) sha256=3fdf9888483de005f8ef8d1cf2d3b20d86626af206cbf780f6a6a12439a9c49e
|
|
209
|
-
fileutils (1.8.0) sha256=8c6b1df54e2540bdb2f39258f08af78853aa70bad52b4d394bbc6424593c6e02
|
|
210
|
-
io-console (0.8.2) sha256=d6e3ae7a7cc7574f4b8893b4fca2162e57a825b223a177b7afa236c5ef9814cc
|
|
211
|
-
irb (1.18.0) sha256=de9454a0703a54704b9811a5ef31a60c86949fbf4013fcf244fabc7c775248e3
|
|
212
|
-
json (2.19.4) sha256=670a7d333fb3b18ca5b29cb255eb7bef099e40d88c02c80bd42a3f30fe5239ac
|
|
213
|
-
language_server-protocol (3.17.0.5) sha256=fd1e39a51a28bf3eec959379985a72e296e9f9acfce46f6a79d31ca8760803cc
|
|
214
|
-
lint_roller (1.1.0) sha256=2c0c845b632a7d172cb849cc90c1bce937a28c5c8ccccb50dfd46a485003cc87
|
|
215
|
-
listen (3.10.0) sha256=c6e182db62143aeccc2e1960033bebe7445309c7272061979bb098d03760c9d2
|
|
216
|
-
logger (1.7.0) sha256=196edec7cc44b66cfb40f9755ce11b392f21f7967696af15d274dde7edff0203
|
|
217
|
-
memory_profiler (1.1.0) sha256=79a17df7980a140c83c469785905409d3027ca614c42c086089d128b805aa8f8
|
|
218
|
-
parallel (2.1.0) sha256=b35258865c2e31134c5ecb708beaaf6772adf9d5efae28e93e99260877b09356
|
|
219
|
-
parser (3.3.11.1) sha256=d17ace7aabe3e72c3cc94043714be27cc6f852f104d81aa284c2281aecc65d54
|
|
220
|
-
pastel (0.8.0) sha256=481da9fb7d2f6e6b1a08faf11fa10363172dc40fd47848f096ae21209f805a75
|
|
221
|
-
pp (0.6.3) sha256=2951d514450b93ccfeb1df7d021cae0da16e0a7f95ee1e2273719669d0ab9df6
|
|
222
|
-
prettyprint (0.2.0) sha256=2bc9e15581a94742064a3cc8b0fb9d45aae3d03a1baa6ef80922627a0766f193
|
|
223
|
-
prism (1.9.0) sha256=7b530c6a9f92c24300014919c9dcbc055bf4cdf51ec30aed099b06cd6674ef85
|
|
224
|
-
psych (5.3.1) sha256=eb7a57cef10c9d70173ff74e739d843ac3b2c019a003de48447b2963d81b1974
|
|
225
|
-
racc (1.8.1) sha256=4a7f6929691dbec8b5209a0b373bc2614882b55fc5d2e447a21aaa691303d62f
|
|
226
|
-
rainbow (3.1.1) sha256=039491aa3a89f42efa1d6dec2fc4e62ede96eb6acd95e52f1ad581182b79bc6a
|
|
227
|
-
rake (13.4.2) sha256=cb825b2bd5f1f8e91ca37bddb4b9aaf345551b4731da62949be002fa89283701
|
|
228
|
-
rb-fsevent (0.11.2) sha256=43900b972e7301d6570f64b850a5aa67833ee7d87b458ee92805d56b7318aefe
|
|
229
|
-
rb-inotify (0.11.1) sha256=a0a700441239b0ff18eb65e3866236cd78613d6b9f78fea1f9ac47a85e47be6e
|
|
230
|
-
rbs (4.0.2) sha256=af75671e66cd03434cc546622741ebf83f6197ec4328375805306330bf78ef25
|
|
231
|
-
rdoc (7.2.0) sha256=8650f76cd4009c3b54955eb5d7e3a075c60a57276766ebf36f9085e8c9f23192
|
|
232
|
-
regexp_parser (2.12.0) sha256=35a916a1d63190ab5c9009457136ae5f3c0c7512d60291d0d1378ba18ce08ebb
|
|
233
|
-
reline (0.6.3) sha256=1198b04973565b36ec0f11542ab3f5cfeeec34823f4e54cebde90968092b1835
|
|
234
|
-
rspec (3.13.2) sha256=206284a08ad798e61f86d7ca3e376718d52c0bc944626b2349266f239f820587
|
|
235
|
-
rspec-benchmark (0.6.0) sha256=1014adb57ec2599a2455c63884229f367a2fff6a63a77fd68ce5d804c83dd6cf
|
|
236
|
-
rspec-core (3.13.6) sha256=a8823c6411667b60a8bca135364351dda34cd55e44ff94c4be4633b37d828b2d
|
|
237
|
-
rspec-expectations (3.13.5) sha256=33a4d3a1d95060aea4c94e9f237030a8f9eae5615e9bd85718fe3a09e4b58836
|
|
238
|
-
rspec-mocks (3.13.8) sha256=086ad3d3d17533f4237643de0b5c42f04b66348c28bf6b9c2d3f4a3b01af1d47
|
|
239
|
-
rspec-support (3.13.7) sha256=0640e5570872aafefd79867901deeeeb40b0c9875a36b983d85f54fb7381c47c
|
|
240
|
-
rubocop (1.86.1) sha256=44415f3f01d01a21e01132248d2fd0867572475b566ca188a0a42133a08d4531
|
|
241
|
-
rubocop-ast (1.49.1) sha256=4412f3ee70f6fe4546cc489548e0f6fcf76cafcfa80fa03af67098ffed755035
|
|
242
|
-
rubocop-performance (1.26.1) sha256=cd19b936ff196df85829d264b522fd4f98b6c89ad271fa52744a8c11b8f71834
|
|
243
|
-
rubocop-rspec (3.9.0) sha256=8fa70a3619408237d789aeecfb9beef40576acc855173e60939d63332fdb55e2
|
|
244
|
-
ruby-progressbar (1.13.0) sha256=80fc9c47a9b640d6834e0dc7b3c94c9df37f08cb072b7761e4a71e22cff29b33
|
|
245
|
-
securerandom (0.4.1) sha256=cc5193d414a4341b6e225f0cb4446aceca8e50d5e1888743fac16987638ea0b1
|
|
246
|
-
simplecov (0.22.0) sha256=fe2622c7834ff23b98066bb0a854284b2729a569ac659f82621fc22ef36213a5
|
|
247
|
-
simplecov-html (0.13.2) sha256=bd0b8e54e7c2d7685927e8d6286466359b6f16b18cb0df47b508e8d73c777246
|
|
248
|
-
simplecov_json_formatter (0.1.4) sha256=529418fbe8de1713ac2b2d612aa3daa56d316975d307244399fa4838c601b428
|
|
249
|
-
stackprof (0.2.28) sha256=4ec2ace02f386012b40ca20ef80c030ad711831f59511da12e83b34efb0f9a04
|
|
250
|
-
steep (2.0.0) sha256=6eb0ecc09637bbb54f0a5f2cf63daea6d3208ccace64b4f1107d976333605c30
|
|
251
|
-
stringio (3.2.0) sha256=c37cb2e58b4ffbd33fe5cd948c05934af997b36e0b6ca6fdf43afa234cf222e1
|
|
252
|
-
strscan (3.1.8) sha256=aae2db611a225559f21ffbb71765c9a4e60fd262534a9ea84f4f11c7f32f679e
|
|
253
|
-
terminal-table (4.0.0) sha256=f504793203f8251b2ea7c7068333053f0beeea26093ec9962e62ea79f94301d2
|
|
254
|
-
tsort (0.2.0) sha256=9650a793f6859a43b6641671278f79cfead60ac714148aabe4e3f0060480089f
|
|
255
|
-
tty-color (0.6.0) sha256=6f9c37ca3a4e2367fb2e6d09722762647d6f455c111f05b59f35730eeb24332a
|
|
256
|
-
unicode-display_width (3.2.0) sha256=0cdd96b5681a5949cdbc2c55e7b420facae74c4aaf9a9815eee1087cb1853c42
|
|
257
|
-
unicode-emoji (4.2.0) sha256=519e69150f75652e40bf736106cfbc8f0f73aa3fb6a65afe62fefa7f80b0f80f
|
|
258
|
-
uri (1.1.1) sha256=379fa58d27ffb1387eaada68c749d1426738bd0f654d812fcc07e7568f5c57c6
|
|
259
|
-
vernier (1.10.0) sha256=5b1dc57012e08ed23e14f4d2943540140d454aa8434c7c35e7eb97befd4969bf
|
|
260
|
-
yard (0.9.43) sha256=cf8733a8f0485df2a162927e9b5f182215a61f6d22de096b8f402c726a1c5821
|
|
261
|
-
zeitwerk (2.8.2) sha256=7212a61311083c604184b1ea2574b9aa05cd14f855a0841c06985cabe9181d12
|
|
262
|
-
|
|
263
|
-
RUBY VERSION
|
|
264
|
-
ruby 4.0.3
|
|
265
|
-
|
|
266
|
-
BUNDLED WITH
|
|
267
|
-
4.0.6
|