paging and a little styling

This commit is contained in:
2015-09-21 20:40:07 -05:00
parent c425f63ee9
commit d123e63b76
18 changed files with 71 additions and 30 deletions

View File

@ -4,9 +4,9 @@ class SmsSender
attr_accessor :message
def initialize args_as_hash
@from = args_as_hash["from"] ||= ENV["twilio_number"]
@to = args_as_hash["to"]
@message = args_as_hash["message"]
@from = args_as_hash[:from] ||= ENV["twilio_number"]
@to = args_as_hash[:to]
@message = args_as_hash[:message]
end
def send!