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
44
45
46
|
# File 'lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/factories/base.rb', line 44
def initialize(other:)
@other = other
end
|
Instance Attribute Details
#other ⇒ Object
Returns the value of attribute other.
23
24
25
|
# File 'lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/factories/base.rb', line 23
def other
@other
end
|
Instance Method Details
#==(other) ⇒ Boolean?
52
53
54
55
56
57
58
|
# File 'lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/factories/base.rb', line 52
def ==(other)
return unless other.instance_of?(self.class)
return false if self.other != other.other
true
end
|
38
|
# File 'lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/factories/base.rb', line 38
abstract_method :create_caller
|
28
|
# File 'lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/factories/base.rb', line 28
abstract_method :create_key
|
33
|
# File 'lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/factories/base.rb', line 33
abstract_method :create_name
|