This gem is API for sending sms through sms.ru service. SmsRu allows you to connect to sms.ru api without Net::HTTP syntax sugar. Check API to list of all available queries.
WARNING There is outdated ruby gem sms_ru
, so name of this gem is **smsru**
Add this line to your application's Gemfile:
gem 'smsru', require: 'sms_ru'
And then execute:
$ bundle
After you add 'sms_ru' to your Gemfile, you need to run the generator:
rails generate sms_ru:install
The generator will install an initializer to
config/initializers/sms_ru.rb
. Here you can set app_id
SmsRu.setup do |config|
config.api_id = Rails.application.secrets.sms_ru_key
end
Also you can setup default settings for every sms.ru API query
SmsRu.setup do |config|
...
config.queries.sms.send.from = 'fasteria.ru'
end
Example:
SmsRu.sms.send(api_id: 'abcdef', to: '79112223344', text: 'Sample message') # => '100\n000-00000'
SmsRu.my.balance # => '100\n87.79'
# et.c.
You can specify delivery_method
for SmsRu gateway. For example, if you don't want to send a messages, but don't want to make queries to the API:
# config/environments/development.rb
config.sms_ru.delivery_method = :launchy # every query to sms.ru api will open new tab in the browser
# config/environments/test.rb
config.sms_ru.delivery_method = :webmock # you'll get mocked success answer
Default delivery_method
is :direct
- Fork it ( https://github.com/asiniy/sms_ru/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request