pkg-config 1.5.6 → 1.6.2
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 +12 -2
- data/{NEWS → NEWS.md} +183 -120
- data/Rakefile +7 -3
- data/lib/pkg-config.rb +218 -201
- data/test/test-pkg-config.rb +44 -45
- metadata +8 -54
- data/lib/pkg-config/version.rb +0 -19
- /data/test/{run-test.rb → run.rb} +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a7e1cf5d660f2266bd2b7b33b4bea74f886eaf24018e6381ece093e3175fc9cc
|
4
|
+
data.tar.gz: 5297a48889e115f5f08a508eaf3bd43e409d56ea19354f6d8817b31422cc3106
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 18f13c71bc84f415e69190fca6eb0518242896c4606fa56f585ced55cad394d2d5d8916fa098a978418736b145959c332056597be5570598e7fb94bd2e891c53
|
7
|
+
data.tar.gz: 2e88e75e57d264b56a756dd720a504f8138ecdced79ecde4358915a394793cfe7b4030bdf6e9c2bb9ad433d6566bad33efd588bd250abe4133a9fcee968114b5
|
data/Gemfile
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
# -*-
|
1
|
+
# -*- ruby -*-
|
2
2
|
#
|
3
|
-
# Copyright (C) 2011-
|
3
|
+
# Copyright (C) 2011-2025 Sutou Kouhei <kou@clear-code.com>
|
4
4
|
#
|
5
5
|
# This library is free software; you can redistribute it and/or
|
6
6
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -18,3 +18,13 @@
|
|
18
18
|
source "https://rubygems.org/"
|
19
19
|
|
20
20
|
gemspec
|
21
|
+
|
22
|
+
group :development, :test do
|
23
|
+
gem "bundler"
|
24
|
+
gem "rake"
|
25
|
+
end
|
26
|
+
|
27
|
+
group :test do
|
28
|
+
gem "test-unit"
|
29
|
+
end
|
30
|
+
|
data/{NEWS → NEWS.md}
RENAMED
@@ -1,8 +1,71 @@
|
|
1
|
-
|
1
|
+
# NEWS
|
2
2
|
|
3
|
-
|
3
|
+
## 1.6.2 - 2025-04-27
|
4
4
|
|
5
|
-
|
5
|
+
### Improvements
|
6
|
+
|
7
|
+
* Added support for detecting Homebrew's pkgconfig path without
|
8
|
+
`pkgconf`.
|
9
|
+
* [apche/arrow#46235](https://github.com/apache/arrow/issues/46245)
|
10
|
+
* Reported by Shizuo Fujita
|
11
|
+
|
12
|
+
### Thanks
|
13
|
+
|
14
|
+
* Shizuo Fujita
|
15
|
+
|
16
|
+
## 1.6.1 - 2025-04-17
|
17
|
+
|
18
|
+
### Improvements
|
19
|
+
|
20
|
+
* Added support for `--with-pkg-config-path`.
|
21
|
+
* [ruby-gnome/ruby-gnome#1670](https://github.com/ruby-gnome/ruby-gnome/issues/1670)
|
22
|
+
* Reported by Stanisław Pitucha
|
23
|
+
|
24
|
+
### Thanks
|
25
|
+
|
26
|
+
* Stanisław Pitucha
|
27
|
+
|
28
|
+
## 1.6.0 - 2025-03-02
|
29
|
+
|
30
|
+
### Improvements
|
31
|
+
|
32
|
+
* Changed to use only one file: `pkg-config.rb`
|
33
|
+
|
34
|
+
* Removed `English` dependency.
|
35
|
+
|
36
|
+
## 1.5.9 - 2025-01-08
|
37
|
+
|
38
|
+
### Improvements
|
39
|
+
|
40
|
+
* Added support for `.pc` that uses UTF-8.
|
41
|
+
|
42
|
+
## 1.5.8 - 2024-11-21
|
43
|
+
|
44
|
+
### Improvements
|
45
|
+
|
46
|
+
* Added support for pkgconf.
|
47
|
+
|
48
|
+
## 1.5.7 - 2024-10-24
|
49
|
+
|
50
|
+
### Improvements
|
51
|
+
|
52
|
+
* conda: Added support for `${CONDA_PREFIX}/share/pkgconfig`.
|
53
|
+
|
54
|
+
### Fixes
|
55
|
+
|
56
|
+
* Fixed `Cflags` nomralization
|
57
|
+
|
58
|
+
* GH-25
|
59
|
+
|
60
|
+
* Reported by Jean byroot Boussier
|
61
|
+
|
62
|
+
### Thanks
|
63
|
+
|
64
|
+
* Jean byroot Boussier
|
65
|
+
|
66
|
+
## 1.5.6 - 2023-11-19
|
67
|
+
|
68
|
+
### Improvements
|
6
69
|
|
7
70
|
* Added support for "<" and ">" operators in "Requires:".
|
8
71
|
|
@@ -10,296 +73,296 @@
|
|
10
73
|
|
11
74
|
Patch by Daisuke Fujimura
|
12
75
|
|
13
|
-
|
76
|
+
### Thanks
|
14
77
|
|
15
78
|
* Daisuke Fujimura
|
16
79
|
|
17
|
-
|
80
|
+
## 1.5.5 - 2023-09-05
|
18
81
|
|
19
|
-
|
82
|
+
### Fixes
|
20
83
|
|
21
84
|
* Fixed a bug in 1.5.4 that success detection doesn't work.
|
22
85
|
|
23
|
-
|
86
|
+
## 1.5.4 - 2023-09-05
|
24
87
|
|
25
|
-
|
88
|
+
### Improvements
|
26
89
|
|
27
90
|
* Added package version to unsatisfied version is only found case.
|
28
91
|
|
29
|
-
|
92
|
+
## 1.5.3 - 2023-08-29
|
30
93
|
|
31
|
-
|
94
|
+
### Improvements
|
32
95
|
|
33
96
|
* Accepted spaces between "=" and ":". For example, "prefix = /usr"
|
34
97
|
is accepted.
|
35
98
|
|
36
|
-
|
99
|
+
## 1.5.2 - 2023-06-25
|
37
100
|
|
38
|
-
|
101
|
+
### Improvements
|
39
102
|
|
40
103
|
* Added support for conda.
|
41
104
|
|
42
|
-
|
105
|
+
## 1.5.1 - 2022-11-23
|
43
106
|
|
44
|
-
|
107
|
+
### Improvements
|
45
108
|
|
46
109
|
* Improved the default search path. "/usr" in "/usr/bin/pkg-config"
|
47
110
|
isn't used for buidling the default search path if "pkg-config
|
48
111
|
--variable=pc_path pkg-config" is available.
|
49
112
|
[Reported by Watson][GitHub:#22]
|
50
113
|
|
51
|
-
|
114
|
+
## 1.5.0 - 2022-11-23
|
52
115
|
|
53
|
-
|
116
|
+
### Improvements
|
54
117
|
|
55
118
|
* Improved the default search path. "pkg-config --variable=pc_path
|
56
119
|
pkg-config" is used as the default search path if it's available.
|
57
120
|
[Reported by Watson][GitHub:#22]
|
58
121
|
|
59
|
-
|
122
|
+
## 1.4.9 - 2022-07-31
|
60
123
|
|
61
124
|
This is a bug fix release of 1.4.8. All 1.4.8 users should be upgraded
|
62
125
|
to 1.4.9.
|
63
126
|
|
64
|
-
|
127
|
+
### Fixes
|
65
128
|
|
66
129
|
* Fixed a regression bug in 1.4.8 that PkgConfig.have_package can't
|
67
130
|
detect nonexistent package.
|
68
131
|
|
69
|
-
|
132
|
+
## 1.4.8 - 2022-07-30
|
70
133
|
|
71
|
-
|
134
|
+
### Improvements
|
72
135
|
|
73
136
|
* Added support for showing found package version.
|
74
137
|
|
75
|
-
|
138
|
+
## 1.4.7 - 2022-01-16
|
76
139
|
|
77
|
-
|
140
|
+
### Improvements
|
78
141
|
|
79
142
|
* Added support for RubyInstaller2 3.1 or later.
|
80
143
|
[Reported by golirev][GitHub:ruby-gnome/ruby-gnome#1457]
|
81
144
|
|
82
|
-
|
145
|
+
### Thanks
|
83
146
|
|
84
147
|
* golirev
|
85
148
|
|
86
|
-
|
149
|
+
## 1.4.6 - 2021-04-12
|
87
150
|
|
88
|
-
|
151
|
+
### Improvements
|
89
152
|
|
90
153
|
* Improved support for .pc detection installed by Homebrew.
|
91
154
|
[Reported by Evan Shea][GitHub:rcairo/rcairo#66]
|
92
155
|
|
93
|
-
|
156
|
+
### Thanks
|
94
157
|
|
95
158
|
* Evan Shea
|
96
159
|
|
97
|
-
|
160
|
+
## 1.4.5 - 2021-02-04
|
98
161
|
|
99
|
-
|
162
|
+
### Improvements
|
100
163
|
|
101
164
|
* Added support for macOS 11.2.
|
102
165
|
[Reported by Ludovic Moutury][GitHub:rcairo/rcairo#69]
|
103
166
|
|
104
|
-
|
167
|
+
### Thanks
|
105
168
|
|
106
169
|
* Ludovic Moutury
|
107
170
|
|
108
|
-
|
171
|
+
## 1.4.4 - 2020-09-23
|
109
172
|
|
110
|
-
|
173
|
+
### Fixes
|
111
174
|
|
112
175
|
* Fixed a bug that NoMethodError instead of
|
113
176
|
PackageConfig::NotFoundError is raised.
|
114
177
|
[GitHub#21][Fixed by kojix2]
|
115
178
|
|
116
|
-
|
179
|
+
### Thanks
|
117
180
|
|
118
181
|
* kojix2
|
119
182
|
|
120
|
-
|
183
|
+
## 1.4.3 - 2020-09-15
|
121
184
|
|
122
|
-
|
185
|
+
### Improvements
|
123
186
|
|
124
187
|
* Changed to use PackageConfig::NotFoundError instead of RuntimeError
|
125
188
|
for exception on no .pc is found.
|
126
189
|
|
127
|
-
|
190
|
+
## 1.4.2 - 2020-08-10
|
128
191
|
|
129
|
-
|
192
|
+
### Improvements
|
130
193
|
|
131
194
|
* Added support for detecting pkgconfig path on RubyInstaller
|
132
195
|
without "ridk exec".
|
133
196
|
|
134
|
-
|
197
|
+
## 1.4.1 - 2020-02-10
|
135
198
|
|
136
|
-
|
199
|
+
### Improvements
|
137
200
|
|
138
201
|
* Added support for cycled depended .pc such as freetype2.pc and
|
139
202
|
harfbuzz.pc on PLD Linux.
|
140
203
|
[Reported by Jakub Bogusz]
|
141
204
|
|
142
|
-
|
205
|
+
### Thanks
|
143
206
|
|
144
207
|
* Jakub Bogusz
|
145
208
|
|
146
|
-
|
209
|
+
## 1.4.0 - 2019-10-24
|
147
210
|
|
148
|
-
|
211
|
+
### Improvements
|
149
212
|
|
150
213
|
* Improved Homebrew detection.
|
151
214
|
|
152
|
-
|
215
|
+
## 1.3.9 - 2019-09-28
|
153
216
|
|
154
|
-
|
217
|
+
### Improvements
|
155
218
|
|
156
219
|
* Added support for absolute path in Requires.
|
157
220
|
[GitHub#18][Reported by Josh Huckabee]
|
158
221
|
|
159
|
-
|
222
|
+
### Thanks
|
160
223
|
|
161
224
|
* Josh Huckabee
|
162
225
|
|
163
|
-
|
226
|
+
## 1.3.8 - 2019-08-13
|
164
227
|
|
165
|
-
|
228
|
+
### Improvements
|
166
229
|
|
167
230
|
* Added support for -framework on macOS.
|
168
231
|
[GitHub:ruby-gnome2/ruby-gnome2#1287][Reported by Viko]
|
169
232
|
|
170
|
-
|
233
|
+
### Thanks
|
171
234
|
|
172
235
|
* Viko
|
173
236
|
|
174
|
-
|
237
|
+
## 1.3.7 - 2019-03-17
|
175
238
|
|
176
|
-
|
239
|
+
### Improvements
|
177
240
|
|
178
241
|
* Added support for alphabet and _ only version.
|
179
242
|
[GitHub#17][Reported by xiejiangzhi]
|
180
243
|
|
181
|
-
|
244
|
+
### Thanks
|
182
245
|
|
183
246
|
* xiejiangzhi
|
184
247
|
|
185
|
-
|
248
|
+
## 1.3.6 - 2019-03-09
|
186
249
|
|
187
|
-
|
250
|
+
### Improvements
|
188
251
|
|
189
252
|
* Added support for Homebrew environment without pkg-config formula.
|
190
253
|
|
191
|
-
|
254
|
+
## 1.3.5 - 2019-03-08
|
192
255
|
|
193
|
-
|
256
|
+
### Fixes
|
194
257
|
|
195
258
|
* Fixed MSYS2 detection installed at non standard folder.
|
196
259
|
[GitHub:ruby-gnome2/ruby-gnome2#1271][Reported by Simon Arnaud]
|
197
260
|
|
198
|
-
|
261
|
+
### Thanks
|
199
262
|
|
200
263
|
* Simon Arnaud
|
201
264
|
|
202
|
-
|
265
|
+
## 1.3.4 - 2019-02-19
|
203
266
|
|
204
|
-
|
267
|
+
### Fixes
|
205
268
|
|
206
269
|
* Fixed 32bit MinGW Ruby detection.
|
207
270
|
[GitHub:ruby-gnome2/ruby-gnome2#1274][Reported by noanoa07]
|
208
271
|
|
209
|
-
|
272
|
+
### Thanks
|
210
273
|
|
211
274
|
* noanoa07
|
212
275
|
|
213
|
-
|
276
|
+
## 1.3.3 - 2019-02-10
|
214
277
|
|
215
|
-
|
278
|
+
### Improvements
|
216
279
|
|
217
280
|
* Improved MSYS2 detection on Windows.
|
218
281
|
[GitHub#16][Reported by dsisnero]
|
219
282
|
|
220
|
-
|
283
|
+
### Thanks
|
221
284
|
|
222
285
|
* dsisnero
|
223
286
|
|
224
|
-
|
287
|
+
## 1.3.2 - 2018-11-03
|
225
288
|
|
226
|
-
|
289
|
+
### Improvements
|
227
290
|
|
228
291
|
* Added support for Ruby installed by RubyInstaller for Windows with
|
229
292
|
MSYS2-Devkit.
|
230
293
|
|
231
|
-
|
294
|
+
## 1.3.1 - 2018-04-28
|
232
295
|
|
233
|
-
|
296
|
+
### Improvements
|
234
297
|
|
235
298
|
* Changed search order to find C flags.
|
236
299
|
[GitHub#6][Reported by HIGUCHI Daisuke]
|
237
300
|
* Before: Requires -> Requires.private
|
238
301
|
* After: Requires.private -> Requires
|
239
302
|
|
240
|
-
|
303
|
+
### Thanks
|
241
304
|
|
242
305
|
* HIGUCHI Daisuke
|
243
306
|
|
244
|
-
|
307
|
+
## 1.3.0 - 2018-04-10
|
245
308
|
|
246
|
-
|
309
|
+
### Improvements
|
247
310
|
|
248
311
|
* Added Ruby 2.0 on Ubuntu Trusty again.
|
249
312
|
|
250
|
-
|
313
|
+
## 1.2.9 - 2018-01-13
|
251
314
|
|
252
|
-
|
315
|
+
### Improvements
|
253
316
|
|
254
317
|
* Added more default paths for OpenBSD.
|
255
318
|
[GitHub#15][Reported by clintpachl]
|
256
319
|
|
257
|
-
|
320
|
+
### Thanks
|
258
321
|
|
259
322
|
* clintpachl
|
260
323
|
|
261
|
-
|
324
|
+
## 1.2.8 - 2017-10-19
|
262
325
|
|
263
|
-
|
326
|
+
### Improvements
|
264
327
|
|
265
328
|
* Improved macOS environment detection.
|
266
329
|
[Reported by Simeon Manolov]
|
267
330
|
|
268
|
-
|
331
|
+
### Thanks
|
269
332
|
|
270
333
|
* Simeon Manolov
|
271
334
|
|
272
|
-
|
335
|
+
## 1.2.7 - 2017-08-16
|
273
336
|
|
274
|
-
|
337
|
+
### Improvements
|
275
338
|
|
276
339
|
* Improved Homebrew repository detection.
|
277
340
|
[Reported by Wyatt Kirby]
|
278
341
|
|
279
|
-
|
342
|
+
### Thanks
|
280
343
|
|
281
344
|
* Wyatt Kirby
|
282
345
|
|
283
|
-
|
346
|
+
## 1.2.6 - 2017-08-13
|
284
347
|
|
285
|
-
|
348
|
+
### Improvements
|
286
349
|
|
287
350
|
* Improved Homebrew repository detection.
|
288
351
|
|
289
|
-
|
352
|
+
## 1.2.5 - 2017-08-10
|
290
353
|
|
291
|
-
|
354
|
+
### Improvements
|
292
355
|
|
293
356
|
* Supported Homebrew bundled .pc files.
|
294
357
|
[GitHub:rcairo/rcairo#49][Reported by choboy11]
|
295
358
|
|
296
|
-
|
359
|
+
### Thanks
|
297
360
|
|
298
361
|
* choboy11
|
299
362
|
|
300
|
-
|
363
|
+
## 1.2.4 - 2017-08-07
|
301
364
|
|
302
|
-
|
365
|
+
### Improvements
|
303
366
|
|
304
367
|
* Added `pkg-config` 0.29 or later compatible result support.
|
305
368
|
[GitHub#13][Reported by HIGUCHI Daisuke]
|
@@ -307,88 +370,88 @@ to 1.4.9.
|
|
307
370
|
* test: Updated expected value for the latest cairo.
|
308
371
|
[GitHub#14][Patch by HIGUCHI Daisuke]
|
309
372
|
|
310
|
-
|
373
|
+
### Thanks
|
311
374
|
|
312
375
|
* HIGUCHI Daisuke
|
313
376
|
|
314
|
-
|
377
|
+
## 1.2.3 - 2017-05-29
|
315
378
|
|
316
|
-
|
379
|
+
### Fixes
|
317
380
|
|
318
381
|
* Supported *-mingw32 Rubies without MSYS2 again.
|
319
382
|
|
320
|
-
|
383
|
+
## 1.2.2 - 2017-05-29
|
321
384
|
|
322
|
-
|
385
|
+
### Improvements
|
323
386
|
|
324
387
|
* Supported path normalization for MSYS2.
|
325
388
|
|
326
|
-
|
389
|
+
## 1.2.1 - 2017-05-29
|
327
390
|
|
328
|
-
|
391
|
+
### Improvements
|
329
392
|
|
330
393
|
* Supported MSYS2.
|
331
394
|
|
332
|
-
|
395
|
+
## 1.2.0 - 2017-04-25
|
333
396
|
|
334
|
-
|
397
|
+
### Improvements
|
335
398
|
|
336
399
|
* Supported x32 environment. [GitHub#12][Reported by Elan Ruusamäe]
|
337
400
|
|
338
|
-
|
401
|
+
### Thanks
|
339
402
|
|
340
403
|
* Elan Ruusamäe
|
341
404
|
|
342
|
-
|
405
|
+
## 1.1.9 - 2017-04-20
|
343
406
|
|
344
407
|
* Supported C++ compiler.
|
345
408
|
|
346
|
-
|
409
|
+
## 1.1.8 - 2017-04-19
|
347
410
|
|
348
411
|
* Stopped to require mkmf.
|
349
412
|
|
350
|
-
|
413
|
+
## 1.1.7 - 2015-01-16
|
351
414
|
|
352
415
|
* Added path for FreeBSD to default paths.
|
353
416
|
[Reported by Hajime UMEMOTO]
|
354
417
|
|
355
|
-
|
418
|
+
### Thanks
|
356
419
|
|
357
420
|
* Hajime UMEMOTO
|
358
421
|
|
359
|
-
|
422
|
+
## 1.1.6 - 2014/11/12
|
360
423
|
|
361
424
|
* Supported Ruby 2.1.
|
362
425
|
[GitHub:ruby-gnome2/ruby-gnome2#262][Reported by Steve Wills]
|
363
426
|
|
364
|
-
|
427
|
+
### Thanks
|
365
428
|
|
366
429
|
* Steve Wills
|
367
430
|
|
368
|
-
|
431
|
+
## 1.1.5 - 2013/12/29
|
369
432
|
|
370
433
|
* Supported XQuartz.
|
371
434
|
[GitHub:#10][Patch by Masafumi Yokoyama]
|
372
435
|
|
373
|
-
|
436
|
+
### Thanks
|
374
437
|
|
375
438
|
* Masafumi Yokoyama
|
376
439
|
|
377
|
-
|
440
|
+
## 1.1.4 - 2012/08/02
|
378
441
|
|
379
442
|
* Supported mswin64 as MSVC environment.
|
380
443
|
|
381
|
-
|
444
|
+
## 1.1.3 - 2012/01/29
|
382
445
|
|
383
446
|
* [GitHub #8] fix test broken by libpng version.
|
384
447
|
(Patch by Bohuslav Kabrda.)
|
385
448
|
* Used RbConfig instead of Config.
|
386
449
|
|
387
|
-
|
450
|
+
### Thanks
|
388
451
|
|
389
452
|
* Bohuslav Kabrda
|
390
453
|
|
391
|
-
|
454
|
+
## 1.1.2 - 2011/07/04
|
392
455
|
|
393
456
|
* [GitHub #2] fix test broken.
|
394
457
|
(Reported by Mamoru Tasaka.)
|
@@ -401,65 +464,65 @@ to 1.4.9.
|
|
401
464
|
* [GitHub #7] supported non i386 and amd64 architectures.
|
402
465
|
(Reported by Antonio Terceiro.)
|
403
466
|
|
404
|
-
|
467
|
+
### Thanks
|
405
468
|
|
406
469
|
* Mamoru Tasaka
|
407
470
|
* Antonio Terceiro
|
408
471
|
|
409
|
-
|
472
|
+
## 1.1.1 - 2011/05/03
|
410
473
|
|
411
474
|
* [ruby-gnome-devel-en] add
|
412
475
|
/usr/lib/i386-linux-gnu/pkgconfig to the default paths.
|
413
476
|
(Reported by Andrea B.C.)
|
414
477
|
|
415
|
-
|
478
|
+
### Thanks
|
416
479
|
|
417
480
|
* Funky Bibimba
|
418
481
|
|
419
|
-
|
482
|
+
## 1.1.0 - 2011/04/03
|
420
483
|
|
421
484
|
* [#3270846] add /usr/lib/x86_64-linux-gnu/pkgconfig to default paths.
|
422
485
|
(Reported by Funky Bibimbap)
|
423
486
|
|
424
|
-
|
487
|
+
### Thanks
|
425
488
|
|
426
489
|
* Funky Bibimba
|
427
490
|
|
428
|
-
|
491
|
+
## 1.0.8 - 2011/01/30
|
429
492
|
|
430
493
|
* fix a bug that multiple PKGConfig.add_path doesn't work.
|
431
494
|
|
432
|
-
|
495
|
+
## 1.0.7 - 2010/09/30
|
433
496
|
|
434
497
|
* suppress warnings on Ruby 1.9.
|
435
498
|
|
436
|
-
|
499
|
+
## 1.0.6 - 2010/09/23
|
437
500
|
|
438
501
|
* add PKGConfig.libs_only_L.
|
439
502
|
|
440
|
-
|
503
|
+
## 1.0.5 - 2010/09/23
|
441
504
|
|
442
505
|
* suppress duplicated configure arguments processing.
|
443
506
|
* use mkmf.rb message functions.
|
444
507
|
|
445
|
-
|
508
|
+
## 1.0.4 - 2010/09/23
|
446
509
|
|
447
510
|
* add PKGConfig.variable.
|
448
511
|
|
449
|
-
|
512
|
+
## 1.0.3 - 2010/09/07
|
450
513
|
|
451
514
|
* add path and override_variable customize API.
|
452
515
|
* support description.
|
453
516
|
|
454
|
-
|
517
|
+
## 1.0.2 - 2010/09/02
|
455
518
|
|
456
519
|
* fix packaing miss.
|
457
520
|
|
458
|
-
|
521
|
+
## 1.0.1 - 2010/09/02
|
459
522
|
|
460
523
|
* support installing without gem.
|
461
524
|
|
462
|
-
|
525
|
+
## 1.0.0 - 2010/09/02
|
463
526
|
|
464
527
|
* Initial release!
|
465
528
|
|
data/Rakefile
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
# -*-
|
1
|
+
# -*- ruby -*-
|
2
2
|
#
|
3
|
-
# Copyright (C) 2010-
|
3
|
+
# Copyright (C) 2010-2025 Sutou Kouhei <kou@clear-code.com>
|
4
4
|
#
|
5
5
|
# This library is free software; you can redistribute it and/or
|
6
6
|
# modify it under the terms of the GNU Lesser General Public
|
@@ -33,5 +33,9 @@ spec = helper.gemspec
|
|
33
33
|
|
34
34
|
desc "Run tests"
|
35
35
|
task :test do
|
36
|
-
ruby("test/run
|
36
|
+
ruby("test/run.rb")
|
37
37
|
end
|
38
|
+
|
39
|
+
release_task = Rake.application["release"]
|
40
|
+
# We use Trusted Publishing.
|
41
|
+
release_task.prerequisites.delete("release:rubygem_push")
|