Class: ActionDispatch::Routing::Mapper::Resources::SingletonResource

Inherits:
Resource
  • Object
show all
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

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.



1072
1073
1074
1075
1076
1077
# File 'lib/action_dispatch/routing/mapper.rb', line 1072

def initialize(entities, options)
  super
  @as         = nil
  @controller = (options[:controller] || plural).to_s
  @as         = options[:as]
end

Instance Method Details

#default_actionsObject



1079
1080
1081
# File 'lib/action_dispatch/routing/mapper.rb', line 1079

def default_actions
  [:show, :create, :update, :destroy, :new, :edit]
end

#pluralObject



1083
1084
1085
# File 'lib/action_dispatch/routing/mapper.rb', line 1083

def plural
  @plural ||= name.to_s.pluralize
end

#singularObject Also known as: member_name, collection_name



1087
1088
1089
# File 'lib/action_dispatch/routing/mapper.rb', line 1087

def singular
  @singular ||= name.to_s
end