Class: ConvenientService::Service::Plugins::CanHaveSteps::Entities::Method::Entities::Factories::Base
- Inherits:
-
Object
- Object
- ConvenientService::Service::Plugins::CanHaveSteps::Entities::Method::Entities::Factories::Base
show all
- Includes:
- ConvenientService::Support::AbstractMethod
- Defined in:
- lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/factories/base.rb
Instance Attribute Summary collapse
Instance Method Summary
collapse
abstract_method
Constructor Details
#initialize(other:) ⇒ void
39
40
41
|
# File 'lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/factories/base.rb', line 39
def initialize(other:)
@other = other
end
|
Instance Attribute Details
#other ⇒ Object
Returns the value of attribute other.
18
19
20
|
# File 'lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/factories/base.rb', line 18
def other
@other
end
|
Instance Method Details
#==(other) ⇒ Boolean?
47
48
49
50
51
52
53
|
# File 'lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/factories/base.rb', line 47
def ==(other)
return unless other.instance_of?(self.class)
return false if self.other != other.other
true
end
|
33
|
# File 'lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/factories/base.rb', line 33
abstract_method :create_caller
|
23
|
# File 'lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/factories/base.rb', line 23
abstract_method :create_key
|
28
|
# File 'lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/factories/base.rb', line 28
abstract_method :create_name
|