coltrane 1.2.2 → 1.2.3
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/CHANGELOG.md +6 -0
- data/exe/coltrane +1 -1
- data/lib/coltrane/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 66297313d7ded1fd69e2b170e00136ed12d37a171a5821007934a43e22c05c64
|
|
4
|
+
data.tar.gz: 0b7efd8b8187bd8dadecf096f775c1d9cc502d9fb9d19faf5b58cdb77af9131c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bc2327a7e9e7bc8085cb72b31b32ab645e5c69a85c89ef8cd3ddee16ad448b5495b3b0c254d0b93f363e454a0772cedf37fd52302c442d6edf2cd1cce67645f4
|
|
7
|
+
data.tar.gz: edf937ae6e87508ba8d7a3f9909c16998c164fa6f89e53e897ec1418f10aca813b709854e30bd3e52842c0167a90b7d73bac7ad1957b2223713d104f33ae1b72
|
data/CHANGELOG.md
CHANGED
data/exe/coltrane
CHANGED
|
@@ -107,7 +107,7 @@ Mercenary.program(:Coltrane) do |p|
|
|
|
107
107
|
c.description 'Gives you chords of a progression in a key. Ex: coltrane progression I-IV-iv-V in Am --on guitar'
|
|
108
108
|
c.option(*@instrument_option)
|
|
109
109
|
c.option(*@flavor_option)
|
|
110
|
-
c.action do |(prog, _,
|
|
110
|
+
c.action do |(prog, _, key), on: 'text', flavor: 'notes'|
|
|
111
111
|
possible_method = prog.gsub('-', '_')
|
|
112
112
|
progression = if Coltrane::Progression.respond_to?(possible_method)
|
|
113
113
|
Coltrane::Progression.send(possible_method, note)
|
data/lib/coltrane/version.rb
CHANGED