Class: Praxis::Route

Inherits:
Object
  • Object
show all
Defined in:
lib/praxis/route.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(verb, path, version = 'n/a', name: nil, prefixed_path: nil, **options) ⇒ Route

Returns a new instance of Route.



6
7
8
9
10
11
12
13
# File 'lib/praxis/route.rb', line 6

def initialize(verb, path, version='n/a', name:nil, prefixed_path:nil, **options)
  @verb = verb
  @path = path
  @version = version
  @name = name
  @options = options
  @prefixed_path = prefixed_path
end

Instance Attribute Details

#nameObject

Returns the value of attribute name.



4
5
6
# File 'lib/praxis/route.rb', line 4

def name
  @name
end

#optionsObject

Returns the value of attribute options.



4
5
6
# File 'lib/praxis/route.rb', line 4

def options
  @options
end

#pathObject

Returns the value of attribute path.



4
5
6
# File 'lib/praxis/route.rb', line 4

def path
  @path
end

#prefixed_pathObject

Returns the value of attribute prefixed_path.



4
5
6
# File 'lib/praxis/route.rb', line 4

def prefixed_path
  @prefixed_path
end

#verbObject

Returns the value of attribute verb.



4
5
6
# File 'lib/praxis/route.rb', line 4

def verb
  @verb
end

#versionObject

Returns the value of attribute version.



4
5
6
# File 'lib/praxis/route.rb', line 4

def version
  @version
end

Instance Method Details

#describeObject



15
16
17
18
19
20
21
22
23
24
# File 'lib/praxis/route.rb', line 15

def describe
  result = {
    verb: verb,
    path: path.to_s,
    version: version
  }
  result[:name] = name unless name.nil?
  result[:options] = options if options.any?
  result
end