Flowdock
method

destroy

Importance_1
v2.1.0 - Show latest stable - 0 notes - Class: ActiveResource::Base
destroy() public

Deletes the resource from the remote service.

Examples

  my_id = 3
  my_person = Person.find(my_id)
  my_person.destroy
  Person.find(my_id) # 404 (Resource Not Found)

  new_person = Person.create(:name => 'James')
  new_id = new_person.id # => 7
  new_person.destroy
  Person.find(new_id) # 404 (Resource Not Found)
Show source
Register or log in to add new notes.