Class: Madmin::Namespace
- Inherits:
-
Object
- Object
- Madmin::Namespace
- Defined in:
- lib/madmin/namespace.rb
Instance Method Summary collapse
-
#initialize(namespace) ⇒ Namespace
constructor
A new instance of Namespace.
- #resources ⇒ Object
- #resources_with_index_route ⇒ Object
- #routes ⇒ Object
Constructor Details
#initialize(namespace) ⇒ Namespace
Returns a new instance of Namespace.
3 4 5 |
# File 'lib/madmin/namespace.rb', line 3 def initialize(namespace) @namespace = namespace end |
Instance Method Details
#resources ⇒ Object
7 8 9 10 11 |
# File 'lib/madmin/namespace.rb', line 7 def resources @resources ||= routes.map(&:first).uniq.map { |path| Resource.new(namespace, path) } end |
#resources_with_index_route ⇒ Object
21 22 23 |
# File 'lib/madmin/namespace.rb', line 21 def resources_with_index_route routes.select { |_resource, route| route == "index" }.map(&:first).uniq end |
#routes ⇒ Object
13 14 15 16 17 18 19 |
# File 'lib/madmin/namespace.rb', line 13 def routes @routes ||= all_routes.select { |controller, _action| controller.starts_with?("#{namespace}/") }.map { |controller, action| [controller.gsub(/^#{namespace}\//, ""), action] } end |