Skip to content
This repository has been archived by the owner on Jun 17, 2020. It is now read-only.

BanjoInc/zeppelin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

zeppelin - Urban Airship library for Ruby StillMaintained Status Build Status

Ruby client for the Urban Airship Push Notification API.

Installation

Without bundler:

gem install zeppelin

With bundler:

gem 'zeppelin'

Usage

# First, create a client.
client = Zeppelin.new('your app key', 'your app master secret')

# You can then use the client to push messages to Urban Airship. The options
# for push are converted to JSON and sent as the payload.
client.push(:device_tokens => ['devtoken'], :aps => { :badge => 10 })

Check out the docs for more ways of querying the API.

TODO

  • Add support for the statistics API.
  • Add support for the device token list API.

Note on Patches/Pull Requests

  • Fork the project.
  • Make your feature addition or bug fix.
  • Add tests for it. This is important so I don't break it in a future version unintentionally.
  • Commit, but do not mess with the Rakefile. If you want to have your own version, that is fine but bump the version in a commit by itself in another branch so I can ignore it when I pull.
  • Send me a pull request. Bonus points for git flow feature branches.

Resources

License

Zeppelin is licensed under the MIT License. See LICENSE for details.