Class: Belt::MemberCollectionBuilder
- Inherits:
-
Object
- Object
- Belt::MemberCollectionBuilder
- Defined in:
- lib/belt/route_dsl.rb
Instance Method Summary collapse
-
#initialize(gateway, prefix, inherited_tables, inherited_auth, inherited_controller = nil, inherited_lambda = nil) ⇒ MemberCollectionBuilder
constructor
rubocop:disable Metrics/ParameterLists.
Constructor Details
#initialize(gateway, prefix, inherited_tables, inherited_auth, inherited_controller = nil, inherited_lambda = nil) ⇒ MemberCollectionBuilder
rubocop:disable Metrics/ParameterLists
136 137 138 139 140 141 142 143 144 |
# File 'lib/belt/route_dsl.rb', line 136 def initialize(gateway, prefix, inherited_tables, inherited_auth, # rubocop:disable Metrics/ParameterLists inherited_controller = nil, inherited_lambda = nil) @gateway = gateway @prefix = prefix @inherited_tables = inherited_tables @inherited_auth = inherited_auth @inherited_controller = inherited_controller @inherited_lambda = inherited_lambda end |