Last Updated: February 25, 2016
·
1.8K
· adelevie

iOS push notifications in 2 lines of Ruby

Make sure you have a Parse.com account configured for Push notifications

gem install parse-ruby-client

https://github.com/adelevie/parse-ruby-client

push = Parse::Push.new({"alert" => "I'm sending this push to all my app users!"})
push.save