music_set_theory 0.0.2
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 +7 -0
- data/.standard.yml +3 -0
- data/CHANGELOG.md +5 -0
- data/LICENSE.txt +21 -0
- data/README.md +104 -0
- data/Rakefile +14 -0
- data/examples/mst_chords.rb +25 -0
- data/examples/mst_temperament.rb +46 -0
- data/lib/music_set_theory/chord_generator.rb +331 -0
- data/lib/music_set_theory/chords.rb +406 -0
- data/lib/music_set_theory/musutility.rb +284 -0
- data/lib/music_set_theory/scales.rb +456 -0
- data/lib/music_set_theory/temperament.rb +783 -0
- data/lib/music_set_theory/version.rb +11 -0
- data/lib/music_set_theory.rb +24 -0
- data/sig/music_theory.rbs +4 -0
- metadata +73 -0
@@ -0,0 +1,24 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
#
|
3
|
+
# filename: music_set_theory.rb
|
4
|
+
#
|
5
|
+
|
6
|
+
#
|
7
|
+
#
|
8
|
+
#
|
9
|
+
module MusicSetTheory
|
10
|
+
# class Error < StandardError; end
|
11
|
+
end
|
12
|
+
require_relative "music_set_theory/version"
|
13
|
+
|
14
|
+
|
15
|
+
#
|
16
|
+
#
|
17
|
+
#
|
18
|
+
require_relative "music_set_theory/musutility"
|
19
|
+
require_relative "music_set_theory/temperament"
|
20
|
+
require_relative "music_set_theory/scales"
|
21
|
+
require_relative "music_set_theory/chords"
|
22
|
+
|
23
|
+
|
24
|
+
#### endof filename: music_set_theory.rb.
|
metadata
ADDED
@@ -0,0 +1,73 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: music_set_theory
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- YAMAMOTO, Masayuki
|
8
|
+
bindir: exe
|
9
|
+
cert_chain: []
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
|
+
dependencies:
|
12
|
+
- !ruby/object:Gem::Dependency
|
13
|
+
name: romanumerals
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
15
|
+
requirements:
|
16
|
+
- - "~>"
|
17
|
+
- !ruby/object:Gem::Version
|
18
|
+
version: '0.2'
|
19
|
+
type: :runtime
|
20
|
+
prerelease: false
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
22
|
+
requirements:
|
23
|
+
- - "~>"
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: '0.2'
|
26
|
+
description: A music theory library based on Python's `musictheory` package.
|
27
|
+
email:
|
28
|
+
- mephistobooks@users.noreply.github.com
|
29
|
+
executables: []
|
30
|
+
extensions: []
|
31
|
+
extra_rdoc_files: []
|
32
|
+
files:
|
33
|
+
- ".standard.yml"
|
34
|
+
- CHANGELOG.md
|
35
|
+
- LICENSE.txt
|
36
|
+
- README.md
|
37
|
+
- Rakefile
|
38
|
+
- examples/mst_chords.rb
|
39
|
+
- examples/mst_temperament.rb
|
40
|
+
- lib/music_set_theory.rb
|
41
|
+
- lib/music_set_theory/chord_generator.rb
|
42
|
+
- lib/music_set_theory/chords.rb
|
43
|
+
- lib/music_set_theory/musutility.rb
|
44
|
+
- lib/music_set_theory/scales.rb
|
45
|
+
- lib/music_set_theory/temperament.rb
|
46
|
+
- lib/music_set_theory/version.rb
|
47
|
+
- sig/music_theory.rbs
|
48
|
+
homepage: https://voidptrjp.blogspot.com/2025/07/musictheorygem.html
|
49
|
+
licenses:
|
50
|
+
- MIT
|
51
|
+
metadata:
|
52
|
+
allowed_push_host: https://rubygems.org
|
53
|
+
homepage_uri: https://voidptrjp.blogspot.com/2025/07/musictheorygem.html
|
54
|
+
source_code_uri: https://github.com/mephistobooks/music_set_theory
|
55
|
+
changelog_uri: https://github.com/mephistobooks/music_set_theory/CHANGELOG.md
|
56
|
+
rdoc_options: []
|
57
|
+
require_paths:
|
58
|
+
- lib
|
59
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - ">="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: 3.1.0
|
64
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
requirements: []
|
70
|
+
rubygems_version: 3.6.9
|
71
|
+
specification_version: 4
|
72
|
+
summary: A music theory library for Ruby.
|
73
|
+
test_files: []
|