sup 1.2 → 1.4
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/checks.yml +19 -4
- data/.gitmodules +1 -0
- data/.rubocop.yml +1 -1
- data/History.txt +33 -0
- data/Manifest.txt +21 -2
- data/README.md +5 -3
- data/Rakefile +1 -1
- data/bin/sup +5 -3
- data/contrib/nix/Gemfile +2 -0
- data/contrib/nix/Gemfile.lock +62 -34
- data/contrib/nix/gem-install-shell.nix +2 -0
- data/contrib/nix/gemset.nix +130 -56
- data/contrib/nix/ruby2.4-Gemfile.lock +6 -2
- data/contrib/nix/ruby2.4-gemset.nix +24 -4
- data/contrib/nix/ruby2.4-shell.nix +2 -6
- data/contrib/nix/ruby2.5-Gemfile.lock +6 -2
- data/contrib/nix/ruby2.5-gemset.nix +24 -4
- data/contrib/nix/ruby2.5-shell.nix +2 -6
- data/contrib/nix/ruby2.6-Gemfile.lock +6 -2
- data/contrib/nix/ruby2.6-gemset.nix +24 -4
- data/contrib/nix/ruby2.6-shell.nix +2 -6
- data/contrib/nix/ruby2.7-Gemfile.lock +91 -0
- data/contrib/nix/ruby2.7-gemset.nix +359 -0
- data/contrib/nix/ruby2.7-shell.nix +2 -11
- data/contrib/nix/ruby3.0-Gemfile.lock +91 -0
- data/contrib/nix/ruby3.0-gemset.nix +359 -0
- data/contrib/nix/ruby3.0-shell.nix +2 -11
- data/contrib/nix/ruby3.1-Gemfile.lock +101 -0
- data/contrib/nix/ruby3.1-gemset.nix +391 -0
- data/contrib/nix/ruby3.1-shell.nix +3 -12
- data/contrib/nix/ruby3.2-Gemfile.lock +101 -0
- data/contrib/nix/ruby3.2-gemset.nix +391 -0
- data/contrib/nix/ruby3.2-shell.nix +3 -12
- data/contrib/nix/ruby3.3-shell.nix +1 -10
- data/contrib/nix/ruby3.4-shell.nix +27 -0
- data/contrib/nix/ruby4.0-shell.nix +40 -0
- data/contrib/nix/test-all-rubies.sh +1 -1
- data/lib/sup/account.rb +2 -0
- data/lib/sup/buffer.rb +1 -0
- data/lib/sup/contact.rb +3 -4
- data/lib/sup/crypto.rb +7 -5
- data/lib/sup/draft.rb +15 -11
- data/lib/sup/index.rb +8 -4
- data/lib/sup/maildir.rb +4 -0
- data/lib/sup/mbox.rb +25 -7
- data/lib/sup/message.rb +13 -10
- data/lib/sup/message_chunks.rb +0 -24
- data/lib/sup/mode.rb +1 -0
- data/lib/sup/modes/contact_list_mode.rb +0 -1
- data/lib/sup/modes/edit_message_mode.rb +6 -6
- data/lib/sup/modes/label_search_results_mode.rb +1 -2
- data/lib/sup/modes/line_cursor_mode.rb +22 -20
- data/lib/sup/modes/search_results_mode.rb +0 -1
- data/lib/sup/modes/thread_view_mode.rb +1 -2
- data/lib/sup/rfc2047.rb +5 -2
- data/lib/sup/source.rb +2 -0
- data/lib/sup/util.rb +9 -2
- data/lib/sup/version.rb +1 -1
- data/lib/sup.rb +1 -1
- data/man/sup-add.1 +18 -18
- data/man/sup-config.1 +12 -12
- data/man/sup-dump.1 +15 -14
- data/man/sup-import-dump.1 +24 -24
- data/man/sup-psych-ify-config-files.1 +11 -11
- data/man/sup-recover-sources.1 +20 -20
- data/man/sup-sync-back-maildir.1 +24 -23
- data/man/sup-sync.1 +35 -35
- data/man/sup-tweak-labels.1 +27 -26
- data/man/sup.1 +27 -27
- data/sup.gemspec +3 -1
- data/test/dummy_buffer.rb +34 -0
- data/test/dummy_source.rb +6 -0
- data/test/fixtures/contacts.txt +2 -1
- data/test/fixtures/embedded-message-rfc6532.eml +33 -0
- data/test/fixtures/invalid-date.eml +8 -0
- data/test/fixtures/rfc2047-header-encoding.eml +1 -1
- data/test/gnupg_test_home/private-keys-v1.d/26C05E44706A8E230B3255BB9532B34DC9420232.key +42 -0
- data/test/gnupg_test_home/private-keys-v1.d/D187ADC90EC4DEB7047678EAA37E33A53A465D47.key +5 -0
- data/test/gnupg_test_home/private-keys-v1.d/FB2D9BD3B1BE90B5BCF697781F8404224B0FCF5B.key +5 -0
- data/test/gnupg_test_home/pubring.gpg +0 -0
- data/test/gnupg_test_home/receiver_pubring.gpg +0 -0
- data/test/gnupg_test_home/receiver_secring.gpg +0 -0
- data/test/gnupg_test_home/regen_keys.sh +11 -2
- data/test/gnupg_test_home/secring.gpg +0 -0
- data/test/gnupg_test_home/sup-test-2@foo.bar.asc +20 -20
- data/test/integration/test_draft.rb +128 -0
- data/test/integration/test_maildir.rb +17 -1
- data/test/integration/test_mbox.rb +12 -0
- data/test/integration/test_sup-add.rb +4 -0
- data/test/test_crypto.rb +114 -72
- data/test/test_message.rb +43 -0
- data/test/unit/test_contact.rb +16 -4
- data/test/unit/test_edit_message_mode.rb +99 -0
- data/test/unit/test_index.rb +65 -0
- data/test/unit/test_line_cursor_mode.rb +208 -0
- data/test/unit/test_person.rb +3 -3
- data/test/unit/test_rmail_message.rb +36 -0
- data/test/unit/util/test_string.rb +3 -3
- metadata +64 -9
- data/shell.nix +0 -1
- data/test/gnupg_test_home/private-keys-v1.d/306D2EE90FF0014B5B9FD07E265C751791674140.key +0 -0
data/contrib/nix/gemset.nix
CHANGED
|
@@ -4,10 +4,20 @@
|
|
|
4
4
|
platforms = [];
|
|
5
5
|
source = {
|
|
6
6
|
remotes = ["https://rubygems.org"];
|
|
7
|
-
sha256 = "
|
|
7
|
+
sha256 = "10yknjyn0728gjn6b5syynvrvrwm66bhssbxq8mkhshxghaiailm";
|
|
8
8
|
type = "gem";
|
|
9
9
|
};
|
|
10
|
-
version = "2.4.
|
|
10
|
+
version = "2.4.3";
|
|
11
|
+
};
|
|
12
|
+
benchmark = {
|
|
13
|
+
groups = ["default"];
|
|
14
|
+
platforms = [];
|
|
15
|
+
source = {
|
|
16
|
+
remotes = ["https://rubygems.org"];
|
|
17
|
+
sha256 = "0v1337j39w1z7x9zs4q7ag0nfv4vs4xlsjx2la0wpv8s6hig2pa6";
|
|
18
|
+
type = "gem";
|
|
19
|
+
};
|
|
20
|
+
version = "0.5.0";
|
|
11
21
|
};
|
|
12
22
|
chronic = {
|
|
13
23
|
groups = ["default"];
|
|
@@ -29,56 +39,88 @@
|
|
|
29
39
|
};
|
|
30
40
|
version = "1.1.3";
|
|
31
41
|
};
|
|
42
|
+
fiddle = {
|
|
43
|
+
groups = ["default"];
|
|
44
|
+
platforms = [];
|
|
45
|
+
source = {
|
|
46
|
+
remotes = ["https://rubygems.org"];
|
|
47
|
+
sha256 = "1vifygrkw22gcd4wzh8gc4pv6h1zpk6kll6mmprrf5174wvfxa3z";
|
|
48
|
+
type = "gem";
|
|
49
|
+
};
|
|
50
|
+
version = "1.1.8";
|
|
51
|
+
};
|
|
32
52
|
gpgme = {
|
|
33
53
|
dependencies = ["mini_portile2"];
|
|
34
54
|
groups = ["default"];
|
|
35
55
|
platforms = [];
|
|
36
56
|
source = {
|
|
37
57
|
remotes = ["https://rubygems.org"];
|
|
38
|
-
sha256 = "
|
|
58
|
+
sha256 = "1amb4f0hgwdlz9dzblfpsidays3mb4cg65plwr0m6x1vp0pgvsqs";
|
|
39
59
|
type = "gem";
|
|
40
60
|
};
|
|
41
|
-
version = "2.0.
|
|
61
|
+
version = "2.0.26";
|
|
42
62
|
};
|
|
43
63
|
highline = {
|
|
64
|
+
dependencies = ["reline"];
|
|
65
|
+
groups = ["default"];
|
|
66
|
+
platforms = [];
|
|
67
|
+
source = {
|
|
68
|
+
remotes = ["https://rubygems.org"];
|
|
69
|
+
sha256 = "0jmvyhjp2v3iq47la7w6psrxbprnbnmzz0hxxski3vzn356x7jv7";
|
|
70
|
+
type = "gem";
|
|
71
|
+
};
|
|
72
|
+
version = "3.1.2";
|
|
73
|
+
};
|
|
74
|
+
io-console = {
|
|
44
75
|
groups = ["default"];
|
|
45
76
|
platforms = [];
|
|
46
77
|
source = {
|
|
47
78
|
remotes = ["https://rubygems.org"];
|
|
48
|
-
sha256 = "
|
|
79
|
+
sha256 = "1k0lk3pwadm2myvpg893n8jshmrf2sigrd4ki15lymy7gixaxqyn";
|
|
49
80
|
type = "gem";
|
|
50
81
|
};
|
|
51
|
-
version = "
|
|
82
|
+
version = "0.8.2";
|
|
52
83
|
};
|
|
53
84
|
json = {
|
|
54
85
|
groups = ["default"];
|
|
55
86
|
platforms = [];
|
|
56
87
|
source = {
|
|
57
88
|
remotes = ["https://rubygems.org"];
|
|
58
|
-
sha256 = "
|
|
89
|
+
sha256 = "0il6qxkxqql7n7sgrws5bi5a36v51dswqcxb6j6gm8aj62shp6r8";
|
|
59
90
|
type = "gem";
|
|
60
91
|
};
|
|
61
|
-
version = "2.
|
|
92
|
+
version = "2.19.3";
|
|
62
93
|
};
|
|
63
94
|
language_server-protocol = {
|
|
64
95
|
groups = ["default"];
|
|
65
96
|
platforms = [];
|
|
66
97
|
source = {
|
|
67
98
|
remotes = ["https://rubygems.org"];
|
|
68
|
-
sha256 = "
|
|
99
|
+
sha256 = "1k0311vah76kg5m6zr7wmkwyk5p2f9d9hyckjpn3xgr83ajkj7px";
|
|
100
|
+
type = "gem";
|
|
101
|
+
};
|
|
102
|
+
version = "3.17.0.5";
|
|
103
|
+
};
|
|
104
|
+
lint_roller = {
|
|
105
|
+
groups = ["default"];
|
|
106
|
+
platforms = [];
|
|
107
|
+
source = {
|
|
108
|
+
remotes = ["https://rubygems.org"];
|
|
109
|
+
sha256 = "11yc0d84hsnlvx8cpk4cbj6a4dz9pk0r1k29p0n1fz9acddq831c";
|
|
69
110
|
type = "gem";
|
|
70
111
|
};
|
|
71
|
-
version = "
|
|
112
|
+
version = "1.1.0";
|
|
72
113
|
};
|
|
73
114
|
locale = {
|
|
115
|
+
dependencies = ["fiddle"];
|
|
74
116
|
groups = ["default"];
|
|
75
117
|
platforms = [];
|
|
76
118
|
source = {
|
|
77
119
|
remotes = ["https://rubygems.org"];
|
|
78
|
-
sha256 = "
|
|
120
|
+
sha256 = "1x1fnf4knvyzb9br6ja7b1nvy0860nax0i8rx4ljrnvbmbl06s0w";
|
|
79
121
|
type = "gem";
|
|
80
122
|
};
|
|
81
|
-
version = "2.1.
|
|
123
|
+
version = "2.1.5";
|
|
82
124
|
};
|
|
83
125
|
lockfile = {
|
|
84
126
|
groups = ["default"];
|
|
@@ -90,6 +132,16 @@
|
|
|
90
132
|
};
|
|
91
133
|
version = "2.1.3";
|
|
92
134
|
};
|
|
135
|
+
logger = {
|
|
136
|
+
groups = ["default"];
|
|
137
|
+
platforms = [];
|
|
138
|
+
source = {
|
|
139
|
+
remotes = ["https://rubygems.org"];
|
|
140
|
+
sha256 = "00q2zznygpbls8asz5knjvvj2brr3ghmqxgr83xnrdj4rk3xwvhr";
|
|
141
|
+
type = "gem";
|
|
142
|
+
};
|
|
143
|
+
version = "1.7.0";
|
|
144
|
+
};
|
|
93
145
|
method_source = {
|
|
94
146
|
groups = ["default"];
|
|
95
147
|
platforms = [];
|
|
@@ -101,75 +153,75 @@
|
|
|
101
153
|
version = "1.1.0";
|
|
102
154
|
};
|
|
103
155
|
mime-types = {
|
|
104
|
-
dependencies = ["mime-types-data"];
|
|
156
|
+
dependencies = ["logger" "mime-types-data"];
|
|
105
157
|
groups = ["default"];
|
|
106
158
|
platforms = [];
|
|
107
159
|
source = {
|
|
108
160
|
remotes = ["https://rubygems.org"];
|
|
109
|
-
sha256 = "
|
|
161
|
+
sha256 = "0mjyxl7c0xzyqdqa8r45hqg7jcw2prp3hkp39mdf223g4hfgdsyw";
|
|
110
162
|
type = "gem";
|
|
111
163
|
};
|
|
112
|
-
version = "3.
|
|
164
|
+
version = "3.7.0";
|
|
113
165
|
};
|
|
114
166
|
mime-types-data = {
|
|
115
167
|
groups = ["default"];
|
|
116
168
|
platforms = [];
|
|
117
169
|
source = {
|
|
118
170
|
remotes = ["https://rubygems.org"];
|
|
119
|
-
sha256 = "
|
|
171
|
+
sha256 = "19cpbiwrfib7ai83l16az1gfyl3n5v2k430v40mjwlvjmhgjp579";
|
|
120
172
|
type = "gem";
|
|
121
173
|
};
|
|
122
|
-
version = "3.
|
|
174
|
+
version = "3.2026.0331";
|
|
123
175
|
};
|
|
124
176
|
mini_portile2 = {
|
|
125
177
|
groups = ["default"];
|
|
126
178
|
platforms = [];
|
|
127
179
|
source = {
|
|
128
180
|
remotes = ["https://rubygems.org"];
|
|
129
|
-
sha256 = "
|
|
181
|
+
sha256 = "12f2830x7pq3kj0v8nz0zjvaw02sv01bqs1zwdrc04704kwcgmqc";
|
|
130
182
|
type = "gem";
|
|
131
183
|
};
|
|
132
|
-
version = "2.8.
|
|
184
|
+
version = "2.8.9";
|
|
133
185
|
};
|
|
134
186
|
minitest = {
|
|
135
187
|
groups = ["default"];
|
|
136
188
|
platforms = [];
|
|
137
189
|
source = {
|
|
138
190
|
remotes = ["https://rubygems.org"];
|
|
139
|
-
sha256 = "
|
|
191
|
+
sha256 = "1mbpz92ml19rcxxfjrj91gmkif9khb1xpzyw38f81rvglgw1ffrd";
|
|
140
192
|
type = "gem";
|
|
141
193
|
};
|
|
142
|
-
version = "5.
|
|
194
|
+
version = "5.27.0";
|
|
143
195
|
};
|
|
144
196
|
ncursesw = {
|
|
145
197
|
groups = ["default"];
|
|
146
198
|
platforms = [];
|
|
147
199
|
source = {
|
|
148
200
|
remotes = ["https://rubygems.org"];
|
|
149
|
-
sha256 = "
|
|
201
|
+
sha256 = "1x06374njjl4xfxwkp6nq71akhazmqp9fyhkgxf6gac81p5wwdk6";
|
|
150
202
|
type = "gem";
|
|
151
203
|
};
|
|
152
|
-
version = "1.4.
|
|
204
|
+
version = "1.4.13";
|
|
153
205
|
};
|
|
154
206
|
optimist = {
|
|
155
207
|
groups = ["default"];
|
|
156
208
|
platforms = [];
|
|
157
209
|
source = {
|
|
158
210
|
remotes = ["https://rubygems.org"];
|
|
159
|
-
sha256 = "
|
|
211
|
+
sha256 = "0kp3f8g7g7cbw5vfkmpdv71pphhpcxk3lpc892mj9apkd7ys1y4c";
|
|
160
212
|
type = "gem";
|
|
161
213
|
};
|
|
162
|
-
version = "3.1
|
|
214
|
+
version = "3.2.1";
|
|
163
215
|
};
|
|
164
216
|
parallel = {
|
|
165
217
|
groups = ["default"];
|
|
166
218
|
platforms = [];
|
|
167
219
|
source = {
|
|
168
220
|
remotes = ["https://rubygems.org"];
|
|
169
|
-
sha256 = "
|
|
221
|
+
sha256 = "0w697335hi5dk5ay9kyn53399sy87y8v0y6ij93m5wmshhadxrik";
|
|
170
222
|
type = "gem";
|
|
171
223
|
};
|
|
172
|
-
version = "1.
|
|
224
|
+
version = "1.28.0";
|
|
173
225
|
};
|
|
174
226
|
parser = {
|
|
175
227
|
dependencies = ["ast" "racc"];
|
|
@@ -177,31 +229,41 @@
|
|
|
177
229
|
platforms = [];
|
|
178
230
|
source = {
|
|
179
231
|
remotes = ["https://rubygems.org"];
|
|
180
|
-
sha256 = "
|
|
232
|
+
sha256 = "0m2xqvn1la62hji1mn04y59giikww95p2hs0r4y2rrz3mdxcwyni";
|
|
181
233
|
type = "gem";
|
|
182
234
|
};
|
|
183
|
-
version = "3.3.
|
|
235
|
+
version = "3.3.11.1";
|
|
236
|
+
};
|
|
237
|
+
prism = {
|
|
238
|
+
groups = ["default"];
|
|
239
|
+
platforms = [];
|
|
240
|
+
source = {
|
|
241
|
+
remotes = ["https://rubygems.org"];
|
|
242
|
+
sha256 = "11ggfikcs1lv17nhmhqyyp6z8nq5pkfcj6a904047hljkxm0qlvv";
|
|
243
|
+
type = "gem";
|
|
244
|
+
};
|
|
245
|
+
version = "1.9.0";
|
|
184
246
|
};
|
|
185
247
|
pry = {
|
|
186
|
-
dependencies = ["coderay" "method_source"];
|
|
248
|
+
dependencies = ["coderay" "method_source" "reline"];
|
|
187
249
|
groups = ["default"];
|
|
188
250
|
platforms = [];
|
|
189
251
|
source = {
|
|
190
252
|
remotes = ["https://rubygems.org"];
|
|
191
|
-
sha256 = "
|
|
253
|
+
sha256 = "0kh5nv8v74k1ccy6gc7nd04aaf1cjkbk7g8pwy2izvcqaq36jv6p";
|
|
192
254
|
type = "gem";
|
|
193
255
|
};
|
|
194
|
-
version = "0.
|
|
256
|
+
version = "0.16.0";
|
|
195
257
|
};
|
|
196
258
|
racc = {
|
|
197
259
|
groups = ["default"];
|
|
198
260
|
platforms = [];
|
|
199
261
|
source = {
|
|
200
262
|
remotes = ["https://rubygems.org"];
|
|
201
|
-
sha256 = "
|
|
263
|
+
sha256 = "0byn0c9nkahsl93y9ln5bysq4j31q8xkf2ws42swighxd4lnjzsa";
|
|
202
264
|
type = "gem";
|
|
203
265
|
};
|
|
204
|
-
version = "1.
|
|
266
|
+
version = "1.8.1";
|
|
205
267
|
};
|
|
206
268
|
rainbow = {
|
|
207
269
|
groups = ["default"];
|
|
@@ -218,30 +280,31 @@
|
|
|
218
280
|
platforms = [];
|
|
219
281
|
source = {
|
|
220
282
|
remotes = ["https://rubygems.org"];
|
|
221
|
-
sha256 = "
|
|
283
|
+
sha256 = "175iisqb211n0qbfyqd8jz2g01q6xj038zjf4q0nm8k6kz88k7lc";
|
|
222
284
|
type = "gem";
|
|
223
285
|
};
|
|
224
|
-
version = "13.
|
|
286
|
+
version = "13.3.1";
|
|
225
287
|
};
|
|
226
288
|
regexp_parser = {
|
|
227
289
|
groups = ["default"];
|
|
228
290
|
platforms = [];
|
|
229
291
|
source = {
|
|
230
292
|
remotes = ["https://rubygems.org"];
|
|
231
|
-
sha256 = "
|
|
293
|
+
sha256 = "1fwfw26a32rps78920nn29shqg2zmqv72i89j1fap41isshida9m";
|
|
232
294
|
type = "gem";
|
|
233
295
|
};
|
|
234
|
-
version = "2.
|
|
296
|
+
version = "2.12.0";
|
|
235
297
|
};
|
|
236
|
-
|
|
298
|
+
reline = {
|
|
299
|
+
dependencies = ["io-console"];
|
|
237
300
|
groups = ["default"];
|
|
238
301
|
platforms = [];
|
|
239
302
|
source = {
|
|
240
303
|
remotes = ["https://rubygems.org"];
|
|
241
|
-
sha256 = "
|
|
304
|
+
sha256 = "0d8q5c4nh2g9pp758kizh8sfrvngynrjlm0i1zn3cnsnfd4v160i";
|
|
242
305
|
type = "gem";
|
|
243
306
|
};
|
|
244
|
-
version = "
|
|
307
|
+
version = "0.6.3";
|
|
245
308
|
};
|
|
246
309
|
rmail = {
|
|
247
310
|
groups = ["default"];
|
|
@@ -264,37 +327,37 @@
|
|
|
264
327
|
version = "1.2.1";
|
|
265
328
|
};
|
|
266
329
|
rubocop = {
|
|
267
|
-
dependencies = ["json" "language_server-protocol" "parallel" "parser" "rainbow" "regexp_parser" "
|
|
330
|
+
dependencies = ["json" "language_server-protocol" "lint_roller" "parallel" "parser" "rainbow" "regexp_parser" "rubocop-ast" "ruby-progressbar" "unicode-display_width"];
|
|
268
331
|
groups = ["default"];
|
|
269
332
|
platforms = [];
|
|
270
333
|
source = {
|
|
271
334
|
remotes = ["https://rubygems.org"];
|
|
272
|
-
sha256 = "
|
|
335
|
+
sha256 = "11nicljvmns665vryhfdrpssnk5dn1mxdap7ynprpgkfw5piiwag";
|
|
273
336
|
type = "gem";
|
|
274
337
|
};
|
|
275
|
-
version = "1.
|
|
338
|
+
version = "1.86.0";
|
|
276
339
|
};
|
|
277
340
|
rubocop-ast = {
|
|
278
|
-
dependencies = ["parser"];
|
|
341
|
+
dependencies = ["parser" "prism"];
|
|
279
342
|
groups = ["default"];
|
|
280
343
|
platforms = [];
|
|
281
344
|
source = {
|
|
282
345
|
remotes = ["https://rubygems.org"];
|
|
283
|
-
sha256 = "
|
|
346
|
+
sha256 = "0dahfpnzz63hyqxa03x8rypnrxzwyvh4i5a8ri34bzpnf3pg64j4";
|
|
284
347
|
type = "gem";
|
|
285
348
|
};
|
|
286
|
-
version = "1.
|
|
349
|
+
version = "1.49.1";
|
|
287
350
|
};
|
|
288
351
|
rubocop-packaging = {
|
|
289
|
-
dependencies = ["rubocop"];
|
|
352
|
+
dependencies = ["lint_roller" "rubocop"];
|
|
290
353
|
groups = ["default"];
|
|
291
354
|
platforms = [];
|
|
292
355
|
source = {
|
|
293
356
|
remotes = ["https://rubygems.org"];
|
|
294
|
-
sha256 = "
|
|
357
|
+
sha256 = "19sqypdixw125l9l0wy8vjbj876m1jdj9lj82vdqqvwfnh7vv4pv";
|
|
295
358
|
type = "gem";
|
|
296
359
|
};
|
|
297
|
-
version = "0.
|
|
360
|
+
version = "0.6.0";
|
|
298
361
|
};
|
|
299
362
|
ruby-progressbar = {
|
|
300
363
|
groups = ["default"];
|
|
@@ -311,29 +374,40 @@
|
|
|
311
374
|
platforms = [];
|
|
312
375
|
source = {
|
|
313
376
|
remotes = ["https://rubygems.org"];
|
|
314
|
-
sha256 = "
|
|
377
|
+
sha256 = "1mx9lwzy021lpcqql5kn4yi20njhf5h7c7wxm2fx51p1r2zr9wj2";
|
|
315
378
|
type = "gem";
|
|
316
379
|
};
|
|
317
|
-
version = "0.4.4.
|
|
380
|
+
version = "0.4.4.5";
|
|
318
381
|
};
|
|
319
382
|
unicode-display_width = {
|
|
383
|
+
dependencies = ["unicode-emoji"];
|
|
384
|
+
groups = ["default"];
|
|
385
|
+
platforms = [];
|
|
386
|
+
source = {
|
|
387
|
+
remotes = ["https://rubygems.org"];
|
|
388
|
+
sha256 = "0hiwhnqpq271xqari6mg996fgjps42sffm9cpk6ljn8sd2srdp8c";
|
|
389
|
+
type = "gem";
|
|
390
|
+
};
|
|
391
|
+
version = "3.2.0";
|
|
392
|
+
};
|
|
393
|
+
unicode-emoji = {
|
|
320
394
|
groups = ["default"];
|
|
321
395
|
platforms = [];
|
|
322
396
|
source = {
|
|
323
397
|
remotes = ["https://rubygems.org"];
|
|
324
|
-
sha256 = "
|
|
398
|
+
sha256 = "03zqn207zypycbz5m9mn7ym763wgpk7hcqbkpx02wrbm1wank7ji";
|
|
325
399
|
type = "gem";
|
|
326
400
|
};
|
|
327
|
-
version = "2.
|
|
401
|
+
version = "4.2.0";
|
|
328
402
|
};
|
|
329
403
|
xapian-ruby = {
|
|
330
404
|
groups = ["default"];
|
|
331
405
|
platforms = [];
|
|
332
406
|
source = {
|
|
333
407
|
remotes = ["https://rubygems.org"];
|
|
334
|
-
sha256 = "
|
|
408
|
+
sha256 = "0070gc3q3j41wxajakhj8vpyp2p18j1rhl20cpcj645vccgvqd21";
|
|
335
409
|
type = "gem";
|
|
336
410
|
};
|
|
337
|
-
version = "1.4.
|
|
411
|
+
version = "1.4.27";
|
|
338
412
|
};
|
|
339
413
|
}
|
|
@@ -2,8 +2,10 @@ GEM
|
|
|
2
2
|
remote: https://rubygems.org/
|
|
3
3
|
specs:
|
|
4
4
|
ast (2.4.2)
|
|
5
|
+
benchmark (0.4.0)
|
|
5
6
|
chronic (0.10.2)
|
|
6
7
|
coderay (1.1.3)
|
|
8
|
+
fiddle (1.0.9)
|
|
7
9
|
gpgme (2.0.20)
|
|
8
10
|
mini_portile2 (~> 2.3)
|
|
9
11
|
highline (2.0.3)
|
|
@@ -15,7 +17,7 @@ GEM
|
|
|
15
17
|
mime-types-data (3.2022.0105)
|
|
16
18
|
mini_portile2 (2.8.0)
|
|
17
19
|
minitest (5.15.0)
|
|
18
|
-
ncursesw (1.4.
|
|
20
|
+
ncursesw (1.4.13)
|
|
19
21
|
optimist (3.0.1)
|
|
20
22
|
parallel (1.20.1)
|
|
21
23
|
parser (3.1.2.0)
|
|
@@ -43,7 +45,7 @@ GEM
|
|
|
43
45
|
rubocop-packaging (0.5.1)
|
|
44
46
|
rubocop (>= 0.89, < 2.0)
|
|
45
47
|
ruby-progressbar (1.11.0)
|
|
46
|
-
unicode (0.4.4.
|
|
48
|
+
unicode (0.4.4.5)
|
|
47
49
|
unicode-display_width (2.2.0)
|
|
48
50
|
xapian-ruby (1.4.18)
|
|
49
51
|
|
|
@@ -58,8 +60,10 @@ PLATFORMS
|
|
|
58
60
|
x86_64-linux
|
|
59
61
|
|
|
60
62
|
DEPENDENCIES
|
|
63
|
+
benchmark
|
|
61
64
|
bundler (>= 1.3, < 3)
|
|
62
65
|
chronic
|
|
66
|
+
fiddle
|
|
63
67
|
gpgme (>= 2.0.2)
|
|
64
68
|
highline
|
|
65
69
|
locale (~> 2.0)
|
|
@@ -9,6 +9,16 @@
|
|
|
9
9
|
};
|
|
10
10
|
version = "2.4.2";
|
|
11
11
|
};
|
|
12
|
+
benchmark = {
|
|
13
|
+
groups = ["default"];
|
|
14
|
+
platforms = [];
|
|
15
|
+
source = {
|
|
16
|
+
remotes = ["https://rubygems.org"];
|
|
17
|
+
sha256 = "0jl71qcgamm96dzyqk695j24qszhcc7liw74qc83fpjljp2gh4hg";
|
|
18
|
+
type = "gem";
|
|
19
|
+
};
|
|
20
|
+
version = "0.4.0";
|
|
21
|
+
};
|
|
12
22
|
chronic = {
|
|
13
23
|
groups = ["default"];
|
|
14
24
|
platforms = [];
|
|
@@ -29,6 +39,16 @@
|
|
|
29
39
|
};
|
|
30
40
|
version = "1.1.3";
|
|
31
41
|
};
|
|
42
|
+
fiddle = {
|
|
43
|
+
groups = ["default"];
|
|
44
|
+
platforms = [];
|
|
45
|
+
source = {
|
|
46
|
+
remotes = ["https://rubygems.org"];
|
|
47
|
+
sha256 = "1d2y2qh6xml4w6p15kaz1v2ryb8p3nm6yy5x5mfygdrxgpsc63rd";
|
|
48
|
+
type = "gem";
|
|
49
|
+
};
|
|
50
|
+
version = "1.0.9";
|
|
51
|
+
};
|
|
32
52
|
gpgme = {
|
|
33
53
|
dependencies = ["mini_portile2"];
|
|
34
54
|
groups = ["default"];
|
|
@@ -126,10 +146,10 @@
|
|
|
126
146
|
platforms = [];
|
|
127
147
|
source = {
|
|
128
148
|
remotes = ["https://rubygems.org"];
|
|
129
|
-
sha256 = "
|
|
149
|
+
sha256 = "1x06374njjl4xfxwkp6nq71akhazmqp9fyhkgxf6gac81p5wwdk6";
|
|
130
150
|
type = "gem";
|
|
131
151
|
};
|
|
132
|
-
version = "1.4.
|
|
152
|
+
version = "1.4.13";
|
|
133
153
|
};
|
|
134
154
|
optimist = {
|
|
135
155
|
groups = ["default"];
|
|
@@ -281,10 +301,10 @@
|
|
|
281
301
|
platforms = [];
|
|
282
302
|
source = {
|
|
283
303
|
remotes = ["https://rubygems.org"];
|
|
284
|
-
sha256 = "
|
|
304
|
+
sha256 = "1mx9lwzy021lpcqql5kn4yi20njhf5h7c7wxm2fx51p1r2zr9wj2";
|
|
285
305
|
type = "gem";
|
|
286
306
|
};
|
|
287
|
-
version = "0.4.4.
|
|
307
|
+
version = "0.4.4.5";
|
|
288
308
|
};
|
|
289
309
|
unicode-display_width = {
|
|
290
310
|
groups = ["default"];
|
|
@@ -11,12 +11,8 @@ let
|
|
|
11
11
|
lockfile = ./ruby2.4-Gemfile.lock;
|
|
12
12
|
gemset = ./ruby2.4-gemset.nix;
|
|
13
13
|
gemConfig = pkgs.defaultGemConfig // {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
unicode = attrs: {
|
|
17
|
-
buildFlags = [
|
|
18
|
-
"--with-cflags=-Wno-incompatible-function-pointer-types"
|
|
19
|
-
];
|
|
14
|
+
fiddle = attrs: {
|
|
15
|
+
buildInputs = [ pkgs.libffi ];
|
|
20
16
|
};
|
|
21
17
|
# Workaround: remove rake from nativeBuildInputs, otherwise it causes
|
|
22
18
|
# xapian-bindings to build against the default Ruby version
|
|
@@ -2,8 +2,10 @@ GEM
|
|
|
2
2
|
remote: https://rubygems.org/
|
|
3
3
|
specs:
|
|
4
4
|
ast (2.4.2)
|
|
5
|
+
benchmark (0.4.0)
|
|
5
6
|
chronic (0.10.2)
|
|
6
7
|
coderay (1.1.3)
|
|
8
|
+
fiddle (1.0.9)
|
|
7
9
|
gpgme (2.0.20)
|
|
8
10
|
mini_portile2 (~> 2.3)
|
|
9
11
|
highline (2.0.3)
|
|
@@ -15,7 +17,7 @@ GEM
|
|
|
15
17
|
mime-types-data (3.2022.0105)
|
|
16
18
|
mini_portile2 (2.8.0)
|
|
17
19
|
minitest (5.16.2)
|
|
18
|
-
ncursesw (1.4.
|
|
20
|
+
ncursesw (1.4.13)
|
|
19
21
|
optimist (3.0.1)
|
|
20
22
|
parallel (1.22.1)
|
|
21
23
|
parser (3.1.2.0)
|
|
@@ -43,7 +45,7 @@ GEM
|
|
|
43
45
|
rubocop-packaging (0.5.1)
|
|
44
46
|
rubocop (>= 0.89, < 2.0)
|
|
45
47
|
ruby-progressbar (1.11.0)
|
|
46
|
-
unicode (0.4.4.
|
|
48
|
+
unicode (0.4.4.5)
|
|
47
49
|
unicode-display_width (2.2.0)
|
|
48
50
|
xapian-ruby (1.4.18)
|
|
49
51
|
|
|
@@ -58,8 +60,10 @@ PLATFORMS
|
|
|
58
60
|
x86_64-linux
|
|
59
61
|
|
|
60
62
|
DEPENDENCIES
|
|
63
|
+
benchmark
|
|
61
64
|
bundler (>= 1.3, < 3)
|
|
62
65
|
chronic
|
|
66
|
+
fiddle
|
|
63
67
|
gpgme (>= 2.0.2)
|
|
64
68
|
highline
|
|
65
69
|
locale (~> 2.0)
|
|
@@ -9,6 +9,16 @@
|
|
|
9
9
|
};
|
|
10
10
|
version = "2.4.2";
|
|
11
11
|
};
|
|
12
|
+
benchmark = {
|
|
13
|
+
groups = ["default"];
|
|
14
|
+
platforms = [];
|
|
15
|
+
source = {
|
|
16
|
+
remotes = ["https://rubygems.org"];
|
|
17
|
+
sha256 = "0jl71qcgamm96dzyqk695j24qszhcc7liw74qc83fpjljp2gh4hg";
|
|
18
|
+
type = "gem";
|
|
19
|
+
};
|
|
20
|
+
version = "0.4.0";
|
|
21
|
+
};
|
|
12
22
|
chronic = {
|
|
13
23
|
groups = ["default"];
|
|
14
24
|
platforms = [];
|
|
@@ -29,6 +39,16 @@
|
|
|
29
39
|
};
|
|
30
40
|
version = "1.1.3";
|
|
31
41
|
};
|
|
42
|
+
fiddle = {
|
|
43
|
+
groups = ["default"];
|
|
44
|
+
platforms = [];
|
|
45
|
+
source = {
|
|
46
|
+
remotes = ["https://rubygems.org"];
|
|
47
|
+
sha256 = "1d2y2qh6xml4w6p15kaz1v2ryb8p3nm6yy5x5mfygdrxgpsc63rd";
|
|
48
|
+
type = "gem";
|
|
49
|
+
};
|
|
50
|
+
version = "1.0.9";
|
|
51
|
+
};
|
|
32
52
|
gpgme = {
|
|
33
53
|
dependencies = ["mini_portile2"];
|
|
34
54
|
groups = ["default"];
|
|
@@ -126,10 +146,10 @@
|
|
|
126
146
|
platforms = [];
|
|
127
147
|
source = {
|
|
128
148
|
remotes = ["https://rubygems.org"];
|
|
129
|
-
sha256 = "
|
|
149
|
+
sha256 = "1x06374njjl4xfxwkp6nq71akhazmqp9fyhkgxf6gac81p5wwdk6";
|
|
130
150
|
type = "gem";
|
|
131
151
|
};
|
|
132
|
-
version = "1.4.
|
|
152
|
+
version = "1.4.13";
|
|
133
153
|
};
|
|
134
154
|
optimist = {
|
|
135
155
|
groups = ["default"];
|
|
@@ -281,10 +301,10 @@
|
|
|
281
301
|
platforms = [];
|
|
282
302
|
source = {
|
|
283
303
|
remotes = ["https://rubygems.org"];
|
|
284
|
-
sha256 = "
|
|
304
|
+
sha256 = "1mx9lwzy021lpcqql5kn4yi20njhf5h7c7wxm2fx51p1r2zr9wj2";
|
|
285
305
|
type = "gem";
|
|
286
306
|
};
|
|
287
|
-
version = "0.4.4.
|
|
307
|
+
version = "0.4.4.5";
|
|
288
308
|
};
|
|
289
309
|
unicode-display_width = {
|
|
290
310
|
groups = ["default"];
|
|
@@ -11,12 +11,8 @@ let
|
|
|
11
11
|
lockfile = ./ruby2.5-Gemfile.lock;
|
|
12
12
|
gemset = ./ruby2.5-gemset.nix;
|
|
13
13
|
gemConfig = pkgs.defaultGemConfig // {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
unicode = attrs: {
|
|
17
|
-
buildFlags = [
|
|
18
|
-
"--with-cflags=-Wno-incompatible-function-pointer-types"
|
|
19
|
-
];
|
|
14
|
+
fiddle = attrs: {
|
|
15
|
+
buildInputs = [ pkgs.libffi ];
|
|
20
16
|
};
|
|
21
17
|
# Workaround: remove rake from nativeBuildInputs, otherwise it causes
|
|
22
18
|
# xapian-bindings to build against the default Ruby version
|
|
@@ -2,8 +2,10 @@ GEM
|
|
|
2
2
|
remote: https://rubygems.org/
|
|
3
3
|
specs:
|
|
4
4
|
ast (2.4.2)
|
|
5
|
+
benchmark (0.4.0)
|
|
5
6
|
chronic (0.10.2)
|
|
6
7
|
coderay (1.1.3)
|
|
8
|
+
fiddle (1.0.9)
|
|
7
9
|
gpgme (2.0.23)
|
|
8
10
|
mini_portile2 (~> 2.7)
|
|
9
11
|
highline (2.0.3)
|
|
@@ -16,7 +18,7 @@ GEM
|
|
|
16
18
|
mime-types-data (3.2022.0105)
|
|
17
19
|
mini_portile2 (2.8.5)
|
|
18
20
|
minitest (5.16.2)
|
|
19
|
-
ncursesw (1.4.
|
|
21
|
+
ncursesw (1.4.13)
|
|
20
22
|
optimist (3.0.1)
|
|
21
23
|
parallel (1.22.1)
|
|
22
24
|
parser (3.1.2.0)
|
|
@@ -45,7 +47,7 @@ GEM
|
|
|
45
47
|
rubocop-packaging (0.5.1)
|
|
46
48
|
rubocop (>= 0.89, < 2.0)
|
|
47
49
|
ruby-progressbar (1.11.0)
|
|
48
|
-
unicode (0.4.4.
|
|
50
|
+
unicode (0.4.4.5)
|
|
49
51
|
unicode-display_width (2.2.0)
|
|
50
52
|
xapian-ruby (1.4.18)
|
|
51
53
|
|
|
@@ -60,8 +62,10 @@ PLATFORMS
|
|
|
60
62
|
x86_64-linux
|
|
61
63
|
|
|
62
64
|
DEPENDENCIES
|
|
65
|
+
benchmark
|
|
63
66
|
bundler (>= 1.3, < 3)
|
|
64
67
|
chronic
|
|
68
|
+
fiddle
|
|
65
69
|
gpgme (>= 2.0.2)
|
|
66
70
|
highline
|
|
67
71
|
locale (~> 2.0)
|