music_set_theory 0.0.2 → 0.0.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/README.md +5 -6
- data/lib/music_set_theory/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: e3d6c653105c33d0aad4903ab2f5fc4e3df1092174fea8f44277f422f0dbb6c6
|
4
|
+
data.tar.gz: 572212c3e54b19770e15483658cb4e1a5c4193f26ba9716048e80959e2969ea5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f618cb4c86604a1432d7a4cb1b330cad6551a3b2da38d036b46b31215000d97cd33e0ac245fbe3328eec32b7708154ed1393126c95797cc1f99fb5d3b36629c0
|
7
|
+
data.tar.gz: b04ee383b072f6ecca89f5cbc05cc2e6e44f0c4b886777f76a7ee824c3faeae83062cd7bd2f015d0ebb190771ab7eb631ced7b1a3634ec788e0c379deb4568e2
|
data/README.md
CHANGED
@@ -9,20 +9,19 @@ The music theory treats notes and the relationships among them, i.e., temperamen
|
|
9
9
|
|
10
10
|
## Installation
|
11
11
|
|
12
|
-
TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
|
13
|
-
|
14
12
|
Install the gem and add to the application's Gemfile by executing:
|
15
13
|
|
16
14
|
```bash
|
17
|
-
bundle add
|
15
|
+
bundle add music_set_theory
|
18
16
|
```
|
19
17
|
|
20
18
|
If bundler is not being used to manage dependencies, install the gem by executing:
|
21
19
|
|
22
20
|
```bash
|
23
|
-
gem install
|
21
|
+
gem install music_set_theory
|
24
22
|
```
|
25
23
|
|
24
|
+
|
26
25
|
## Usage
|
27
26
|
|
28
27
|
See the `examples/` directory. The scripts for listing chords and scales are there.
|
@@ -43,13 +42,13 @@ If you want to test all:
|
|
43
42
|
bundle exec rake test
|
44
43
|
```
|
45
44
|
|
46
|
-
test a specified
|
45
|
+
test a specified test case:
|
47
46
|
|
48
47
|
```bash
|
49
48
|
TEST=./test/something_test.rb bundle exec rake test
|
50
49
|
```
|
51
50
|
|
52
|
-
If you want to test
|
51
|
+
If you want to test specified test method(s), then:
|
53
52
|
|
54
53
|
```bash
|
55
54
|
TESTOPTS=--name=/pattern-matches-to-the-description/ TEST=./test/something_test.rb bundle exec rake test
|