README.md in mblox-0.0.2 vs README.md in mblox-0.0.3
- old
+ new
@@ -31,20 +31,24 @@
config.service_id = ...
# You can also configure some logging options
# In a Rails environment, config.logger will default to Rails.logger and config.log_at will default to :debug
# config.log_at means the level at which Mblox will log.
- # If config.log_at == :debug and your logger's log level is :info, logging will be suppressed because it is below the log level of the logger.
+ # For instance, if config.log_at == :debug, Mblox will log only if the logger's log level is :debug
+ # Note that if config.log_at == :debug and your logger's log level is :info,
+ # logging will be suppressed because it is below the log level of the logger.
config.logger = Logger.new(STDOUT)
config.log_at :info
# What to do if messages are longer than 160 characters. Default is :raise_error
+ # Other options are :truncate and :split
config.on_message_too_long = :truncate
end
Once your application is configured, send messages:
- phone_number = 2225555555 # The number you're sending to. Must be a 10-digit number, including the area code. Can be a String or Fixnum.
+ # The number to sending to must be a 10-digit number, including the area code. Can be a String or Fixnum.
+ phone_number = 2225555555 # or: phone_number = "2225555555"
Mblox::Sms.new(phone_number, "your message").send
## Testing
Copy config.yml.example to config.yml and set all the values in that file. Run: