Class: Twilio::Rails::Phone::Tree::MessageSet
- Inherits:
-
Object
- Object
- Twilio::Rails::Phone::Tree::MessageSet
- Includes:
- Enumerable
- Defined in:
- lib/twilio/rails/phone/tree.rb
Instance Method Summary collapse
- #each(&block) ⇒ Object
- #first ⇒ Object
-
#initialize(set) ⇒ MessageSet
constructor
A new instance of MessageSet.
- #last ⇒ Object
- #length ⇒ Object
Constructor Details
#initialize(set) ⇒ MessageSet
Returns a new instance of MessageSet.
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 |
# File 'lib/twilio/rails/phone/tree.rb', line 178 def initialize(set) @messages = [] # This whole chunk here feels like an incorrect level of abstraction. That it should be the caller's responsbiility # to pass in the contents of `message:` and not a hash with `message:` as a key. But maybe it's ok to do it once # here so the callsites can be cleaner passthroughs without doing the checks over and over. if set.is_a?(Hash) set = set.symbolize_keys if set.key?(:message) raise Twilio::Rails::Phone::InvalidTreeError, "MessageSet should never receive a hash with any key other than :message but received #{set}" if set.keys != [:message] set = set[:message] end end set = [set] unless set.is_a?(Array) set.each do || next nil if .blank? if .is_a?(Twilio::Rails::Phone::Tree::Message) @messages << elsif .is_a?(Proc) @messages << elsif .is_a?(String) @messages << Twilio::Rails::Phone::Tree::Message.new(say: ) elsif .is_a?(Hash) @messages << Twilio::Rails::Phone::Tree::Message.new(**.symbolize_keys) else raise Twilio::Rails::Phone::InvalidTreeError, "message value #{} is not valid" end end end |
Instance Method Details
#each(&block) ⇒ Object
210 211 212 |
# File 'lib/twilio/rails/phone/tree.rb', line 210 def each(&block) @messages.each(&block) end |
#first ⇒ Object
218 219 220 |
# File 'lib/twilio/rails/phone/tree.rb', line 218 def first @messages.first end |
#last ⇒ Object
222 223 224 |
# File 'lib/twilio/rails/phone/tree.rb', line 222 def last @messages.last end |
#length ⇒ Object
214 215 216 |
# File 'lib/twilio/rails/phone/tree.rb', line 214 def length @messages.count end |