ramekin 0.2.6 → 0.2.7

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9726fcbd5b1c6c259b74bc78d4fb4d239ccdfabafb084fb6dc5fbeb1be9f9d71
4
- data.tar.gz: 64edb5ef4a54b8d40f35d18b1cdafb6fe9ade0302519f1b6f401c5242bb86492
3
+ metadata.gz: 41708c800b1be418fd2b822f186c05050cf6609d4c5df882d665f65a5d4271a3
4
+ data.tar.gz: 859b92263a4f5e0108436ce915c7e64bf4efcf6769fbf8b7400a91f323aa52ec
5
5
  SHA512:
6
- metadata.gz: 9e81ecbfbff4052f80b47395a3412a468d35facaafc61c92361520b73e9394873b6715efdf448f68c5af1554c54d2b4e5dfd4da0980dece9465346f7368a73b9
7
- data.tar.gz: f7db3124b019e4607534449578bc7fd0989c36f6140faa6bd653c97eb8fca9dec00ed55ae9d6ded3be19f6540d68a89e60841a83ea13f7be186206269f9ec738
6
+ metadata.gz: 254ca788893263a8062aeaafdbf11be7430721a067fa3c76c731e53ef3e38e5f806db23fe472e48d221f9b2947c15148f8f37cdda5ead244af77f36354ebf3cc
7
+ data.tar.gz: 900584ddce1cb339de309b1d8d3f28d394d29513f128e9f5686ed75567dbd250367c6418424a29367ed78394c09e6684bcc59fc5a332bcbed20b870b52888f19
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 --packages # downloads packages from smwc
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 `package --list my_cool_pack` to
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
- --packages
103
- downloads packages from SMW Central.
104
- (equivalent to package --update)
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 package --list chrono
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' package --list '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
@@ -18,4 +18,4 @@ end
18
18
  require_relative '../lib/ramekin'
19
19
  require_relative '../lib/ramekin/cli'
20
20
 
21
- Ramekin::CLI.main(*ARGV)
21
+ exit(Ramekin::CLI.main(*ARGV) || 0)
data/lib/ramekin/cli.rb CHANGED
@@ -335,7 +335,7 @@ module Ramekin
335
335
  when '--amk'
336
336
  @setup_amk = true
337
337
  @default_action = false
338
- when '--packages'
338
+ when '--packages', '--packs'
339
339
  @setup_packages = true
340
340
  @default_action = false
341
341
  when '--spc'
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.6
4
+ version: 0.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - jneen
8
8
  bindir: gembin
9
9
  cert_chain: []
10
- date: 2025-03-15 00:00:00.000000000 Z
10
+ date: 2025-03-22 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: strscan