# File lib/reststop.rb, line 89
  def service(*a)
    
    if @env.REQUEST_METHOD == 'POST' && (input['_method'] == 'put' || input['_method'] == 'delete')
      @env.REQUEST_METHOD = input._method.upcase
      @method = input._method
    end
    
    super(*a)
  end