A library for sending push notifications through Malcom API from a Rails application.
Add this line to your application's Gemfile:
gem 'malcom-rails3', :git => 'https://github.com/mymalcom/malcom-rails3.git'
And then execute:
$ bundle
Create a malcom.yml configuration file with the same structure as database.yml and the following parameters:
- URI, user and password of the API
- UUID of the app
Example:
development:
uri: http://api.mymalcom.com:80/v3/notification/push
user: devuser
password: changeme
platform_udid:
android: bfcf9xx5-4d97-ead0-bOd3-818e76O82bdi
ios: bfcf9xx5-4d97-ead0-bOd3-818e76O82bdi
production:
uri: http://api.mymalcom.com:80/v3/notification/push
user: prouser
password: ultrasecret
platform_udid:
android: 18e79xx5-ead0-4d97-bOd3-bfcf86O82bdi
ios: 18e79xx5-ead0-4d97-bOd3-bfcf86O82bdi
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request