Exception: DataMapperRest::MethodNotAllowed

Inherits:
ClientError show all
Defined in:
lib/dm-rest-adapter/exceptions.rb

Overview

405 Method Not Allowed

Instance Attribute Summary

Attributes inherited from ConnectionError

#response

Instance Method Summary collapse

Methods inherited from ConnectionError

#initialize, #to_s

Constructor Details

This class inherits a constructor from DataMapperRest::ConnectionError

Instance Method Details

#allowed_methodsObject

:nodoc:



62
63
64
# File 'lib/dm-rest-adapter/exceptions.rb', line 62

def allowed_methods
  @response['Allow'].split(',').map { |verb| verb.strip.downcase.to_sym }
end