ramekin 0.2.6 → 0.2.8
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/README.md +7 -7
- data/gembin/ramekin +1 -1
- data/lib/ramekin/cli.rb +7 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 822404007ec094a4910d097982e43afd844eaefa1b561a6a51b90c005c23e970
|
4
|
+
data.tar.gz: a67f165b4ac578fae530f10080743d503bda72ecc8e4aaffe19034db426abe65
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 49d18c1c3b746d6866b4aec8e8aa400b42a296437326fd0a76a7c5736aab1e92ed1ffa33d55c7053daa876b317e03d34cb85c29ccdd87dcb616057e5c2dc53b3
|
7
|
+
data.tar.gz: 3097307fb155950f8dbd239a36eba3e594220738066477fbd695d89a54f9faf848e00e8f7298ac837c0f18d27a89a0956b17f9779fdd65646412b62685ab1917
|
data/README.md
CHANGED
@@ -31,7 +31,7 @@ Then:
|
|
31
31
|
$ ramekin setup
|
32
32
|
|
33
33
|
# OR, if you want a la carte:
|
34
|
-
$ ramekin setup --
|
34
|
+
$ ramekin setup --packs # downloads packs from smwc
|
35
35
|
$ ramekin setup --amk # downloads and sets up AddmusicK
|
36
36
|
$ ramekin setup --spc # downloads and sets up an SPC player
|
37
37
|
```
|
@@ -55,7 +55,7 @@ ramekin --pack my_cool_pack=/path/to/my_cool_pack [...]
|
|
55
55
|
Specifies an additional custom sample location.
|
56
56
|
Files compiled this way should use #pack "my_cool_pack",
|
57
57
|
and sample paths relative to the deepest common path that
|
58
|
-
contains .brr files. Use with `
|
58
|
+
contains .brr files. Use with `pack --list my_cool_pack` to
|
59
59
|
see details.
|
60
60
|
|
61
61
|
ramekin compile -i filename.rmk [flags]
|
@@ -99,9 +99,9 @@ ramekin setup [flags]
|
|
99
99
|
--amk
|
100
100
|
downloads and sets up AddMusicK and asar.
|
101
101
|
(requires cmake make to be available on mac/linux)
|
102
|
-
--
|
103
|
-
downloads
|
104
|
-
(equivalent to
|
102
|
+
--packs
|
103
|
+
downloads BRR packs from SMW Central.
|
104
|
+
(equivalent to pack --update)
|
105
105
|
--spc
|
106
106
|
downloads and sets up a default SPC player.
|
107
107
|
(requires make and pkg-config to be available on mac/linux)
|
@@ -213,7 +213,7 @@ Ramekin allows you to extremely easily use BRR packs from SMW Central's reposito
|
|
213
213
|
To load a pack from SMW Central, use `#pack` with the pack's name on SMW Central. For example, let's say I wanted to use samples from Chrono Trigger. I can search that with:
|
214
214
|
|
215
215
|
```console
|
216
|
-
ramekin
|
216
|
+
ramekin pack --list chrono
|
217
217
|
```
|
218
218
|
|
219
219
|
This will show us a pack named "Chrono Trigger" along with a bunch of files with a `.brr` extension. To use the pack, add:
|
@@ -444,7 +444,7 @@ where `/path/to/my_cool_pack` is replaced with a relative path to your BRR files
|
|
444
444
|
If Ramekin is having trouble finding your BRR files, try:
|
445
445
|
|
446
446
|
```console
|
447
|
-
$ ramekin --pack 'my cool pack=/path/to/my_cool_pack'
|
447
|
+
$ ramekin --pack 'my cool pack=/path/to/my_cool_pack' pack --list 'my cool pack'
|
448
448
|
```
|
449
449
|
|
450
450
|
which will display the paths it expects you to use for each BRR sample it found.
|
data/gembin/ramekin
CHANGED
data/lib/ramekin/cli.rb
CHANGED
@@ -276,6 +276,8 @@ module Ramekin
|
|
276
276
|
end
|
277
277
|
|
278
278
|
tempfiles.each { |path| FileUtils.rm_r(path) if path && !path.empty? }
|
279
|
+
|
280
|
+
return 0
|
279
281
|
end
|
280
282
|
|
281
283
|
def package(*argv)
|
@@ -335,7 +337,7 @@ module Ramekin
|
|
335
337
|
when '--amk'
|
336
338
|
@setup_amk = true
|
337
339
|
@default_action = false
|
338
|
-
when '--packages'
|
340
|
+
when '--packages', '--packs'
|
339
341
|
@setup_packages = true
|
340
342
|
@default_action = false
|
341
343
|
when '--spc'
|
@@ -363,6 +365,8 @@ module Ramekin
|
|
363
365
|
if @setup_packages
|
364
366
|
SamplePack.download_all!
|
365
367
|
end
|
368
|
+
|
369
|
+
return 0
|
366
370
|
end
|
367
371
|
|
368
372
|
def search(term, list_matched: false, search_brr: false)
|
@@ -385,6 +389,8 @@ module Ramekin
|
|
385
389
|
end
|
386
390
|
end
|
387
391
|
end
|
392
|
+
|
393
|
+
return 0
|
388
394
|
end
|
389
395
|
|
390
396
|
def dump_brrs(pack, brrs)
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ramekin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- jneen
|
8
8
|
bindir: gembin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-22 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: strscan
|