Class: ActionDispatch::Routing::Mapper::Resources::SingletonResource
- Inherits:
-
Resource
- Object
- Resource
- ActionDispatch::Routing::Mapper::Resources::SingletonResource
- Defined in:
- lib/action_dispatch/routing/mapper.rb
Overview
:nodoc:
Instance Attribute Summary
Attributes inherited from Resource
#controller, #options, #param, #path
Instance Method Summary collapse
- #default_actions ⇒ Object
-
#initialize(entities, options) ⇒ SingletonResource
constructor
A new instance of SingletonResource.
- #plural ⇒ Object
- #singular ⇒ Object (also: #member_name, #collection_name)
Methods inherited from Resource
#actions, #name, #nested_param, #new_scope, #resource_scope, #shallow=, #shallow?
Constructor Details
#initialize(entities, options) ⇒ SingletonResource
Returns a new instance of SingletonResource.
1078 1079 1080 1081 1082 1083 |
# File 'lib/action_dispatch/routing/mapper.rb', line 1078 def initialize(entities, ) super @as = nil @controller = ([:controller] || plural).to_s @as = [:as] end |
Instance Method Details
#default_actions ⇒ Object
1085 1086 1087 |
# File 'lib/action_dispatch/routing/mapper.rb', line 1085 def default_actions [:show, :create, :update, :destroy, :new, :edit] end |
#plural ⇒ Object
1089 1090 1091 |
# File 'lib/action_dispatch/routing/mapper.rb', line 1089 def plural @plural ||= name.to_s.pluralize end |
#singular ⇒ Object Also known as: member_name, collection_name
1093 1094 1095 |
# File 'lib/action_dispatch/routing/mapper.rb', line 1093 def singular @singular ||= name.to_s end |