Ruby client of Pushbullet.
$ gem install washbullet
client = Washbullet::Client.new('YOUR_API_KEY')
You can send following list:
- note
- link
- file
client.push_note(
receiver: :device, # :email, :channel, :client
identifier: '<IDENTIFIER>',
params: {
title: 'Title',
body: 'Contents'
}
)
# Get own active devices
client.devices
# Get friends list
client.contacts
client.me
detail: https://docs.pushbullet.com/
Pushes
- Push to device
- Request push history
- Update a push
- Deleting a push
- Deleting all pushes
Devices
- Get the devices that can be pushed to
- Create a new device
- Update an existing device
- Delete a device
Contacts
- Get your contacts
- Create a contact
- Update a contact
- Delete a contact
Subscriptions
- Subscribe to a channel
- List subscriptions
- Unsubscribe from a channel
- Get information about a channel
Users
- Get the current user
- Update the current user
Realtime Event Stream
- Not yet
- Fork it ( http://github.com/hrysd/washbullet/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 new Pull Request