coltrane 1.2.3 → 1.2.4
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 +3 -13
- data/coltrane.gemspec +1 -1
- data/lib/coltrane/version.rb +1 -1
- metadata +4 -5
- data/coltrane-1.1.2.gem +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b269a0644501532a2c011d225caf6432669d42682a1183d3be2f898dc32556c5
|
|
4
|
+
data.tar.gz: 7bdd218db4a3dfa93f8e7284790f46ba82c741fab325634f6de8e98400f911b3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 766256cb10eabb774666cf04ddc30a9a96bb537cdd50cfd982bda1726402b001ad371718a5cde6da759c68527715a72eaac4d1d9504696b34c2e17d9dd89828a
|
|
7
|
+
data.tar.gz: e2f235be7b7c7901e8cc4967bd695528009aed2bd8af1a51ea3900cf7724a219a6a01a071a6368633eb7a9f3f3d5de3fadbf116f00d200f2889291a797cebc7f
|
data/README.md
CHANGED
|
@@ -11,6 +11,8 @@ https://gitter.im/coltrane-music/Lobby
|
|
|
11
11
|
|
|
12
12
|
## CLI (Command Line Interface)
|
|
13
13
|
|
|
14
|
+

|
|
15
|
+
|
|
14
16
|
### Installation
|
|
15
17
|
|
|
16
18
|
#### Compiled binary
|
|
@@ -32,18 +34,6 @@ Once you install the gem the CLI is instaled in your system and it's ready to be
|
|
|
32
34
|
|
|
33
35
|
It allows you to query for notes and chords and display them on your favorite instrument. No sheet music reading skills needed. It also allows you to find scales with a chord and find chords shared between two scales (that is actually the main goal when I did this project).
|
|
34
36
|
|
|
35
|
-
Some screenshot examples:
|
|
36
|
-

|
|
37
|
-

|
|
38
|
-

|
|
39
|
-

|
|
40
|
-

|
|
41
|
-

|
|
42
|
-

|
|
43
|
-

|
|
44
|
-

|
|
45
|
-
|
|
46
|
-
|
|
47
37
|
## As a library
|
|
48
38
|
|
|
49
39
|
Add this line to your application's Gemfile:
|
|
@@ -65,7 +55,7 @@ require 'coltrane'
|
|
|
65
55
|
puts Coltrane::Scale.major('C').sevenths.map(&:name)
|
|
66
56
|
# => ["CM7", "Dm7", "Em7", "FM7", "G7", "Am7", "Bm7b5"]
|
|
67
57
|
|
|
68
|
-
puts Coltrane::Scale.having_chord('
|
|
58
|
+
puts Coltrane::Scale.having_chord('CM7').scales.map(&:name)
|
|
69
59
|
# => ["C Major", "G Major", "E Natural Minor", "A Natural Minor", "E Harmonic Minor", "B Flamenco"]
|
|
70
60
|
```
|
|
71
61
|
|
data/coltrane.gemspec
CHANGED
|
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
|
|
|
14
14
|
spec.homepage = "http://github.com/pedrozath/coltrane"
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
|
|
17
|
-
spec.required_ruby_version = '
|
|
17
|
+
spec.required_ruby_version = '>= 2.5'
|
|
18
18
|
|
|
19
19
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
|
20
20
|
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
data/lib/coltrane/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: coltrane
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Pedro Maciel
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-02-
|
|
11
|
+
date: 2018-02-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: facets
|
|
@@ -145,7 +145,6 @@ files:
|
|
|
145
145
|
- bin/sprockets
|
|
146
146
|
- bin/thor
|
|
147
147
|
- bin/tilt
|
|
148
|
-
- coltrane-1.1.2.gem
|
|
149
148
|
- coltrane.gemspec
|
|
150
149
|
- data/qualities.yml
|
|
151
150
|
- db/cache.sqlite3
|
|
@@ -197,9 +196,9 @@ require_paths:
|
|
|
197
196
|
- lib
|
|
198
197
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
199
198
|
requirements:
|
|
200
|
-
- - "
|
|
199
|
+
- - ">="
|
|
201
200
|
- !ruby/object:Gem::Version
|
|
202
|
-
version: '2.
|
|
201
|
+
version: '2.5'
|
|
203
202
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
204
203
|
requirements:
|
|
205
204
|
- - ">="
|
data/coltrane-1.1.2.gem
DELETED
|
Binary file
|