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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2a54615c8b9ddf6ecabe27b78c6d84d76fb9c618fb3120267eadd21ed67e7267
4
- data.tar.gz: 9d56b5499b87e6eed6e6c36cf3d396885b6cfb28340f855e79ae8ce2e8fecc0c
3
+ metadata.gz: e3d6c653105c33d0aad4903ab2f5fc4e3df1092174fea8f44277f422f0dbb6c6
4
+ data.tar.gz: 572212c3e54b19770e15483658cb4e1a5c4193f26ba9716048e80959e2969ea5
5
5
  SHA512:
6
- metadata.gz: ffabf6585aade8f22055f93594e9b0f265f4da8fc110917a0460072abb67b2b82953a72c4d31dab145ea9bccdf91bb51743d26f371a1e112f41a201c82b62831
7
- data.tar.gz: d5e6d8ed0e69e4e9a865cb233ff96efe92ba48690ae5ac3a7a087ec03e6a8b77e4d3d57e46d96a43528fce92985b6111cba4c86252f0f0dab033591f8a63d45f
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 UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
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 UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
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 one:
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 a test in a specified file, then:
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
@@ -4,7 +4,7 @@
4
4
  #
5
5
 
6
6
  module MusicSetTheory
7
- VERSION = "0.0.2"
7
+ VERSION = "0.0.3"
8
8
  end
9
9
 
10
10
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: music_set_theory
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - YAMAMOTO, Masayuki