Sha256: 8c74f6231d2bac2101733e85ac61a9400b749ddb84003192c938fb7ead1c450e

Contents?: true

Size: 276 Bytes

Versions: 5

Compression:

Stored size: 276 Bytes

Contents

module Apphunk
  module Remote
    class Result
      
      attr_accessor :status
      attr_accessor :response
      
      def initialize(opts = {})
        self.status = opts.delete(:status)
        self.response = opts.delete(:response)
      end
      
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
apphunk-0.4.1 lib/apphunk/remote/result.rb
apphunk-0.4.0 lib/apphunk/remote/result.rb
apphunk-0.3.1 lib/apphunk/remote/result.rb
apphunk-0.3.0 lib/apphunk/remote/result.rb
apphunk-0.1.1 lib/apphunk/remote/result.rb