katuv 0.0.5 → 0.0.6
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 +8 -8
- data/lib/katuv/dsl.rb +0 -1
- data/lib/katuv/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NDVkNjkxY2I1MjAxMzUwY2M4OTUyYjVmMDg0NzI0NmU2MTNlNjE5Mw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YWM0ODdjZTU3NGQ5YTI5MDExN2I2ZmFmNDNhZmVkZGFiZWQxNjY4NQ==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
OTQ0ZWVmYWY1YzI2ZjY2NTQzZjllZWIzNTBjOTE3ZGM5OTEzNTE0ZWY1NjQw
|
10
|
+
NDM0NDE2NWI2YmEwOTI1NjY4MGE5NDlkNjMyOTVkZTlkOWIwY2FjOGJmM2E0
|
11
|
+
MTRlNjE2ZGU3M2E5OWYwYTk5OTNmNDk3Y2E2MTFhMDYxMzhmMjE=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ZTA2MTc2ZWZhNTIwYmQ3YWFhM2M4OTg0MDk0YWE2ZmRmMGVkODQ1Mjk0NTRh
|
14
|
+
NjhmNDQ5ZjEzZGJlZTY4YTEyODIwZDY0M2QzZGUxZTVkNjIzZmQ5MzhjNDhm
|
15
|
+
NTYyZWZmZmJkZDFjNDI1YTQ3ZjlkZDVkMDE3OWM5Mzk5YTAyYWE=
|
data/lib/katuv/dsl.rb
CHANGED
@@ -28,7 +28,6 @@ module Katuv
|
|
28
28
|
def multiple(type)
|
29
29
|
#should store an entry in #children that is a list of all the instances
|
30
30
|
#it sees of this type. eg, `file 'x'; file 'y' #=> children[File] = [File<@name=x>, File<@name=y>]
|
31
|
-
raise InvalidNodeTypeError unless type.terminal?
|
32
31
|
define_method(_type_to_method_name(type)) do |name, opts={}, &block|
|
33
32
|
children[type] ||= ObjectSet.new
|
34
33
|
children[type] << type.new(name, opts.merge(parent: self), &block)
|
data/lib/katuv/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: katuv
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joe Fredette
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-09-10 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: A tool for parsing and transforming internal Ruby DSLs
|
14
14
|
email:
|
@@ -64,7 +64,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
64
64
|
MA==
|
65
65
|
requirements: []
|
66
66
|
rubyforge_project:
|
67
|
-
rubygems_version: 2.0.
|
67
|
+
rubygems_version: 2.0.7
|
68
68
|
signing_key:
|
69
69
|
specification_version: 4
|
70
70
|
summary: A tool for parsing and transforming internal Ruby DSLs
|