class Scalingo::Endpoint::Variable

Public Instance Methods

destroy() click to toggle source
# File lib/scalingo/endpoint/variables.rb, line 17
def destroy
  delete
end
update(value) click to toggle source
# File lib/scalingo/endpoint/variables.rb, line 13
def update(value)
  patch(nil, variable: { value: value })
end