Class: ActionWebService::Scaffolding::WebServiceModel::Container
- Inherits:
-
Object
- Object
- ActionWebService::Scaffolding::WebServiceModel::Container
- Defined in:
- lib/action_web_service/scaffolding.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#dispatching_mode ⇒ Object
readonly
Returns the value of attribute dispatching_mode.
-
#services ⇒ Object
readonly
Returns the value of attribute services.
Instance Method Summary collapse
-
#initialize(real_container) ⇒ Container
constructor
A new instance of Container.
Constructor Details
#initialize(real_container) ⇒ Container
Returns a new instance of Container.
241 242 243 244 245 246 247 248 249 250 251 252 |
# File 'lib/action_web_service/scaffolding.rb', line 241 def initialize(real_container) @real_container = real_container @dispatching_mode = @real_container.class.web_service_dispatching_mode @services = [] if @dispatching_mode == :direct @services << Service.new(@real_container.controller_name, @real_container) else @real_container.class.web_services.each do |name, obj| @services << Service.new(name, @real_container.instance_eval{ web_service_object(name) }) end end end |
Instance Attribute Details
#dispatching_mode ⇒ Object (readonly)
Returns the value of attribute dispatching_mode.
239 240 241 |
# File 'lib/action_web_service/scaffolding.rb', line 239 def dispatching_mode @dispatching_mode end |
#services ⇒ Object (readonly)
Returns the value of attribute services.
238 239 240 |
# File 'lib/action_web_service/scaffolding.rb', line 238 def services @services end |