# File lib/her/model/orm.rb, line 80 def destroy(params = {}) method = self.class.method_for(:destroy) run_callbacks :destroy do self.class.request(params.merge(:_method => method, :_path => request_path)) do |parsed_data, response| load_from_parsed_data(parsed_data) @destroyed = response.success? end end self end