class ActiveOperation::Input

Public Instance Methods

keyword?() click to toggle source
# File lib/active_operation/input.rb, line 11
def keyword?
  type == :keyword
end
name() click to toggle source
# File lib/active_operation/input.rb, line 15
def name
  property.name
end
positional?() click to toggle source
# File lib/active_operation/input.rb, line 7
def positional?
  type == :positional
end