Class: Apipie::MethodDescription::Api
- Inherits:
-
Object
- Object
- Apipie::MethodDescription::Api
- Defined in:
- lib/apipie/method_description.rb
Instance Attribute Summary collapse
-
#http_method ⇒ Object
Returns the value of attribute http_method.
-
#path ⇒ Object
Returns the value of attribute path.
-
#short_description ⇒ Object
Returns the value of attribute short_description.
Instance Method Summary collapse
-
#initialize(method, path, desc) ⇒ Api
constructor
A new instance of Api.
Constructor Details
#initialize(method, path, desc) ⇒ Api
Returns a new instance of Api.
10 11 12 13 14 |
# File 'lib/apipie/method_description.rb', line 10 def initialize(method, path, desc) @http_method = method.to_s @path = path @short_description = desc end |
Instance Attribute Details
#http_method ⇒ Object
Returns the value of attribute http_method.
8 9 10 |
# File 'lib/apipie/method_description.rb', line 8 def http_method @http_method end |
#path ⇒ Object
Returns the value of attribute path.
8 9 10 |
# File 'lib/apipie/method_description.rb', line 8 def path @path end |
#short_description ⇒ Object
Returns the value of attribute short_description.
8 9 10 |
# File 'lib/apipie/method_description.rb', line 8 def short_description @short_description end |