class ExecutableTest

Attributes

command[RW]
name[RW]
success[RW]
type[RW]
url[RW]

Public Class Methods

new(args) click to toggle source
# File lib/value_object.rb, line 40
    def initialize(args)
            obj = OpenStruct.new(args)
            @name = obj.name
@url = obj.url
@type = obj.type || "GET"
            @command = obj.command
            @success = obj.success
    end

Public Instance Methods

get_binding() click to toggle source
# File lib/value_object.rb, line 49
def get_binding
binding
end