Class: ConvenientService::Service::Plugins::CanHaveConnectedSteps::Entities::Expressions::Base
Instance Method Summary
collapse
#copy
abstract_method
Constructor Details
#initialize ⇒ void
21
|
# File 'lib/convenient_service/service/plugins/can_have_connected_steps/entities/expressions/base.rb', line 21
abstract_method :initialize
|
Instance Method Details
#and? ⇒ Boolean
106
107
108
|
# File 'lib/convenient_service/service/plugins/can_have_connected_steps/entities/expressions/base.rb', line 106
def and?
false
end
|
#complex_if? ⇒ Boolean
148
149
150
|
# File 'lib/convenient_service/service/plugins/can_have_connected_steps/entities/expressions/base.rb', line 148
def complex_if?
false
end
|
56
|
# File 'lib/convenient_service/service/plugins/can_have_connected_steps/entities/expressions/base.rb', line 56
abstract_method :each_evaluated_step
|
51
|
# File 'lib/convenient_service/service/plugins/can_have_connected_steps/entities/expressions/base.rb', line 51
abstract_method :each_step
|
#else? ⇒ Boolean
141
142
143
|
# File 'lib/convenient_service/service/plugins/can_have_connected_steps/entities/expressions/base.rb', line 141
def else?
false
end
|
#empty? ⇒ Boolean
127
128
129
|
# File 'lib/convenient_service/service/plugins/can_have_connected_steps/entities/expressions/base.rb', line 127
def empty?
false
end
|
#error? ⇒ Boolean
46
|
# File 'lib/convenient_service/service/plugins/can_have_connected_steps/entities/expressions/base.rb', line 46
abstract_method :error?
|
#failure? ⇒ Boolean
41
|
# File 'lib/convenient_service/service/plugins/can_have_connected_steps/entities/expressions/base.rb', line 41
abstract_method :failure?
|
#group? ⇒ Boolean
120
121
122
|
# File 'lib/convenient_service/service/plugins/can_have_connected_steps/entities/expressions/base.rb', line 120
def group?
false
end
|
#if? ⇒ Boolean
134
135
136
|
# File 'lib/convenient_service/service/plugins/can_have_connected_steps/entities/expressions/base.rb', line 134
def if?
false
end
|
#inspect ⇒ String
66
|
# File 'lib/convenient_service/service/plugins/can_have_connected_steps/entities/expressions/base.rb', line 66
abstract_method :inspect
|
#not? ⇒ Boolean
99
100
101
|
# File 'lib/convenient_service/service/plugins/can_have_connected_steps/entities/expressions/base.rb', line 99
def not?
false
end
|
#or? ⇒ Boolean
113
114
115
|
# File 'lib/convenient_service/service/plugins/can_have_connected_steps/entities/expressions/base.rb', line 113
def or?
false
end
|
31
|
# File 'lib/convenient_service/service/plugins/can_have_connected_steps/entities/expressions/base.rb', line 31
abstract_method :organizer
|
26
|
# File 'lib/convenient_service/service/plugins/can_have_connected_steps/entities/expressions/base.rb', line 26
abstract_method :result
|
#scalar? ⇒ Boolean
92
93
94
|
# File 'lib/convenient_service/service/plugins/can_have_connected_steps/entities/expressions/base.rb', line 92
def scalar?
false
end
|
81
82
83
84
85
86
87
|
# File 'lib/convenient_service/service/plugins/can_have_connected_steps/entities/expressions/base.rb', line 81
def steps
array = []
each_step { |step| array << step }
array
end
|
#success? ⇒ Boolean
36
|
# File 'lib/convenient_service/service/plugins/can_have_connected_steps/entities/expressions/base.rb', line 36
abstract_method :success?
|
#to_arguments ⇒ Boolean?
76
|
# File 'lib/convenient_service/service/plugins/can_have_connected_steps/entities/expressions/base.rb', line 76
abstract_method :to_arguments
|
61
|
# File 'lib/convenient_service/service/plugins/can_have_connected_steps/entities/expressions/base.rb', line 61
abstract_method :with_organizer
|