zgomot 1.0.2 → 1.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.
- data/README.rdoc +52 -14
- data/Rakefile +1 -0
- data/VERSION +1 -1
- data/examples/cycle.rb +13 -0
- data/examples/cycle_note_list.rb +14 -0
- data/examples/dynamic_length.rb +18 -0
- data/examples/dynamic_length_perc.rb +22 -0
- data/examples/geco_input.rb +16 -0
- data/examples/simple_input.rb +6 -2
- data/examples/simple_note_list.rb +12 -0
- data/examples/zgomot_streams.rb +7 -3
- data/lib/zgomot.rb +1 -0
- data/lib/zgomot/boot.rb +2 -0
- data/lib/zgomot/comp.rb +1 -0
- data/lib/zgomot/comp/chord.rb +8 -2
- data/lib/zgomot/comp/mode.rb +1 -1
- data/lib/zgomot/comp/note_list.rb +68 -0
- data/lib/zgomot/comp/pattern.rb +12 -4
- data/lib/zgomot/comp/perc.rb +34 -64
- data/lib/zgomot/comp/progression.rb +20 -7
- data/lib/zgomot/drivers/core_midi.rb +14 -5
- data/lib/zgomot/main.rb +50 -1
- data/lib/zgomot/midi/cc.rb +15 -9
- data/lib/zgomot/midi/dispatcher.rb +8 -0
- data/lib/zgomot/midi/note.rb +8 -11
- data/lib/zgomot/midi/stream.rb +11 -1
- data/lib/zgomot/ui/windows.rb +139 -66
- data/zgomot.gems +1 -0
- data/zgomot.gemspec +7 -2
- metadata +25 -2
data/zgomot.gems
CHANGED
data/zgomot.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "zgomot"
|
8
|
-
s.version = "1.0.
|
8
|
+
s.version = "1.0.3"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Troy Stribling"]
|
12
|
-
s.date = "2013-08-
|
12
|
+
s.date = "2013-08-15"
|
13
13
|
s.email = "troy.stribling@gmail.com"
|
14
14
|
s.executables = ["zgomot"]
|
15
15
|
s.extra_rdoc_files = [
|
@@ -48,6 +48,7 @@ Gem::Specification.new do |s|
|
|
48
48
|
"examples/simple_chords.rb",
|
49
49
|
"examples/simple_input.rb",
|
50
50
|
"examples/simple_markov.rb",
|
51
|
+
"examples/simple_note_list.rb",
|
51
52
|
"examples/simple_notes.rb",
|
52
53
|
"examples/zgomot.yml",
|
53
54
|
"examples/zgomot_streams.rb",
|
@@ -58,6 +59,7 @@ Gem::Specification.new do |s|
|
|
58
59
|
"lib/zgomot/comp/markov.rb",
|
59
60
|
"lib/zgomot/comp/mode.rb",
|
60
61
|
"lib/zgomot/comp/note.rb",
|
62
|
+
"lib/zgomot/comp/note_list.rb",
|
61
63
|
"lib/zgomot/comp/pattern.rb",
|
62
64
|
"lib/zgomot/comp/perc.rb",
|
63
65
|
"lib/zgomot/comp/permutation.rb",
|
@@ -100,15 +102,18 @@ Gem::Specification.new do |s|
|
|
100
102
|
s.add_runtime_dependency(%q<ffi>, ["~> 1.0.9"])
|
101
103
|
s.add_runtime_dependency(%q<rainbow>, ["~> 1.1.4"])
|
102
104
|
s.add_runtime_dependency(%q<pry>, ["~> 0.9.12.2"])
|
105
|
+
s.add_runtime_dependency(%q<fssm>, ["~> 0.2.10"])
|
103
106
|
else
|
104
107
|
s.add_dependency(%q<ffi>, ["~> 1.0.9"])
|
105
108
|
s.add_dependency(%q<rainbow>, ["~> 1.1.4"])
|
106
109
|
s.add_dependency(%q<pry>, ["~> 0.9.12.2"])
|
110
|
+
s.add_dependency(%q<fssm>, ["~> 0.2.10"])
|
107
111
|
end
|
108
112
|
else
|
109
113
|
s.add_dependency(%q<ffi>, ["~> 1.0.9"])
|
110
114
|
s.add_dependency(%q<rainbow>, ["~> 1.1.4"])
|
111
115
|
s.add_dependency(%q<pry>, ["~> 0.9.12.2"])
|
116
|
+
s.add_dependency(%q<fssm>, ["~> 0.2.10"])
|
112
117
|
end
|
113
118
|
end
|
114
119
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zgomot
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-08-
|
12
|
+
date: 2013-08-18 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: ffi
|
@@ -59,6 +59,22 @@ dependencies:
|
|
59
59
|
- - ~>
|
60
60
|
- !ruby/object:Gem::Version
|
61
61
|
version: 0.9.12.2
|
62
|
+
- !ruby/object:Gem::Dependency
|
63
|
+
name: fssm
|
64
|
+
requirement: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
66
|
+
requirements:
|
67
|
+
- - ~>
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: 0.2.10
|
70
|
+
type: :runtime
|
71
|
+
prerelease: false
|
72
|
+
version_requirements: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ~>
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: 0.2.10
|
62
78
|
description:
|
63
79
|
email: troy.stribling@gmail.com
|
64
80
|
executables:
|
@@ -76,8 +92,13 @@ files:
|
|
76
92
|
- VERSION
|
77
93
|
- bin/zgomot
|
78
94
|
- examples/arp_chords.rb
|
95
|
+
- examples/cycle.rb
|
96
|
+
- examples/cycle_note_list.rb
|
79
97
|
- examples/delay.rb
|
98
|
+
- examples/dynamic_length.rb
|
99
|
+
- examples/dynamic_length_perc.rb
|
80
100
|
- examples/full_scale_notes.rb
|
101
|
+
- examples/geco_input.rb
|
81
102
|
- examples/inv_chords.rb
|
82
103
|
- examples/modes_notes.rb
|
83
104
|
- examples/notes.rb
|
@@ -99,6 +120,7 @@ files:
|
|
99
120
|
- examples/simple_chords.rb
|
100
121
|
- examples/simple_input.rb
|
101
122
|
- examples/simple_markov.rb
|
123
|
+
- examples/simple_note_list.rb
|
102
124
|
- examples/simple_notes.rb
|
103
125
|
- examples/zgomot.yml
|
104
126
|
- examples/zgomot_streams.rb
|
@@ -109,6 +131,7 @@ files:
|
|
109
131
|
- lib/zgomot/comp/markov.rb
|
110
132
|
- lib/zgomot/comp/mode.rb
|
111
133
|
- lib/zgomot/comp/note.rb
|
134
|
+
- lib/zgomot/comp/note_list.rb
|
112
135
|
- lib/zgomot/comp/pattern.rb
|
113
136
|
- lib/zgomot/comp/perc.rb
|
114
137
|
- lib/zgomot/comp/permutation.rb
|