coltrane 3.4.0 → 3.4.1
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 +3 -0
- data/Gemfile.lock +2 -2
- data/lib/coltrane/version.rb +1 -1
- data/lib/core_ext.rb +0 -4
- metadata +2 -3
- data/lib/coltrane/theory/mode.rb +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0c0be48a3a5eee6d9606276f710456f10b804fad5b5ccd5f5c4e92c85546d648
|
|
4
|
+
data.tar.gz: 1bf6c3ea5989d372eb4ed7fcdb7ae84af4aecf380c90b952225a401f5f8a1fb5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4e48f55e1468fe6b906acdf7891faeb130f46a54dc89f016b68b3b9f10eaf5890d736c03644ec10620bda377c01f3f6d1679d4888d6d14ece9201eddd322dbef
|
|
7
|
+
data.tar.gz: 7c4025ec563464a25cf0869e06a534ae141ed67fa296569d71d37fc7d10948433d9782c0e9cd438a4ff6f3b8f1dd450e56d88a0d242ba303d2f26b1ff3746147
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,9 @@
|
|
|
5
5
|
- Fix chords so that they generate a barre and a non-barre version and prevent
|
|
6
6
|
barre chords from picking notes before the barre.
|
|
7
7
|
|
|
8
|
+
## [3.4.1]
|
|
9
|
+
- Removes #dig monkey-patching
|
|
10
|
+
|
|
8
11
|
## [3.4.0]
|
|
9
12
|
- Adds `find-guitar-chord` command. It allows discovering a guitar chord name.
|
|
10
13
|
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
coltrane (3.4.
|
|
4
|
+
coltrane (3.4.1)
|
|
5
5
|
color (~> 1.8)
|
|
6
6
|
dry-monads (~> 0.4)
|
|
7
7
|
paint (~> 2.0)
|
|
@@ -18,7 +18,7 @@ GEM
|
|
|
18
18
|
concurrent-ruby (1.0.5)
|
|
19
19
|
diff-lcs (1.3)
|
|
20
20
|
docile (1.3.0)
|
|
21
|
-
dry-core (0.4.
|
|
21
|
+
dry-core (0.4.7)
|
|
22
22
|
concurrent-ruby (~> 1.0)
|
|
23
23
|
dry-equalizer (0.2.1)
|
|
24
24
|
dry-monads (0.4.0)
|
data/lib/coltrane/version.rb
CHANGED
data/lib/core_ext.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: 3.4.
|
|
4
|
+
version: 3.4.1
|
|
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-
|
|
11
|
+
date: 2018-07-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tty-reader
|
|
@@ -229,7 +229,6 @@ files:
|
|
|
229
229
|
- lib/coltrane/theory/interval_class.rb
|
|
230
230
|
- lib/coltrane/theory/interval_sequence.rb
|
|
231
231
|
- lib/coltrane/theory/key.rb
|
|
232
|
-
- lib/coltrane/theory/mode.rb
|
|
233
232
|
- lib/coltrane/theory/notable_progressions.rb
|
|
234
233
|
- lib/coltrane/theory/note.rb
|
|
235
234
|
- lib/coltrane/theory/note_set.rb
|
data/lib/coltrane/theory/mode.rb
DELETED
|
File without changes
|