static-struct 0.1.0 → 0.1.1
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/static_struct/structure.rb +28 -1
- data/lib/static_struct/version.rb +1 -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: 58615a4e4020074ad25736704b1735dcf4c2ff03
|
4
|
+
data.tar.gz: 637824c12247deda96a58c9422e7826369e1eb82
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 556ad7e756ab9dc8c1ce2506cfc767bf23ba47eeb55cab17358627fa7c2a6115a7dd50f9c918b63714f1f2de354251d009ab0a5a84b55561171647a7b6d4321e
|
7
|
+
data.tar.gz: 8cd846995eb3ca8f3b75aa1b258bcbc9027b311096a94e1d47059fb561e26a5a48eb3b4600bde20edd84409b8f96014dd4db70c0511157c6c1414591992ca44a
|
@@ -1,9 +1,23 @@
|
|
1
1
|
module StaticStruct
|
2
2
|
class Structure
|
3
|
+
attr_reader :static_methods
|
4
|
+
|
3
5
|
def initialize(hash)
|
6
|
+
@static_methods = []
|
4
7
|
define_structure(self, hash)
|
5
8
|
end
|
6
9
|
|
10
|
+
def inspect
|
11
|
+
methods = static_methods.sort.each_with_object({}) do |method, result|
|
12
|
+
result[method] = public_send(method)
|
13
|
+
end
|
14
|
+
"#<#{self.class} #{methods}>"
|
15
|
+
end
|
16
|
+
|
17
|
+
def ==(other)
|
18
|
+
inspect == other.inspect
|
19
|
+
end
|
20
|
+
|
7
21
|
private
|
8
22
|
|
9
23
|
def define_structure(parent, hash)
|
@@ -13,9 +27,22 @@ module StaticStruct
|
|
13
27
|
end
|
14
28
|
|
15
29
|
def safe_define_method(object, method, return_value)
|
16
|
-
|
30
|
+
if object.respond_to?(method)
|
31
|
+
fail MethodAlreadyDefinedError, "`#{method}' is already defined for #{object.inspect}"
|
32
|
+
end
|
17
33
|
|
34
|
+
object.static_methods.push(method.to_sym)
|
18
35
|
case
|
36
|
+
when return_value.is_a?(Array)
|
37
|
+
object.define_singleton_method(method) do
|
38
|
+
return_value.map do |array_value|
|
39
|
+
if array_value.respond_to?(:to_hash)
|
40
|
+
Structure.new(array_value)
|
41
|
+
else
|
42
|
+
array_value
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
19
46
|
when return_value.is_a?(Hash)
|
20
47
|
object.define_singleton_method(method) { Structure.new(return_value) }
|
21
48
|
when return_value.respond_to?(:to_hash)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: static-struct
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mezuka LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-01-
|
11
|
+
date: 2016-01-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|