ramekin 0.2.5 → 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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +18 -11
  3. data/gembin/ramekin +1 -1
  4. data/lib/ramekin/cli.rb +2 -1
  5. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 95057d0af759892ede884da43667ad0fc05366451bb8416a696bec369e6fb2a0
4
- data.tar.gz: 66263b7127f80e3103c23b836a5587b02a390c682a194552a5fe5350b79b72af
3
+ metadata.gz: 41708c800b1be418fd2b822f186c05050cf6609d4c5df882d665f65a5d4271a3
4
+ data.tar.gz: 859b92263a4f5e0108436ce915c7e64bf4efcf6769fbf8b7400a91f323aa52ec
5
5
  SHA512:
6
- metadata.gz: 5472514c2ae5edf9a979e7b251f188518b4095a1cea88052e44c7e11fe42912ef6349c4e797b07e09b608772f4d73d91aa8d767807e55da5efb2450c0a40f1f7
7
- data.tar.gz: 9d2f76c65d0091998970069dc49b8632d3b73c5256334a888cef06a003e5d6a39eb88d5b54bebbc0fe2e0a7a4acd9cceafdc7d76d5f2aaf56e0604073a45c921
6
+ metadata.gz: 254ca788893263a8062aeaafdbf11be7430721a067fa3c76c731e53ef3e38e5f806db23fe472e48d221f9b2947c15148f8f37cdda5ead244af77f36354ebf3cc
7
+ data.tar.gz: 900584ddce1cb339de309b1d8d3f28d394d29513f128e9f5686ed75567dbd250367c6418424a29367ed78394c09e6684bcc59fc5a332bcbed20b870b52888f19
data/README.md CHANGED
@@ -20,14 +20,20 @@ First, [Install Ruby](https://ruby-lang.org). Windows users can use [RubyInstall
20
20
 
21
21
  Run:
22
22
 
23
- ```
24
- gem install ramekin
23
+ ```console
24
+ $ gem install ramekin
25
25
  ```
26
26
 
27
27
  Then:
28
28
 
29
- ```
30
- ramekin setup
29
+ ```console
30
+ # sets up everything automatically
31
+ $ ramekin setup
32
+
33
+ # OR, if you want a la carte:
34
+ $ ramekin setup --packs # downloads packs from smwc
35
+ $ ramekin setup --amk # downloads and sets up AddmusicK
36
+ $ ramekin setup --spc # downloads and sets up an SPC player
31
37
  ```
32
38
 
33
39
  ### Manual Installation
@@ -49,7 +55,7 @@ ramekin --pack my_cool_pack=/path/to/my_cool_pack [...]
49
55
  Specifies an additional custom sample location.
50
56
  Files compiled this way should use #pack "my_cool_pack",
51
57
  and sample paths relative to the deepest common path that
52
- contains .brr files. Use with `package --list my_cool_pack` to
58
+ contains .brr files. Use with `pack --list my_cool_pack` to
53
59
  see details.
54
60
 
55
61
  ramekin compile -i filename.rmk [flags]
@@ -92,12 +98,13 @@ ramekin setup [flags]
92
98
  flags:
93
99
  --amk
94
100
  downloads and sets up AddMusicK and asar.
95
- (requires cmake and make to be available)
96
- --packages
97
- downloads packages from SMW Central.
98
- (equivalent to package --update)
101
+ (requires cmake make to be available on mac/linux)
102
+ --packs
103
+ downloads BRR packs from SMW Central.
104
+ (equivalent to pack --update)
99
105
  --spc
100
106
  downloads and sets up a default SPC player.
107
+ (requires make and pkg-config to be available on mac/linux)
101
108
  --all (default)
102
109
  runs all of the above setup steps
103
110
  --force
@@ -206,7 +213,7 @@ Ramekin allows you to extremely easily use BRR packs from SMW Central's reposito
206
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:
207
214
 
208
215
  ```console
209
- ramekin package --list chrono
216
+ ramekin pack --list chrono
210
217
  ```
211
218
 
212
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:
@@ -437,7 +444,7 @@ where `/path/to/my_cool_pack` is replaced with a relative path to your BRR files
437
444
  If Ramekin is having trouble finding your BRR files, try:
438
445
 
439
446
  ```console
440
- $ 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'
441
448
  ```
442
449
 
443
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'
@@ -349,6 +349,7 @@ module Ramekin
349
349
  if @default_action
350
350
  @setup_packages = true
351
351
  @setup_amk = true
352
+ @setup_spc = true
352
353
  end
353
354
 
354
355
  if @setup_amk
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.5
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-12 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