class Purest::Pod

Constants

GET_PARAMS

Public Instance Methods

create(options = nil) click to toggle source
Calls superclass method Purest::APIMethods#create
# File lib/purest/pod.rb, line 15
def create(options = nil)
  if options[:array]
    super(options, 'pod', "array/#{options[:array]}")
  else
    super(options, 'pod')
  end
end
delete(options = nil) click to toggle source
Calls superclass method Purest::APIMethods#delete
# File lib/purest/pod.rb, line 27
def delete(options = nil)
  if options[:array]
    super(options, 'pod', "array/#{options[:array]}")
  else
    super(options, 'pod')
  end
end
get(options = nil) click to toggle source
Calls superclass method Purest::APIMethods#get
# File lib/purest/pod.rb, line 11
def get(options = nil)
  super(options, 'pod', GET_PARAMS)
end
update(options = nil) click to toggle source
Calls superclass method Purest::APIMethods#update
# File lib/purest/pod.rb, line 23
def update(options = nil)
  super(options, 'pod')
end