module Ground::Protocol::Verb

Public Instance Methods

get(path, state) click to toggle source
# File lib/ground/protocol/verb.rb, line 4
def get(path, state)
  ridge path: path, verb: 'get', state: state  
end
post(path, state) click to toggle source
# File lib/ground/protocol/verb.rb, line 8
def post(path, state)
  ridge path: path, verb: 'post', state: state
end
ridge(data) click to toggle source
# File lib/ground/protocol/verb.rb, line 12
def ridge(data)
  Ground::Ridge data
end