ruby_npm 0.2.0.pre.2 → 0.2.0.pre.3
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/Gemfile.lock +90 -81
- data/README.md +4 -4
- data/Rakefile +116 -45
- data/lib/ruby_npm/options/types.rb +2 -2
- data/lib/ruby_npm/version.rb +1 -1
- data/ruby_npm.gemspec +2 -3
- metadata +10 -24
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cdcb81f67534f8535d9123fa6f958f868b933b7cd26878e93010b6b711a0c640
|
|
4
|
+
data.tar.gz: d9dfcc016f16634c2d29b3fd7490739ee346c31a8e027f31d1f0e552e64ef186
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e77f0e824ffb47172f13184a486322efbf616fe3d29310c8cbe1af572c1c118062e88cb23565cc0e3f4b4e63779375610f6f36705a51f0455c4ba5d4096326e8
|
|
7
|
+
data.tar.gz: 5c6a4cce6b77d066249f94e3b0da7b1d9998cf059cf432c5469d570678987fb7c5bd59f5debf321cf39a6ed425983ffd073ee69c5b68b38552149055f4e7b569
|
data/Gemfile.lock
CHANGED
|
@@ -1,58 +1,66 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
ruby_npm (0.2.0.pre.
|
|
4
|
+
ruby_npm (0.2.0.pre.3)
|
|
5
5
|
immutable-struct (~> 2.4)
|
|
6
6
|
lino (>= 4.1)
|
|
7
7
|
|
|
8
8
|
GEM
|
|
9
9
|
remote: https://rubygems.org/
|
|
10
10
|
specs:
|
|
11
|
-
activesupport (
|
|
11
|
+
activesupport (8.1.3)
|
|
12
12
|
base64
|
|
13
13
|
bigdecimal
|
|
14
|
-
concurrent-ruby (~> 1.0, >= 1.
|
|
14
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
15
15
|
connection_pool (>= 2.2.5)
|
|
16
16
|
drb
|
|
17
17
|
i18n (>= 1.6, < 2)
|
|
18
|
+
json
|
|
19
|
+
logger (>= 1.4.2)
|
|
18
20
|
minitest (>= 5.1)
|
|
19
|
-
|
|
20
|
-
tzinfo (~> 2.0)
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
21
|
+
securerandom (>= 0.3)
|
|
22
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
|
23
|
+
uri (>= 0.13.1)
|
|
24
|
+
addressable (2.9.0)
|
|
25
|
+
public_suffix (>= 2.0.2, < 8.0)
|
|
26
|
+
ast (2.4.3)
|
|
27
|
+
base64 (0.3.0)
|
|
28
|
+
bigdecimal (4.1.2)
|
|
26
29
|
childprocess (5.0.0)
|
|
27
30
|
coderay (1.1.3)
|
|
28
31
|
colored2 (3.1.2)
|
|
29
|
-
concurrent-ruby (1.3.
|
|
30
|
-
connection_pool (
|
|
31
|
-
diff-lcs (1.
|
|
32
|
+
concurrent-ruby (1.3.8)
|
|
33
|
+
connection_pool (3.0.2)
|
|
34
|
+
diff-lcs (1.6.2)
|
|
32
35
|
docile (1.4.0)
|
|
33
|
-
drb (2.2.
|
|
34
|
-
excon (
|
|
35
|
-
|
|
36
|
+
drb (2.2.3)
|
|
37
|
+
excon (1.6.0)
|
|
38
|
+
logger
|
|
39
|
+
faker (3.5.1)
|
|
36
40
|
i18n (>= 1.8.11, < 2)
|
|
37
|
-
faraday (2.
|
|
38
|
-
faraday-net_http (>= 2.0, < 3.
|
|
41
|
+
faraday (2.14.3)
|
|
42
|
+
faraday-net_http (>= 2.0, < 3.5)
|
|
43
|
+
json
|
|
39
44
|
logger
|
|
40
|
-
faraday-net_http (3.
|
|
41
|
-
net-http
|
|
42
|
-
ffi (1.17.
|
|
43
|
-
ffi (1.17.
|
|
44
|
-
ffi (1.17.
|
|
45
|
+
faraday-net_http (3.4.4)
|
|
46
|
+
net-http (~> 0.5)
|
|
47
|
+
ffi (1.17.4)
|
|
48
|
+
ffi (1.17.4-arm64-darwin)
|
|
49
|
+
ffi (1.17.4-x86_64-darwin)
|
|
50
|
+
ffi (1.17.4-x86_64-linux-gnu)
|
|
45
51
|
formatador (1.1.0)
|
|
46
|
-
gem-release (2.2.
|
|
52
|
+
gem-release (2.2.4)
|
|
47
53
|
git (1.19.1)
|
|
48
54
|
addressable (~> 2.8)
|
|
49
55
|
rchardet (~> 1.8)
|
|
50
|
-
guard (2.
|
|
56
|
+
guard (2.19.1)
|
|
51
57
|
formatador (>= 0.2.4)
|
|
52
58
|
listen (>= 2.7, < 4.0)
|
|
59
|
+
logger (~> 1.6)
|
|
53
60
|
lumberjack (>= 1.0.12, < 2.0)
|
|
54
61
|
nenv (~> 0.1)
|
|
55
62
|
notiffany (~> 0.0)
|
|
63
|
+
ostruct (~> 0.6)
|
|
56
64
|
pry (>= 0.13.0)
|
|
57
65
|
shellany (~> 0.0)
|
|
58
66
|
thor (>= 0.18.1)
|
|
@@ -63,50 +71,46 @@ GEM
|
|
|
63
71
|
rspec (>= 2.99.0, < 4.0)
|
|
64
72
|
hamster (3.0.0)
|
|
65
73
|
concurrent-ruby (~> 1.0)
|
|
66
|
-
i18n (1.
|
|
74
|
+
i18n (1.15.2)
|
|
67
75
|
concurrent-ruby (~> 1.0)
|
|
68
|
-
immutable-struct (2.
|
|
69
|
-
json (2.
|
|
70
|
-
language_server-protocol (3.17.0.
|
|
76
|
+
immutable-struct (2.5.0)
|
|
77
|
+
json (2.12.2)
|
|
78
|
+
language_server-protocol (3.17.0.5)
|
|
71
79
|
lino (4.1.0)
|
|
72
80
|
childprocess (~> 5.0.0)
|
|
73
81
|
hamster (~> 3.0)
|
|
74
82
|
open4 (~> 1.3)
|
|
83
|
+
lint_roller (1.1.0)
|
|
75
84
|
listen (3.9.0)
|
|
76
85
|
rb-fsevent (~> 0.10, >= 0.10.3)
|
|
77
86
|
rb-inotify (~> 0.9, >= 0.9.10)
|
|
78
|
-
logger (1.
|
|
87
|
+
logger (1.7.0)
|
|
79
88
|
lumberjack (1.2.10)
|
|
80
89
|
method_source (1.1.0)
|
|
81
|
-
minitest (5.
|
|
82
|
-
mutex_m (0.2.0)
|
|
90
|
+
minitest (5.27.0)
|
|
83
91
|
nenv (0.3.0)
|
|
84
|
-
net-http (0.
|
|
85
|
-
uri
|
|
92
|
+
net-http (0.9.1)
|
|
93
|
+
uri (>= 0.11.1)
|
|
86
94
|
notiffany (0.1.3)
|
|
87
95
|
nenv (~> 0.1)
|
|
88
96
|
shellany (~> 0.0)
|
|
89
|
-
octokit (
|
|
90
|
-
base64
|
|
97
|
+
octokit (10.0.0)
|
|
91
98
|
faraday (>= 1, < 3)
|
|
92
99
|
sawyer (~> 0.9)
|
|
93
100
|
open4 (1.3.4)
|
|
94
|
-
|
|
95
|
-
|
|
101
|
+
ostruct (0.6.1)
|
|
102
|
+
parallel (1.27.0)
|
|
103
|
+
parser (3.3.8.0)
|
|
96
104
|
ast (~> 2.4.1)
|
|
97
105
|
racc
|
|
98
|
-
|
|
106
|
+
prism (1.4.0)
|
|
107
|
+
pry (0.15.2)
|
|
99
108
|
coderay (~> 1.1)
|
|
100
109
|
method_source (~> 1.0)
|
|
101
|
-
public_suffix (
|
|
102
|
-
racc (1.8.
|
|
110
|
+
public_suffix (7.0.5)
|
|
111
|
+
racc (1.8.1)
|
|
103
112
|
rainbow (3.1.1)
|
|
104
|
-
rake (13.2
|
|
105
|
-
rake_circle_ci (0.13.0)
|
|
106
|
-
colored2 (~> 3.1)
|
|
107
|
-
excon (~> 0.72)
|
|
108
|
-
rake_factory (~> 0.33)
|
|
109
|
-
sshkey (~> 2.0)
|
|
113
|
+
rake (13.4.2)
|
|
110
114
|
rake_factory (0.33.0)
|
|
111
115
|
activesupport (>= 4)
|
|
112
116
|
rake (~> 13.0)
|
|
@@ -114,69 +118,74 @@ GEM
|
|
|
114
118
|
colored2 (~> 3.1)
|
|
115
119
|
git (~> 1.13, >= 1.13.2)
|
|
116
120
|
rake_factory (~> 0.33)
|
|
117
|
-
rake_git_crypt (0.
|
|
121
|
+
rake_git_crypt (0.4.0)
|
|
118
122
|
colored2 (~> 3.1)
|
|
123
|
+
lino (~> 4.1)
|
|
119
124
|
rake_factory (~> 0.33)
|
|
120
125
|
ruby_git_crypt (~> 0.1)
|
|
121
126
|
ruby_gpg2 (~> 0.12)
|
|
122
|
-
rake_github (0.
|
|
127
|
+
rake_github (0.17.0)
|
|
123
128
|
colored2 (~> 3.1)
|
|
124
|
-
octokit (>=
|
|
129
|
+
octokit (>= 7.0, < 11.0)
|
|
125
130
|
rake_factory (~> 0.33)
|
|
131
|
+
rbnacl (~> 7.1)
|
|
126
132
|
sshkey (~> 2.0)
|
|
127
133
|
rake_gpg (0.20.0)
|
|
128
134
|
rake_factory (~> 0.33)
|
|
129
135
|
ruby_gpg2 (~> 0.12)
|
|
130
|
-
|
|
131
|
-
|
|
136
|
+
rake_slack (0.3.0)
|
|
137
|
+
excon (>= 0.72, < 2.0)
|
|
132
138
|
rake_factory (~> 0.33)
|
|
133
|
-
sshkey (~> 2.0)
|
|
134
139
|
rb-fsevent (0.11.2)
|
|
135
140
|
rb-inotify (0.11.1)
|
|
136
141
|
ffi (~> 1.0)
|
|
142
|
+
rbnacl (7.1.2)
|
|
143
|
+
ffi (~> 1)
|
|
137
144
|
rchardet (1.8.0)
|
|
138
|
-
regexp_parser (2.
|
|
139
|
-
|
|
140
|
-
strscan
|
|
141
|
-
rspec (3.13.0)
|
|
145
|
+
regexp_parser (2.10.0)
|
|
146
|
+
rspec (3.13.1)
|
|
142
147
|
rspec-core (~> 3.13.0)
|
|
143
148
|
rspec-expectations (~> 3.13.0)
|
|
144
149
|
rspec-mocks (~> 3.13.0)
|
|
145
|
-
rspec-core (3.13.
|
|
150
|
+
rspec-core (3.13.4)
|
|
146
151
|
rspec-support (~> 3.13.0)
|
|
147
|
-
rspec-expectations (3.13.
|
|
152
|
+
rspec-expectations (3.13.5)
|
|
148
153
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
149
154
|
rspec-support (~> 3.13.0)
|
|
150
|
-
rspec-mocks (3.13.
|
|
155
|
+
rspec-mocks (3.13.5)
|
|
151
156
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
152
157
|
rspec-support (~> 3.13.0)
|
|
153
|
-
rspec-support (3.13.
|
|
154
|
-
rubocop (1.
|
|
158
|
+
rspec-support (3.13.4)
|
|
159
|
+
rubocop (1.75.8)
|
|
155
160
|
json (~> 2.3)
|
|
156
|
-
language_server-protocol (
|
|
161
|
+
language_server-protocol (~> 3.17.0.2)
|
|
162
|
+
lint_roller (~> 1.1.0)
|
|
157
163
|
parallel (~> 1.10)
|
|
158
164
|
parser (>= 3.3.0.2)
|
|
159
165
|
rainbow (>= 2.2.2, < 4.0)
|
|
160
|
-
regexp_parser (>= 2.
|
|
161
|
-
|
|
162
|
-
rubocop-ast (>= 1.31.1, < 2.0)
|
|
166
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
|
167
|
+
rubocop-ast (>= 1.44.0, < 2.0)
|
|
163
168
|
ruby-progressbar (~> 1.7)
|
|
164
|
-
unicode-display_width (>= 2.4.0, <
|
|
165
|
-
rubocop-ast (1.
|
|
166
|
-
parser (>= 3.3.
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
rubocop (
|
|
169
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
|
170
|
+
rubocop-ast (1.44.1)
|
|
171
|
+
parser (>= 3.3.7.2)
|
|
172
|
+
prism (~> 1.4)
|
|
173
|
+
rubocop-rake (0.7.1)
|
|
174
|
+
lint_roller (~> 1.1)
|
|
175
|
+
rubocop (>= 1.72.1)
|
|
176
|
+
rubocop-rspec (3.6.0)
|
|
177
|
+
lint_roller (~> 1.1)
|
|
178
|
+
rubocop (~> 1.72, >= 1.72.1)
|
|
171
179
|
ruby-progressbar (1.13.0)
|
|
172
180
|
ruby_git_crypt (0.1.0)
|
|
173
181
|
immutable-struct (~> 2.4)
|
|
174
182
|
lino (>= 4.1)
|
|
175
183
|
ruby_gpg2 (0.12.0)
|
|
176
184
|
lino (>= 4.1)
|
|
177
|
-
sawyer (0.9.
|
|
185
|
+
sawyer (0.9.3)
|
|
178
186
|
addressable (>= 2.3.5)
|
|
179
187
|
faraday (>= 0.17.3, < 3)
|
|
188
|
+
securerandom (0.4.1)
|
|
180
189
|
shellany (0.0.1)
|
|
181
190
|
simplecov (0.22.0)
|
|
182
191
|
docile (~> 1.1)
|
|
@@ -185,14 +194,15 @@ GEM
|
|
|
185
194
|
simplecov-html (0.12.3)
|
|
186
195
|
simplecov_json_formatter (0.1.4)
|
|
187
196
|
sshkey (2.0.0)
|
|
188
|
-
strscan (3.1.0)
|
|
189
197
|
terminal-notifier-guard (1.7.0)
|
|
190
|
-
thor (1.3.
|
|
198
|
+
thor (1.3.2)
|
|
191
199
|
tzinfo (2.0.6)
|
|
192
200
|
concurrent-ruby (~> 1.0)
|
|
193
|
-
unicode-display_width (
|
|
194
|
-
|
|
195
|
-
|
|
201
|
+
unicode-display_width (3.1.4)
|
|
202
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
|
203
|
+
unicode-emoji (4.0.4)
|
|
204
|
+
uri (1.1.1)
|
|
205
|
+
yard (0.9.37)
|
|
196
206
|
|
|
197
207
|
PLATFORMS
|
|
198
208
|
arm64-darwin-21
|
|
@@ -210,12 +220,11 @@ DEPENDENCIES
|
|
|
210
220
|
guard
|
|
211
221
|
guard-rspec
|
|
212
222
|
rake
|
|
213
|
-
rake_circle_ci
|
|
214
223
|
rake_git
|
|
215
224
|
rake_git_crypt
|
|
216
225
|
rake_github
|
|
217
226
|
rake_gpg
|
|
218
|
-
|
|
227
|
+
rake_slack
|
|
219
228
|
rspec
|
|
220
229
|
rubocop
|
|
221
230
|
rubocop-rake
|
data/README.md
CHANGED
|
@@ -63,16 +63,16 @@ To check for code linting / formatting issues without fixing:
|
|
|
63
63
|
You can also run `bin/console` for an interactive prompt that will allow you to
|
|
64
64
|
experiment.
|
|
65
65
|
|
|
66
|
-
### Managing
|
|
66
|
+
### Managing CI keys
|
|
67
67
|
|
|
68
|
-
To encrypt a GPG key for use by
|
|
68
|
+
To encrypt a GPG key for use by CI:
|
|
69
69
|
|
|
70
70
|
```shell
|
|
71
71
|
openssl aes-256-cbc \
|
|
72
72
|
-e \
|
|
73
73
|
-md sha1 \
|
|
74
74
|
-in ./config/secrets/ci/gpg.private \
|
|
75
|
-
-out ./.
|
|
75
|
+
-out ./.github/gpg.private.enc \
|
|
76
76
|
-k "<passphrase>"
|
|
77
77
|
```
|
|
78
78
|
|
|
@@ -82,7 +82,7 @@ To check decryption is working correctly:
|
|
|
82
82
|
openssl aes-256-cbc \
|
|
83
83
|
-d \
|
|
84
84
|
-md sha1 \
|
|
85
|
-
-in ./.
|
|
85
|
+
-in ./.github/gpg.private.enc \
|
|
86
86
|
-k "<passphrase>"
|
|
87
87
|
```
|
|
88
88
|
|
data/Rakefile
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require 'rake_circle_ci'
|
|
4
3
|
require 'rake_git'
|
|
5
4
|
require 'rake_git_crypt'
|
|
6
5
|
require 'rake_github'
|
|
7
6
|
require 'rake_gpg'
|
|
8
|
-
require '
|
|
7
|
+
require 'rake_slack'
|
|
9
8
|
require 'rspec/core/rake_task'
|
|
10
9
|
require 'rubocop/rake_task'
|
|
11
10
|
require 'securerandom'
|
|
12
|
-
require 'yaml'
|
|
13
11
|
require 'yard'
|
|
14
12
|
|
|
15
13
|
task default: %i[
|
|
@@ -60,13 +58,6 @@ namespace :encryption do
|
|
|
60
58
|
end
|
|
61
59
|
|
|
62
60
|
namespace :keys do
|
|
63
|
-
namespace :deploy do
|
|
64
|
-
RakeSSH.define_key_tasks(
|
|
65
|
-
path: 'config/secrets/ci/',
|
|
66
|
-
comment: 'maintainers@infrablocks.io'
|
|
67
|
-
)
|
|
68
|
-
end
|
|
69
|
-
|
|
70
61
|
namespace :gpg do
|
|
71
62
|
RakeGPG.define_generate_key_task(
|
|
72
63
|
output_directory: 'config/secrets/ci',
|
|
@@ -92,7 +83,6 @@ namespace :secrets do
|
|
|
92
83
|
desc 'Generate all generatable secrets.'
|
|
93
84
|
task generate: %w[
|
|
94
85
|
encryption:passphrase:generate
|
|
95
|
-
keys:deploy:generate
|
|
96
86
|
keys:gpg:generate
|
|
97
87
|
]
|
|
98
88
|
|
|
@@ -121,6 +111,11 @@ namespace :library do
|
|
|
121
111
|
|
|
122
112
|
desc 'Attempt to automatically fix issues with the library'
|
|
123
113
|
task fix: [:'rubocop:autocorrect_all']
|
|
114
|
+
|
|
115
|
+
desc 'Build the library'
|
|
116
|
+
task :build do
|
|
117
|
+
sh 'gem build ruby_npm.gemspec'
|
|
118
|
+
end
|
|
124
119
|
end
|
|
125
120
|
|
|
126
121
|
namespace :documentation do
|
|
@@ -147,51 +142,95 @@ namespace :test do
|
|
|
147
142
|
RSpec::Core::RakeTask.new(:unit)
|
|
148
143
|
end
|
|
149
144
|
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
145
|
+
namespace :slack do
|
|
146
|
+
RakeSlack.define_notification_tasks do |t|
|
|
147
|
+
t.bot_token = ENV.fetch('SLACK_BOT_TOKEN', nil)
|
|
148
|
+
t.routing_rules = [
|
|
149
|
+
{ when: { type: 'on_hold' },
|
|
150
|
+
channel: 'C038EDCRSQJ', format: :on_hold }, # release
|
|
151
|
+
{ when: { actor: 'dependabot[bot]', outcome: 'success' },
|
|
152
|
+
channel: 'C03N711HVDG', format: :success }, # builds-dependabot
|
|
153
|
+
{ when: { actor: 'dependabot[bot]' },
|
|
154
|
+
channel: 'C03N711HVDG', format: :failure }, # builds-dependabot
|
|
155
|
+
{ when: { outcome: 'success' },
|
|
156
|
+
channel: 'C023XUE76GH', format: :success }, # builds
|
|
157
|
+
# Failures go to builds, not team-dev (org default), to keep noise
|
|
158
|
+
# out of a popular channel while this pipeline beds in.
|
|
159
|
+
{ when: {},
|
|
160
|
+
channel: 'C023XUE76GH', format: :failure } # builds
|
|
161
|
+
]
|
|
162
|
+
end
|
|
163
|
+
end
|
|
164
|
+
|
|
165
|
+
namespace :repository do
|
|
166
|
+
desc 'Set the git author for CI'
|
|
167
|
+
task :set_ci_author do
|
|
168
|
+
sh 'git config --global user.name "InfraBlocks CI"'
|
|
169
|
+
sh 'git config --global user.email "ci@infrablocks.io"'
|
|
170
|
+
end
|
|
171
|
+
end
|
|
172
|
+
|
|
173
|
+
# Operator's ambient auth. Resolve once and fail fast: a missing,
|
|
174
|
+
# unauthenticated, or absent gh yields an empty string, which would
|
|
175
|
+
# otherwise surface later as an opaque Octokit 401. An empty or
|
|
176
|
+
# whitespace-only GITHUB_TOKEN is treated as absent so an authenticated
|
|
177
|
+
# operator falls through to `gh auth token` rather than hitting the raise.
|
|
178
|
+
def resolve_github_token
|
|
179
|
+
github_token = ENV['GITHUB_TOKEN'].to_s.strip
|
|
180
|
+
if github_token.empty?
|
|
181
|
+
github_token = begin
|
|
182
|
+
`gh auth token`
|
|
183
|
+
rescue Errno::ENOENT
|
|
184
|
+
''
|
|
185
|
+
end.strip
|
|
186
|
+
end
|
|
187
|
+
return github_token unless github_token.empty?
|
|
188
|
+
|
|
189
|
+
raise 'No GitHub token available: set GITHUB_TOKEN or run `gh auth login`'
|
|
190
|
+
end
|
|
191
|
+
|
|
192
|
+
# Actions store only: dependabot runs never reach the passphrase — the
|
|
193
|
+
# only pr.yaml job that unlocks git-crypt (prerelease) is guarded to
|
|
194
|
+
# same-repo human PRs. Guard against a locked clone: without
|
|
195
|
+
# it, File.read returns git-crypt ciphertext and github:secrets:ensure
|
|
196
|
+
# silently uploads garbage that only surfaces much later as an opaque
|
|
197
|
+
# GPG unlock failure in the release job.
|
|
198
|
+
def read_ci_passphrase
|
|
199
|
+
passphrase_path = 'config/secrets/ci/encryption.passphrase'
|
|
200
|
+
unless File.exist?(passphrase_path)
|
|
201
|
+
raise "Passphrase file not found: #{passphrase_path} — expected a " \
|
|
202
|
+
'git-crypt-unlocked clone with the CI secrets present'
|
|
203
|
+
end
|
|
204
|
+
|
|
205
|
+
ensure_passphrase_unlocked(File.binread(passphrase_path)).chomp
|
|
206
|
+
end
|
|
207
|
+
|
|
208
|
+
def ensure_passphrase_unlocked(passphrase)
|
|
209
|
+
return passphrase unless passphrase.start_with?("\x00GITCRYPT")
|
|
210
|
+
|
|
211
|
+
raise 'encryption.passphrase is git-crypt ciphertext — unlock the ' \
|
|
212
|
+
'clone before provisioning'
|
|
170
213
|
end
|
|
171
214
|
|
|
172
215
|
RakeGithub.define_repository_tasks(
|
|
173
216
|
namespace: :github,
|
|
174
217
|
repository: 'infrablocks/ruby_npm'
|
|
175
218
|
) do |t|
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
t.
|
|
181
|
-
{
|
|
182
|
-
|
|
183
|
-
public_key: File.read('config/secrets/ci/ssh.public')
|
|
184
|
-
}
|
|
219
|
+
t.access_token = resolve_github_token
|
|
220
|
+
t.secrets = [
|
|
221
|
+
{ name: 'ENCRYPTION_PASSPHRASE', value: read_ci_passphrase }
|
|
222
|
+
]
|
|
223
|
+
t.environments = [
|
|
224
|
+
{ name: 'release',
|
|
225
|
+
reviewers: [{ team: 'maintainers' }] }
|
|
185
226
|
]
|
|
186
227
|
end
|
|
187
228
|
|
|
188
229
|
namespace :pipeline do
|
|
189
|
-
desc 'Prepare
|
|
230
|
+
desc 'Prepare GitHub Actions pipeline'
|
|
190
231
|
task prepare: %i[
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
circle_ci:ssh_keys:ensure
|
|
194
|
-
github:deploy_keys:ensure
|
|
232
|
+
github:secrets:ensure
|
|
233
|
+
github:environments:ensure
|
|
195
234
|
]
|
|
196
235
|
end
|
|
197
236
|
|
|
@@ -202,6 +241,38 @@ namespace :version do
|
|
|
202
241
|
end
|
|
203
242
|
end
|
|
204
243
|
|
|
244
|
+
namespace :prerelease do
|
|
245
|
+
desc 'Build and push a namespaced pre-release to RubyGems ' \
|
|
246
|
+
'(PR CI only; no bump, no tag, no commit, no push)'
|
|
247
|
+
task :publish, %i[pr_number run_number run_attempt] do |_, args|
|
|
248
|
+
%i[pr_number run_number run_attempt].each do |name|
|
|
249
|
+
raise "Missing task argument: #{name}" if args[name].to_s.empty?
|
|
250
|
+
end
|
|
251
|
+
|
|
252
|
+
version_file = 'lib/ruby_npm/version.rb'
|
|
253
|
+
version_pattern = /(VERSION\s*=\s*')([^']+)(')/
|
|
254
|
+
source = File.read(version_file)
|
|
255
|
+
base = source[version_pattern, 2]
|
|
256
|
+
raise "Could not read VERSION from #{version_file}" unless base
|
|
257
|
+
|
|
258
|
+
version = "#{base}.pr#{args.pr_number}" \
|
|
259
|
+
".#{args.run_number}.#{args.run_attempt}"
|
|
260
|
+
gem_file = "ruby_npm-#{version}.gem"
|
|
261
|
+
begin
|
|
262
|
+
File.write(version_file,
|
|
263
|
+
source.sub(version_pattern, "\\1#{version}\\3"))
|
|
264
|
+
# Build + push directly: `gem release` aborts on the (deliberately)
|
|
265
|
+
# uncommitted version rewrite. PR CI must not tag, commit, or push
|
|
266
|
+
# (contrast the `release` task).
|
|
267
|
+
sh 'gem build ruby_npm.gemspec'
|
|
268
|
+
sh "gem push #{gem_file}"
|
|
269
|
+
ensure
|
|
270
|
+
File.write(version_file, source)
|
|
271
|
+
rm_f gem_file
|
|
272
|
+
end
|
|
273
|
+
end
|
|
274
|
+
end
|
|
275
|
+
|
|
205
276
|
desc 'Release gem'
|
|
206
277
|
task :release do
|
|
207
278
|
sh 'gem release --tag --push'
|
|
@@ -6,8 +6,8 @@ require_relative 'types/flag'
|
|
|
6
6
|
module RubyNPM
|
|
7
7
|
module Options
|
|
8
8
|
module Types
|
|
9
|
-
def self.standard(name, value, **
|
|
10
|
-
Standard.new(name, value, **
|
|
9
|
+
def self.standard(name, value, **)
|
|
10
|
+
Standard.new(name, value, **)
|
|
11
11
|
end
|
|
12
12
|
|
|
13
13
|
def self.flag(name, value)
|
data/lib/ruby_npm/version.rb
CHANGED
data/ruby_npm.gemspec
CHANGED
|
@@ -36,7 +36,7 @@ Gem::Specification.new do |spec|
|
|
|
36
36
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
37
37
|
spec.require_paths = ['lib']
|
|
38
38
|
|
|
39
|
-
spec.required_ruby_version = '>= 3.
|
|
39
|
+
spec.required_ruby_version = '>= 3.3'
|
|
40
40
|
|
|
41
41
|
spec.add_dependency 'immutable-struct', '~> 2.4'
|
|
42
42
|
spec.add_dependency 'lino', '>= 4.1'
|
|
@@ -47,12 +47,11 @@ Gem::Specification.new do |spec|
|
|
|
47
47
|
spec.add_development_dependency 'guard'
|
|
48
48
|
spec.add_development_dependency 'guard-rspec'
|
|
49
49
|
spec.add_development_dependency 'rake'
|
|
50
|
-
spec.add_development_dependency 'rake_circle_ci'
|
|
51
50
|
spec.add_development_dependency 'rake_git'
|
|
52
51
|
spec.add_development_dependency 'rake_git_crypt'
|
|
53
52
|
spec.add_development_dependency 'rake_github'
|
|
54
53
|
spec.add_development_dependency 'rake_gpg'
|
|
55
|
-
spec.add_development_dependency '
|
|
54
|
+
spec.add_development_dependency 'rake_slack'
|
|
56
55
|
spec.add_development_dependency 'rspec'
|
|
57
56
|
spec.add_development_dependency 'rubocop'
|
|
58
57
|
spec.add_development_dependency 'rubocop-rake'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby_npm
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.0.pre.
|
|
4
|
+
version: 0.2.0.pre.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- InfraBlocks Maintainers
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-07-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: immutable-struct
|
|
@@ -122,20 +122,6 @@ dependencies:
|
|
|
122
122
|
- - ">="
|
|
123
123
|
- !ruby/object:Gem::Version
|
|
124
124
|
version: '0'
|
|
125
|
-
- !ruby/object:Gem::Dependency
|
|
126
|
-
name: rake_circle_ci
|
|
127
|
-
requirement: !ruby/object:Gem::Requirement
|
|
128
|
-
requirements:
|
|
129
|
-
- - ">="
|
|
130
|
-
- !ruby/object:Gem::Version
|
|
131
|
-
version: '0'
|
|
132
|
-
type: :development
|
|
133
|
-
prerelease: false
|
|
134
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
135
|
-
requirements:
|
|
136
|
-
- - ">="
|
|
137
|
-
- !ruby/object:Gem::Version
|
|
138
|
-
version: '0'
|
|
139
125
|
- !ruby/object:Gem::Dependency
|
|
140
126
|
name: rake_git
|
|
141
127
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -193,7 +179,7 @@ dependencies:
|
|
|
193
179
|
- !ruby/object:Gem::Version
|
|
194
180
|
version: '0'
|
|
195
181
|
- !ruby/object:Gem::Dependency
|
|
196
|
-
name:
|
|
182
|
+
name: rake_slack
|
|
197
183
|
requirement: !ruby/object:Gem::Requirement
|
|
198
184
|
requirements:
|
|
199
185
|
- - ">="
|
|
@@ -350,7 +336,7 @@ licenses:
|
|
|
350
336
|
- MIT
|
|
351
337
|
metadata:
|
|
352
338
|
rubygems_mfa_required: 'false'
|
|
353
|
-
post_install_message:
|
|
339
|
+
post_install_message:
|
|
354
340
|
rdoc_options: []
|
|
355
341
|
require_paths:
|
|
356
342
|
- lib
|
|
@@ -358,15 +344,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
358
344
|
requirements:
|
|
359
345
|
- - ">="
|
|
360
346
|
- !ruby/object:Gem::Version
|
|
361
|
-
version: '3.
|
|
347
|
+
version: '3.3'
|
|
362
348
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
363
349
|
requirements:
|
|
364
|
-
- - "
|
|
350
|
+
- - ">="
|
|
365
351
|
- !ruby/object:Gem::Version
|
|
366
|
-
version:
|
|
352
|
+
version: '0'
|
|
367
353
|
requirements: []
|
|
368
|
-
rubygems_version: 3.
|
|
369
|
-
signing_key:
|
|
354
|
+
rubygems_version: 3.5.22
|
|
355
|
+
signing_key:
|
|
370
356
|
specification_version: 4
|
|
371
357
|
summary: A simple Ruby wrapper for invoking NPM commands.
|
|
372
358
|
test_files: []
|