Skip to content

Commit

Permalink
Fix readme PushBots for Pushbots
Browse files Browse the repository at this point in the history
  • Loading branch information
cesarrdz committed Jun 26, 2016
1 parent a346886 commit b3aac13
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Pushbots

Ruby Wrapper for PushBots Rest API made with love by Kandiie
Ruby Wrapper for Pushbots Rest API made with love by Kandiie

PushBots is a Light SDK for mobile push notifications and now you can use
Pushbots is a Light SDK for mobile push notifications and now you can use
this gem on your favorite Ruby on Rails Projects.

## Table of Contents
Expand Down Expand Up @@ -115,7 +115,7 @@ message = 'Hello World!!!'
# Build up the notification
# platform, message, token and sound (required parameters).
# options (custom fields) (optional parameter)
push = PushBots::One.new(platform, token, message, sound, options)
push = Pushbots::One.new(platform, token, message, sound, options)
push.send # Delivers the notification
```

Expand All @@ -131,7 +131,7 @@ schedule = DateTime.now
# Build up the notification
# platform, message, schedule (required parameters).
# options (custom fields) (optional parameter)
push = PushBots::All.new(platforms, message, schedule, options = {})
push = Pushbots::All.new(platforms, message, schedule, options = {})
push.send # Delivers the notification
```

Expand Down

0 comments on commit b3aac13

Please sign in to comment.