Class: GraphQL::Define::InstanceDefinable::AssignAttribute
- Inherits:
-
Object
- Object
- GraphQL::Define::InstanceDefinable::AssignAttribute
- Extended by:
- Ruby2Keywords
- Defined in:
- lib/graphql/define/instance_definable.rb
Instance Method Summary collapse
-
#call(defn, *value) ⇒ Object
Even though we’re just using the first value here, We have to add a splat here to use
ruby2_keywords
, so that it will accept a[{}]
input from the caller. -
#initialize(attr_name) ⇒ AssignAttribute
constructor
A new instance of AssignAttribute.
Methods included from Ruby2Keywords
Constructor Details
#initialize(attr_name) ⇒ AssignAttribute
Returns a new instance of AssignAttribute.
196 197 198 |
# File 'lib/graphql/define/instance_definable.rb', line 196 def initialize(attr_name) @attr_assign_method = :"#{attr_name}=" end |
Instance Method Details
#call(defn, *value) ⇒ Object
Even though we’re just using the first value here,
We have to add a splat here to use ruby2_keywords
,
so that it will accept a [{}]
input from the caller.
203 204 205 |
# File 'lib/graphql/define/instance_definable.rb', line 203 def call(defn, *value) defn.public_send(@attr_assign_method, value.first) end |