class Ipfs::Request

Attributes

path[R]
verb[R]

Public Class Methods

new(path, verb) click to toggle source
# File lib/request/request.rb, line 5
def initialize(path, verb)
  @path = path
  @verb = verb
end

Public Instance Methods

options() click to toggle source
# File lib/request/request.rb, line 10
def options
  {}
end