bullion 0.7.3 → 0.9.0
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/ci.yml +54 -0
- data/.github/workflows/release.yml +33 -0
- data/.release-please-manifest.json +3 -0
- data/.rubocop.yml +4 -7
- data/.ruby-version +1 -1
- data/CHANGELOG.md +23 -0
- data/Dockerfile +6 -4
- data/Gemfile.lock +145 -114
- data/Itsi.rb +123 -0
- data/Rakefile +8 -5
- data/bullion.gemspec +5 -4
- data/config.ru +0 -2
- data/db/schema.rb +1 -1
- data/lib/bullion/challenge_client.rb +5 -1
- data/lib/bullion/challenge_clients/dns.rb +1 -1
- data/lib/bullion/challenge_clients/http.rb +1 -1
- data/lib/bullion/helpers/acme.rb +9 -9
- data/lib/bullion/helpers/ssl.rb +1 -6
- data/lib/bullion/models/authorization.rb +9 -0
- data/lib/bullion/models/certificate.rb +2 -0
- data/lib/bullion/models/challenge.rb +8 -1
- data/lib/bullion/models/order.rb +11 -3
- data/lib/bullion/models/order_csr.rb +36 -0
- data/lib/bullion/models.rb +3 -0
- data/lib/bullion/services/ca.rb +17 -22
- data/lib/bullion/version.rb +1 -5
- data/lib/bullion.rb +7 -6
- data/release-please-config.json +15 -0
- metadata +43 -27
- data/.roxanne.yml +0 -20
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 492f8a3bde7d33dbbea336746adb4c37e479cef37f3057818090a7f1603d72db
|
4
|
+
data.tar.gz: 1bb02e31080caef0cb917ac178605f65fb33aa40f8c0790d970c3902e7990b5e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 553bc8beb6536fd32b0ca0ac43ea86031747e0758c2c819f38c5e4243664091f6d3509b721d1207ac7596a1d668ba6483e57dbda3f4190d47c4260cc2bdf6ee1
|
7
|
+
data.tar.gz: a24b70400af69f84513725fdeb28a6365660509c796704dabffc9cb68e44d3288fe6b757e4bdf5d9231d45a48a04b11542ac6517c010275c49d7a9651d81f7f3
|
@@ -0,0 +1,54 @@
|
|
1
|
+
name: CI
|
2
|
+
|
3
|
+
on:
|
4
|
+
pull_request:
|
5
|
+
|
6
|
+
jobs:
|
7
|
+
lint:
|
8
|
+
runs-on: ubuntu-latest
|
9
|
+
steps:
|
10
|
+
- name: Checkout code
|
11
|
+
uses: actions/checkout@v4
|
12
|
+
|
13
|
+
- name: Set up Ruby
|
14
|
+
uses: ruby/setup-ruby@v1
|
15
|
+
with:
|
16
|
+
ruby-version: .ruby-version
|
17
|
+
bundler-cache: true
|
18
|
+
|
19
|
+
- name: Lint code for consistent style
|
20
|
+
run: bundle exec rubocop -f github
|
21
|
+
|
22
|
+
yard:
|
23
|
+
runs-on: ubuntu-latest
|
24
|
+
steps:
|
25
|
+
- name: Checkout code
|
26
|
+
uses: actions/checkout@v4
|
27
|
+
|
28
|
+
- name: Set up Ruby
|
29
|
+
uses: ruby/setup-ruby@v1
|
30
|
+
with:
|
31
|
+
ruby-version: .ruby-version
|
32
|
+
bundler-cache: true
|
33
|
+
|
34
|
+
- name: Generate YARD documentation
|
35
|
+
run: bundle exec rake yard
|
36
|
+
|
37
|
+
test:
|
38
|
+
runs-on: ubuntu-latest
|
39
|
+
strategy:
|
40
|
+
matrix:
|
41
|
+
ruby-version: ['3.4']
|
42
|
+
|
43
|
+
steps:
|
44
|
+
- name: Checkout code
|
45
|
+
uses: actions/checkout@v4
|
46
|
+
|
47
|
+
- name: Set up Ruby
|
48
|
+
uses: ruby/setup-ruby@v1
|
49
|
+
with:
|
50
|
+
ruby-version: ${{ matrix.ruby-version }}
|
51
|
+
bundler-cache: true
|
52
|
+
|
53
|
+
- name: Run tests
|
54
|
+
run: bundle exec rake test
|
@@ -0,0 +1,33 @@
|
|
1
|
+
name: Release
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches: [ "main" ]
|
6
|
+
|
7
|
+
permissions:
|
8
|
+
contents: write
|
9
|
+
id-token: write
|
10
|
+
pull-requests: write
|
11
|
+
|
12
|
+
jobs:
|
13
|
+
release:
|
14
|
+
runs-on: ubuntu-latest
|
15
|
+
steps:
|
16
|
+
|
17
|
+
- uses: actions/checkout@v4
|
18
|
+
|
19
|
+
## Here's the new step for release-please
|
20
|
+
- uses: googleapis/release-please-action@v4
|
21
|
+
id: release
|
22
|
+
with:
|
23
|
+
token: ${{ secrets.AUTO_RELEASE_TOKEN }}
|
24
|
+
|
25
|
+
- name: Set up Ruby
|
26
|
+
uses: ruby/setup-ruby@v1
|
27
|
+
if: ${{ steps.release.outputs.release_created }}
|
28
|
+
with:
|
29
|
+
bundler-cache: true
|
30
|
+
ruby-version: .ruby-version
|
31
|
+
|
32
|
+
- uses: rubygems/release-gem@v1
|
33
|
+
if: ${{ steps.release.outputs.release_created }}
|
data/.rubocop.yml
CHANGED
@@ -1,5 +1,4 @@
|
|
1
|
-
|
2
|
-
require:
|
1
|
+
plugins:
|
3
2
|
- rubocop-rake
|
4
3
|
- rubocop-rspec
|
5
4
|
|
@@ -7,10 +6,12 @@ Layout/LineLength:
|
|
7
6
|
Max: 100
|
8
7
|
|
9
8
|
AllCops:
|
9
|
+
TargetRubyVersion: 3.4
|
10
10
|
Exclude:
|
11
11
|
- 'db/schema.rb'
|
12
12
|
- 'vendor/**/*'
|
13
|
-
|
13
|
+
- 'tmp/**/*'
|
14
|
+
- Itsi.rb
|
14
15
|
NewCops: enable
|
15
16
|
|
16
17
|
Metrics/AbcSize:
|
@@ -61,10 +62,6 @@ RSpec/NamedSubject:
|
|
61
62
|
RSpec/BeforeAfterAll:
|
62
63
|
Enabled: false
|
63
64
|
|
64
|
-
RSpec/FilePath:
|
65
|
-
Exclude:
|
66
|
-
- "spec/integration/**/*_spec.rb"
|
67
|
-
|
68
65
|
RSpec/InstanceVariable:
|
69
66
|
Enabled: false
|
70
67
|
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.
|
1
|
+
3.4.4
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
## [0.9.0](https://github.com/jgnagy/bullion/compare/bullion/v0.8.0...bullion/v0.9.0) (2025-07-05)
|
4
|
+
|
5
|
+
|
6
|
+
### ⚠ BREAKING CHANGES
|
7
|
+
|
8
|
+
* full ruby and dependency upgrade
|
9
|
+
|
10
|
+
### Miscellaneous Chores
|
11
|
+
|
12
|
+
* full ruby and dependency upgrade ([7625208](https://github.com/jgnagy/bullion/commit/7625208b1c4fa6b1acb5a0c9e7362001d66e4e08))
|
13
|
+
|
14
|
+
## [0.8.0](https://github.com/jgnagy/bullion/compare/bullion-v0.7.3...bullion/v0.8.0) (2025-03-13)
|
15
|
+
|
16
|
+
|
17
|
+
### ⚠ BREAKING CHANGES
|
18
|
+
|
19
|
+
* **deps:** require ruby 3.3+
|
20
|
+
|
21
|
+
### Miscellaneous Chores
|
22
|
+
|
23
|
+
* **deps:** require ruby 3.3+ ([2cbbf69](https://github.com/jgnagy/bullion/commit/2cbbf69b0cdb024ea800d88cfc683437cdc9e5da))
|
data/Dockerfile
CHANGED
@@ -1,10 +1,10 @@
|
|
1
|
-
FROM ruby:3.
|
1
|
+
FROM ruby:3.4.4 AS build
|
2
2
|
|
3
3
|
ENV RACK_ENV=development
|
4
4
|
|
5
5
|
COPY . /build
|
6
6
|
|
7
|
-
RUN apt-get update && apt-get upgrade -y && apt-get install -y libsqlite3-dev sqlite3 curl libsodium-dev
|
7
|
+
RUN apt-get update && apt-get upgrade -y && apt-get install -y libsqlite3-dev sqlite3 curl libsodium-dev build-essential libclang-dev
|
8
8
|
|
9
9
|
RUN cd /build \
|
10
10
|
&& gem build bullion.gemspec \
|
@@ -12,14 +12,14 @@ RUN cd /build \
|
|
12
12
|
|
13
13
|
WORKDIR /build
|
14
14
|
|
15
|
-
FROM ruby:3.
|
15
|
+
FROM ruby:3.4.4
|
16
16
|
LABEL maintainer="Jonathan Gnagy <jonathan.gnagy@gmail.com>"
|
17
17
|
|
18
18
|
ENV BULLION_PORT=9292
|
19
19
|
ENV BULLION_ENVIRONMENT=development
|
20
20
|
ENV DATABASE_URL=sqlite3:///tmp/bullion.db
|
21
21
|
|
22
|
-
RUN apt-get update && apt-get upgrade -y && apt-get -y install libsqlite3-dev sqlite3 curl libsodium-dev
|
22
|
+
RUN apt-get update && apt-get upgrade -y && apt-get -y install libsqlite3-dev sqlite3 curl libsodium-dev build-essential libclang-dev
|
23
23
|
|
24
24
|
RUN mkdir /app
|
25
25
|
|
@@ -42,4 +42,6 @@ RUN gem install bullion.gem
|
|
42
42
|
|
43
43
|
USER nobody
|
44
44
|
|
45
|
+
EXPOSE 9292
|
46
|
+
|
45
47
|
ENTRYPOINT ["/entrypoint.sh"]
|
data/Gemfile.lock
CHANGED
@@ -1,34 +1,37 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
bullion (0.
|
4
|
+
bullion (0.9.0)
|
5
|
+
benchmark (~> 0.4)
|
5
6
|
dry-configurable (~> 1.1)
|
6
7
|
httparty (~> 0.21)
|
8
|
+
itsi (~> 0.2)
|
7
9
|
json (~> 2.6)
|
8
10
|
jwt (~> 2.7)
|
9
11
|
mysql2 (~> 0.5)
|
10
12
|
openssl (~> 3.0)
|
11
13
|
prometheus-client (~> 4.2)
|
12
|
-
puma (~> 6.4)
|
13
14
|
sinatra (~> 3.1)
|
14
15
|
sinatra-activerecord (~> 2.0)
|
15
16
|
sinatra-contrib (~> 3.1)
|
16
|
-
sqlite3 (~>
|
17
|
+
sqlite3 (~> 2.7)
|
17
18
|
|
18
19
|
GEM
|
19
20
|
remote: https://rubygems.org/
|
20
21
|
specs:
|
21
|
-
acme-client (2.0.
|
22
|
+
acme-client (2.0.22)
|
23
|
+
base64 (~> 0.2)
|
22
24
|
faraday (>= 1.0, < 3.0.0)
|
23
25
|
faraday-retry (>= 1.0, < 3.0.0)
|
24
|
-
activemodel (
|
25
|
-
activesupport (=
|
26
|
-
activerecord (
|
27
|
-
activemodel (=
|
28
|
-
activesupport (=
|
26
|
+
activemodel (8.0.2)
|
27
|
+
activesupport (= 8.0.2)
|
28
|
+
activerecord (8.0.2)
|
29
|
+
activemodel (= 8.0.2)
|
30
|
+
activesupport (= 8.0.2)
|
29
31
|
timeout (>= 0.4.0)
|
30
|
-
activesupport (
|
32
|
+
activesupport (8.0.2)
|
31
33
|
base64
|
34
|
+
benchmark (>= 0.3)
|
32
35
|
bigdecimal
|
33
36
|
concurrent-ruby (~> 1.0, >= 1.3.1)
|
34
37
|
connection_pool (>= 2.2.5)
|
@@ -38,137 +41,151 @@ GEM
|
|
38
41
|
minitest (>= 5.1)
|
39
42
|
securerandom (>= 0.3)
|
40
43
|
tzinfo (~> 2.0, >= 2.0.5)
|
41
|
-
|
44
|
+
uri (>= 0.13.1)
|
45
|
+
ast (2.4.3)
|
42
46
|
backport (1.2.0)
|
43
|
-
base64 (0.
|
44
|
-
benchmark (0.
|
45
|
-
bigdecimal (3.
|
47
|
+
base64 (0.3.0)
|
48
|
+
benchmark (0.4.1)
|
49
|
+
bigdecimal (3.2.2)
|
46
50
|
byebug (11.1.3)
|
47
|
-
concurrent-ruby (1.3.
|
48
|
-
connection_pool (2.
|
49
|
-
csv (3.3.
|
50
|
-
diff-lcs (1.
|
51
|
+
concurrent-ruby (1.3.5)
|
52
|
+
connection_pool (2.5.3)
|
53
|
+
csv (3.3.5)
|
54
|
+
diff-lcs (1.6.2)
|
51
55
|
docile (1.4.1)
|
52
|
-
drb (2.2.
|
53
|
-
dry-configurable (1.
|
54
|
-
dry-core (~> 1.
|
56
|
+
drb (2.2.3)
|
57
|
+
dry-configurable (1.3.0)
|
58
|
+
dry-core (~> 1.1)
|
55
59
|
zeitwerk (~> 2.6)
|
56
|
-
dry-core (1.0
|
60
|
+
dry-core (1.1.0)
|
57
61
|
concurrent-ruby (~> 1.0)
|
62
|
+
logger
|
58
63
|
zeitwerk (~> 2.6)
|
59
|
-
|
60
|
-
|
61
|
-
|
64
|
+
faraday (2.13.2)
|
65
|
+
faraday-net_http (>= 2.0, < 3.5)
|
66
|
+
json
|
62
67
|
logger
|
63
|
-
faraday-net_http (3.
|
64
|
-
net-http
|
65
|
-
faraday-retry (2.2
|
68
|
+
faraday-net_http (3.4.1)
|
69
|
+
net-http (>= 0.5.0)
|
70
|
+
faraday-retry (2.3.2)
|
66
71
|
faraday (~> 2.0)
|
67
|
-
httparty (0.
|
72
|
+
httparty (0.23.1)
|
68
73
|
csv
|
69
74
|
mini_mime (>= 1.0.0)
|
70
75
|
multi_xml (>= 0.5.2)
|
71
|
-
i18n (1.14.
|
76
|
+
i18n (1.14.7)
|
72
77
|
concurrent-ruby (~> 1.0)
|
73
|
-
|
74
|
-
|
75
|
-
|
78
|
+
itsi (0.2.18)
|
79
|
+
itsi-scheduler (~> 0.2.18)
|
80
|
+
itsi-server (~> 0.2.18)
|
81
|
+
itsi-scheduler (0.2.18)
|
82
|
+
rb_sys (~> 0.9.91)
|
83
|
+
itsi-server (0.2.18)
|
84
|
+
json (~> 2)
|
85
|
+
prism (~> 1.4)
|
86
|
+
rack (>= 1.6)
|
87
|
+
rb_sys (~> 0.9.91)
|
88
|
+
jaro_winkler (1.6.1)
|
89
|
+
json (2.12.2)
|
90
|
+
jwt (2.10.2)
|
76
91
|
base64
|
77
|
-
kramdown (2.
|
78
|
-
rexml
|
92
|
+
kramdown (2.5.1)
|
93
|
+
rexml (>= 3.3.9)
|
79
94
|
kramdown-parser-gfm (1.1.0)
|
80
95
|
kramdown (~> 2.0)
|
81
|
-
language_server-protocol (3.17.0.
|
82
|
-
|
96
|
+
language_server-protocol (3.17.0.5)
|
97
|
+
lint_roller (1.1.0)
|
98
|
+
logger (1.7.0)
|
83
99
|
mini_mime (1.1.5)
|
84
|
-
minitest (5.25.
|
100
|
+
minitest (5.25.5)
|
85
101
|
multi_json (1.15.0)
|
86
|
-
multi_xml (0.7.
|
102
|
+
multi_xml (0.7.2)
|
87
103
|
bigdecimal (~> 3.1)
|
88
|
-
mustermann (3.0.
|
104
|
+
mustermann (3.0.3)
|
89
105
|
ruby2_keywords (~> 0.0.1)
|
90
106
|
mysql2 (0.5.6)
|
91
|
-
net-http (0.
|
107
|
+
net-http (0.6.0)
|
92
108
|
uri
|
93
|
-
|
94
|
-
|
109
|
+
nokogiri (1.18.8-aarch64-linux-gnu)
|
110
|
+
racc (~> 1.4)
|
111
|
+
nokogiri (1.18.8-aarch64-linux-musl)
|
95
112
|
racc (~> 1.4)
|
96
|
-
nokogiri (1.
|
113
|
+
nokogiri (1.18.8-arm-linux-gnu)
|
97
114
|
racc (~> 1.4)
|
98
|
-
nokogiri (1.
|
115
|
+
nokogiri (1.18.8-arm-linux-musl)
|
99
116
|
racc (~> 1.4)
|
100
|
-
nokogiri (1.
|
117
|
+
nokogiri (1.18.8-arm64-darwin)
|
101
118
|
racc (~> 1.4)
|
102
|
-
nokogiri (1.
|
119
|
+
nokogiri (1.18.8-x86_64-darwin)
|
103
120
|
racc (~> 1.4)
|
104
|
-
nokogiri (1.
|
121
|
+
nokogiri (1.18.8-x86_64-linux-gnu)
|
105
122
|
racc (~> 1.4)
|
106
|
-
|
107
|
-
|
108
|
-
|
123
|
+
nokogiri (1.18.8-x86_64-linux-musl)
|
124
|
+
racc (~> 1.4)
|
125
|
+
observer (0.1.2)
|
126
|
+
openssl (3.3.0)
|
127
|
+
ostruct (0.6.2)
|
128
|
+
parallel (1.27.0)
|
129
|
+
parser (3.3.8.0)
|
109
130
|
ast (~> 2.4.1)
|
110
131
|
racc
|
111
|
-
|
132
|
+
prism (1.4.0)
|
133
|
+
prometheus-client (4.2.4)
|
112
134
|
base64
|
113
|
-
puma (6.4.2)
|
114
|
-
nio4r (~> 2.0)
|
115
135
|
racc (1.8.1)
|
116
|
-
rack (2.2.
|
136
|
+
rack (2.2.17)
|
117
137
|
rack-protection (3.2.0)
|
118
138
|
base64 (>= 0.1.0)
|
119
139
|
rack (~> 2.2, >= 2.2.4)
|
120
|
-
rack-test (2.
|
140
|
+
rack-test (2.2.0)
|
121
141
|
rack (>= 1.3)
|
122
142
|
rainbow (3.1.1)
|
123
|
-
rake (13.
|
124
|
-
|
125
|
-
|
126
|
-
|
143
|
+
rake (13.3.0)
|
144
|
+
rake-compiler-dock (1.9.1)
|
145
|
+
rb_sys (0.9.116)
|
146
|
+
rake-compiler-dock (= 1.9.1)
|
147
|
+
rbs (3.9.4)
|
148
|
+
logger
|
149
|
+
regexp_parser (2.10.0)
|
150
|
+
reverse_markdown (3.0.0)
|
127
151
|
nokogiri
|
128
|
-
rexml (3.
|
129
|
-
|
130
|
-
rspec (3.13.0)
|
152
|
+
rexml (3.4.1)
|
153
|
+
rspec (3.13.1)
|
131
154
|
rspec-core (~> 3.13.0)
|
132
155
|
rspec-expectations (~> 3.13.0)
|
133
156
|
rspec-mocks (~> 3.13.0)
|
134
|
-
rspec-core (3.13.
|
157
|
+
rspec-core (3.13.5)
|
135
158
|
rspec-support (~> 3.13.0)
|
136
|
-
rspec-expectations (3.13.
|
159
|
+
rspec-expectations (3.13.5)
|
137
160
|
diff-lcs (>= 1.2.0, < 2.0)
|
138
161
|
rspec-support (~> 3.13.0)
|
139
|
-
rspec-mocks (3.13.
|
162
|
+
rspec-mocks (3.13.5)
|
140
163
|
diff-lcs (>= 1.2.0, < 2.0)
|
141
164
|
rspec-support (~> 3.13.0)
|
142
|
-
rspec-support (3.13.
|
143
|
-
rubocop (1.
|
165
|
+
rspec-support (3.13.4)
|
166
|
+
rubocop (1.77.0)
|
144
167
|
json (~> 2.3)
|
145
|
-
language_server-protocol (
|
168
|
+
language_server-protocol (~> 3.17.0.2)
|
169
|
+
lint_roller (~> 1.1.0)
|
146
170
|
parallel (~> 1.10)
|
147
171
|
parser (>= 3.3.0.2)
|
148
172
|
rainbow (>= 2.2.2, < 4.0)
|
149
|
-
regexp_parser (>= 2.
|
150
|
-
|
151
|
-
rubocop-ast (>= 1.31.1, < 2.0)
|
173
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
174
|
+
rubocop-ast (>= 1.45.1, < 2.0)
|
152
175
|
ruby-progressbar (~> 1.7)
|
153
|
-
unicode-display_width (>= 2.4.0, <
|
154
|
-
rubocop-ast (1.
|
155
|
-
parser (>= 3.3.
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
rubocop (
|
160
|
-
rubocop-
|
161
|
-
|
162
|
-
|
163
|
-
rubocop (~> 1.40)
|
164
|
-
rubocop-capybara (~> 2.17)
|
165
|
-
rubocop-factory_bot (~> 2.22)
|
166
|
-
rubocop-rspec_rails (~> 2.28)
|
167
|
-
rubocop-rspec_rails (2.29.1)
|
168
|
-
rubocop (~> 1.61)
|
176
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
177
|
+
rubocop-ast (1.45.1)
|
178
|
+
parser (>= 3.3.7.2)
|
179
|
+
prism (~> 1.4)
|
180
|
+
rubocop-rake (0.7.1)
|
181
|
+
lint_roller (~> 1.1)
|
182
|
+
rubocop (>= 1.72.1)
|
183
|
+
rubocop-rspec (3.6.0)
|
184
|
+
lint_roller (~> 1.1)
|
185
|
+
rubocop (~> 1.72, >= 1.72.1)
|
169
186
|
ruby-progressbar (1.13.0)
|
170
187
|
ruby2_keywords (0.0.5)
|
171
|
-
securerandom (0.
|
188
|
+
securerandom (0.4.1)
|
172
189
|
simplecov (0.22.0)
|
173
190
|
docile (~> 1.1)
|
174
191
|
simplecov-html (~> 0.11)
|
@@ -176,14 +193,14 @@ GEM
|
|
176
193
|
simplecov-cobertura (2.1.0)
|
177
194
|
rexml
|
178
195
|
simplecov (~> 0.19)
|
179
|
-
simplecov-html (0.
|
196
|
+
simplecov-html (0.13.1)
|
180
197
|
simplecov_json_formatter (0.1.4)
|
181
198
|
sinatra (3.2.0)
|
182
199
|
mustermann (~> 3.0)
|
183
200
|
rack (~> 2.2, >= 2.2.4)
|
184
201
|
rack-protection (= 3.2.0)
|
185
202
|
tilt (~> 2.0)
|
186
|
-
sinatra-activerecord (2.0.
|
203
|
+
sinatra-activerecord (2.0.28)
|
187
204
|
activerecord (>= 4.1)
|
188
205
|
sinatra (>= 1.0)
|
189
206
|
sinatra-contrib (3.2.0)
|
@@ -192,46 +209,60 @@ GEM
|
|
192
209
|
rack-protection (= 3.2.0)
|
193
210
|
sinatra (= 3.2.0)
|
194
211
|
tilt (~> 2.0)
|
195
|
-
solargraph (0.
|
212
|
+
solargraph (0.56.0)
|
196
213
|
backport (~> 1.2)
|
197
|
-
benchmark
|
214
|
+
benchmark (~> 0.4)
|
198
215
|
bundler (~> 2.0)
|
199
216
|
diff-lcs (~> 1.4)
|
200
|
-
|
201
|
-
jaro_winkler (~> 1.5)
|
217
|
+
jaro_winkler (~> 1.6, >= 1.6.1)
|
202
218
|
kramdown (~> 2.3)
|
203
219
|
kramdown-parser-gfm (~> 1.1)
|
220
|
+
logger (~> 1.6)
|
221
|
+
observer (~> 0.1)
|
222
|
+
ostruct (~> 0.6)
|
204
223
|
parser (~> 3.0)
|
205
|
-
|
206
|
-
|
224
|
+
prism (~> 1.4)
|
225
|
+
rbs (~> 3.3)
|
226
|
+
reverse_markdown (~> 3.0)
|
207
227
|
rubocop (~> 1.38)
|
208
228
|
thor (~> 1.0)
|
209
229
|
tilt (~> 2.0)
|
210
230
|
yard (~> 0.9, >= 0.9.24)
|
211
|
-
|
212
|
-
sqlite3 (
|
213
|
-
sqlite3 (
|
214
|
-
sqlite3 (
|
215
|
-
sqlite3 (
|
216
|
-
sqlite3 (
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
231
|
+
yard-solargraph (~> 0.1)
|
232
|
+
sqlite3 (2.7.1-aarch64-linux-gnu)
|
233
|
+
sqlite3 (2.7.1-aarch64-linux-musl)
|
234
|
+
sqlite3 (2.7.1-arm-linux-gnu)
|
235
|
+
sqlite3 (2.7.1-arm-linux-musl)
|
236
|
+
sqlite3 (2.7.1-arm64-darwin)
|
237
|
+
sqlite3 (2.7.1-x86_64-darwin)
|
238
|
+
sqlite3 (2.7.1-x86_64-linux-gnu)
|
239
|
+
sqlite3 (2.7.1-x86_64-linux-musl)
|
240
|
+
thor (1.3.2)
|
241
|
+
tilt (2.6.0)
|
242
|
+
timeout (0.4.3)
|
221
243
|
tzinfo (2.0.6)
|
222
244
|
concurrent-ruby (~> 1.0)
|
223
|
-
unicode-display_width (
|
224
|
-
|
225
|
-
|
226
|
-
|
245
|
+
unicode-display_width (3.1.4)
|
246
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
247
|
+
unicode-emoji (4.0.4)
|
248
|
+
uri (1.0.3)
|
249
|
+
yard (0.9.37)
|
250
|
+
yard-solargraph (0.1.0)
|
251
|
+
yard (~> 0.9)
|
252
|
+
zeitwerk (2.7.3)
|
227
253
|
|
228
254
|
PLATFORMS
|
229
255
|
aarch64-linux
|
256
|
+
aarch64-linux-gnu
|
257
|
+
aarch64-linux-musl
|
230
258
|
arm-linux
|
259
|
+
arm-linux-gnu
|
260
|
+
arm-linux-musl
|
231
261
|
arm64-darwin
|
232
|
-
x86-linux
|
233
262
|
x86_64-darwin
|
234
263
|
x86_64-linux
|
264
|
+
x86_64-linux-gnu
|
265
|
+
x86_64-linux-musl
|
235
266
|
|
236
267
|
DEPENDENCIES
|
237
268
|
acme-client (~> 2.0)
|
@@ -243,11 +274,11 @@ DEPENDENCIES
|
|
243
274
|
rspec (~> 3.12)
|
244
275
|
rubocop (~> 1.57)
|
245
276
|
rubocop-rake (~> 0.6)
|
246
|
-
rubocop-rspec (~>
|
277
|
+
rubocop-rspec (~> 3.5)
|
247
278
|
simplecov (~> 0.22)
|
248
279
|
simplecov-cobertura (~> 2.1)
|
249
280
|
solargraph (~> 0.49)
|
250
281
|
yard (~> 0.9)
|
251
282
|
|
252
283
|
BUNDLED WITH
|
253
|
-
2.
|
284
|
+
2.6.2
|