coltrane 1.2.3 → 1.2.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 66297313d7ded1fd69e2b170e00136ed12d37a171a5821007934a43e22c05c64
4
- data.tar.gz: 0b7efd8b8187bd8dadecf096f775c1d9cc502d9fb9d19faf5b58cdb77af9131c
3
+ metadata.gz: b269a0644501532a2c011d225caf6432669d42682a1183d3be2f898dc32556c5
4
+ data.tar.gz: 7bdd218db4a3dfa93f8e7284790f46ba82c741fab325634f6de8e98400f911b3
5
5
  SHA512:
6
- metadata.gz: bc2327a7e9e7bc8085cb72b31b32ab645e5c69a85c89ef8cd3ddee16ad448b5495b3b0c254d0b93f363e454a0772cedf37fd52302c442d6edf2cd1cce67645f4
7
- data.tar.gz: edf937ae6e87508ba8d7a3f9909c16998c164fa6f89e53e897ec1418f10aca813b709854e30bd3e52842c0167a90b7d73bac7ad1957b2223713d104f33ae1b72
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
+ ![Screenshot](img/using-coltrane.gif)
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
- ![Screenshot](img/screen-3.png)
37
- ![Screenshot](img/screen-2.png)
38
- ![Screenshot](img/screen-9.png)
39
- ![Screenshot](img/screen-8.png)
40
- ![Screenshot](img/screen-10.png)
41
- ![Screenshot](img/screen-1.png)
42
- ![Screenshot](img/screen-4.png)
43
- ![Screenshot](img/screen-5.png)
44
- ![Screenshot](img/screen-6.png)
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('Cmaj7').scales.map(&:name)
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 = '~> 2.3'
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.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Coltrane
4
- VERSION = '1.2.3'
4
+ VERSION = '1.2.4'
5
5
  end
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.3
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-18 00:00:00.000000000 Z
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.3'
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