rubysketch 0.2.7 → 0.3.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ChangeLog.md +30 -0
- data/Rakefile +1 -0
- data/VERSION +1 -1
- data/lib/rubysketch-processing.rb +6 -24
- data/lib/rubysketch/processing.rb +1990 -1189
- data/lib/rubysketch/window.rb +26 -10
- data/test/helper.rb +24 -0
- data/test/processing/test_vector.rb +397 -0
- metadata +7 -3
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubysketch
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- xordog
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-08-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: yard
|
@@ -120,6 +120,8 @@ files:
|
|
120
120
|
- lib/rubysketch/processing.rb
|
121
121
|
- lib/rubysketch/window.rb
|
122
122
|
- rubysketch.gemspec
|
123
|
+
- test/helper.rb
|
124
|
+
- test/processing/test_vector.rb
|
123
125
|
homepage: https://github.com/xord/rubysketch
|
124
126
|
licenses: []
|
125
127
|
metadata: {}
|
@@ -142,4 +144,6 @@ rubygems_version: 3.0.3
|
|
142
144
|
signing_key:
|
143
145
|
specification_version: 4
|
144
146
|
summary: Processing like Creative Coding Framework.
|
145
|
-
test_files:
|
147
|
+
test_files:
|
148
|
+
- test/helper.rb
|
149
|
+
- test/processing/test_vector.rb
|