zgomot 1.0.2 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -3,6 +3,7 @@
3
3
  bundler -v1.0.14
4
4
  coderay -v1.0.9
5
5
  ffi -v1.9.0
6
+ fssm -v0.2.10
6
7
  git -v1.2.5
7
8
  jeweler -v1.6.0
8
9
  method_source -v0.8.1
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "zgomot"
8
- s.version = "1.0.1"
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-05"
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.2
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-05 00:00:00.000000000 Z
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