Module: GraphQL::Define::InstanceDefinable::ClassMethods
- Defined in:
- lib/graphql/define/instance_definable.rb
Instance Method Summary collapse
-
#accepts_definitions(*accepts) ⇒ Object
Attach definitions to this class.
-
#define(**kwargs, &block) ⇒ Object
Create a new instance and prepare a definition using its definitions.
-
#dictionary ⇒ Hash
Combined definitions for self and ancestors.
- #ensure_defined(*method_names) ⇒ Object
- #ensure_defined_method_names ⇒ Object
-
#own_dictionary ⇒ Hash
Definitions for this class only.
Instance Method Details
#accepts_definitions(*accepts) ⇒ Object
Attach definitions to this class.
Each symbol in accepts
will be assigned with {key}=
.
The last entry in accepts may be a hash of name-proc pairs for custom definitions.
208 209 210 211 212 213 214 215 216 217 218 219 220 |
# File 'lib/graphql/define/instance_definable.rb', line 208 def accepts_definitions(*accepts) new_assignments = if accepts.last.is_a?(Hash) accepts.pop.dup else {} end accepts.each do |key| new_assignments[key] = AssignAttribute.new(key) end @own_dictionary = own_dictionary.merge(new_assignments) end |
#define(**kwargs, &block) ⇒ Object
Create a new instance and prepare a definition using its definitions.
199 200 201 202 203 |
# File 'lib/graphql/define/instance_definable.rb', line 199 def define(**kwargs, &block) instance = self.new instance.define(**kwargs, &block) instance end |
#dictionary ⇒ Hash
Returns combined definitions for self and ancestors.
238 239 240 241 242 243 244 |
# File 'lib/graphql/define/instance_definable.rb', line 238 def dictionary if superclass.respond_to?(:dictionary) own_dictionary.merge(superclass.dictionary) else own_dictionary end end |
#ensure_defined(*method_names) ⇒ Object
222 223 224 225 226 |
# File 'lib/graphql/define/instance_definable.rb', line 222 def ensure_defined(*method_names) @ensure_defined_method_names ||= [] @ensure_defined_method_names.concat(method_names) nil end |
#ensure_defined_method_names ⇒ Object
228 229 230 231 232 233 234 235 |
# File 'lib/graphql/define/instance_definable.rb', line 228 def ensure_defined_method_names own_method_names = @ensure_defined_method_names || [] if superclass.respond_to?(:ensure_defined_method_names) superclass.ensure_defined_method_names + own_method_names else own_method_names end end |
#own_dictionary ⇒ Hash
Returns definitions for this class only.
247 248 249 |
# File 'lib/graphql/define/instance_definable.rb', line 247 def own_dictionary @own_dictionary ||= {} end |