waltz_rb 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 +4 -4
- data/lib/waltz.rb +5 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 99b86a36f2521483cefbd08354d0408f2b176596
|
|
4
|
+
data.tar.gz: b947c88f5afb8559c6fd495ee76b8fd4eb982360
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 918f9a262c537438f87b28350f8d8912ce625cab58007f6b9b606b131c60c775dd35e781b016cf7c2d4377b26aa8825bf75a674214196978e51b5a67b804937a
|
|
7
|
+
data.tar.gz: 4492095d3f051286d2feb24ac21161927f3610460485af1cbf694305ecc1019ef7ea7ad9f2894d8dd7958f5a5cc48a0109d3153dbf03d1f72aa83cdb902da6a4
|
data/lib/waltz.rb
CHANGED
|
@@ -11,7 +11,7 @@ class Waltz
|
|
|
11
11
|
:control_stack, :control_words,
|
|
12
12
|
:compiled
|
|
13
13
|
|
|
14
|
-
def initialize
|
|
14
|
+
def initialize waltz_lib=nil
|
|
15
15
|
@runtime_stack = []
|
|
16
16
|
@control_stack = []
|
|
17
17
|
@compiled = []
|
|
@@ -102,6 +102,10 @@ class Waltz
|
|
|
102
102
|
@control_stack = []
|
|
103
103
|
}
|
|
104
104
|
}
|
|
105
|
+
|
|
106
|
+
if waltz_lib
|
|
107
|
+
compile_and_run waltz_lib
|
|
108
|
+
end
|
|
105
109
|
end
|
|
106
110
|
|
|
107
111
|
def state
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: waltz_rb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dave Yarwood
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-09-
|
|
11
|
+
date: 2016-09-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: |2
|
|
14
14
|
Waltz is a portable music theory library implemented in Forth.
|