qor_dsl 0.3.0 → 0.3.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.
- data/lib/qor_dsl/node.rb +4 -4
- data/qor_dsl.gemspec +1 -1
- metadata +2 -2
data/lib/qor_dsl/node.rb
CHANGED
|
@@ -127,6 +127,10 @@ module Qor
|
|
|
127
127
|
Qor::Dsl.inspect_object(self, obj_options)
|
|
128
128
|
end
|
|
129
129
|
|
|
130
|
+
protected
|
|
131
|
+
def inspect_name
|
|
132
|
+
"{#{config_name}: #{name || 'nil'}}"
|
|
133
|
+
end
|
|
130
134
|
|
|
131
135
|
private
|
|
132
136
|
def process_find_results(results, type)
|
|
@@ -144,10 +148,6 @@ module Qor
|
|
|
144
148
|
def child_config_options(type)
|
|
145
149
|
child_config(type).__options || {} rescue {}
|
|
146
150
|
end
|
|
147
|
-
|
|
148
|
-
def inspect_name
|
|
149
|
-
"{#{config_name}: #{name || 'nil'}}"
|
|
150
|
-
end
|
|
151
151
|
end
|
|
152
152
|
end
|
|
153
153
|
end
|
data/qor_dsl.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: qor_dsl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
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: 2012-11-
|
|
12
|
+
date: 2012-11-13 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
14
|
description: Qor DSL is designed to be as flexible as possible while helping you to
|
|
15
15
|
create your DSLs.
|