Class: Rails::Swagger::Endpoint

Inherits:
Struct
  • Object
show all
Defined in:
lib/rails/swagger/router.rb

Overview

Internally represents individual routes

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(*opts) ⇒ Endpoint

Returns a new instance of Endpoint.



7
8
9
10
# File 'lib/rails/swagger/router.rb', line 7

def initialize *opts
  super
  self[:_path] = self.path
end

Instance Attribute Details

#_pathObject

Returns the value of attribute _path

Returns:

  • (Object)

    the current value of _path



6
7
8
# File 'lib/rails/swagger/router.rb', line 6

def _path
  @_path
end

#definitionObject

Returns the value of attribute definition

Returns:

  • (Object)

    the current value of definition



6
7
8
# File 'lib/rails/swagger/router.rb', line 6

def definition
  @definition
end

#methodObject

Returns the value of attribute method

Returns:

  • (Object)

    the current value of method



6
7
8
# File 'lib/rails/swagger/router.rb', line 6

def method
  @method
end

#urlObject

Returns the value of attribute url

Returns:

  • (Object)

    the current value of url



6
7
8
# File 'lib/rails/swagger/router.rb', line 6

def url
  @url
end

Instance Method Details

#pathObject

Translates path params from bracket syntax to :symbol syntax



12
13
14
# File 'lib/rails/swagger/router.rb', line 12

def path
  self[:url].gsub(/\{([^}]+)\}/, ':\\1')
end