Simple FCM (Firebase Cloud Messaging) Gem for sending Push Notifications to iOS as well as Android devices
$ gem install notify_fcmor in your Gemfile just include it:
gem 'notify_fcm'- One of the following, tested Ruby versions:
2.0.02.1.92.2.52.3.1- Example sending notifications:
require 'notify_fcm'
fcm = NOTIFY_FCM.new("API-KEY")
device_token= ["xxxxxxxx", "xxxxxxx"] # an array of one or more client device tokens
fcm.title="My Title" # Set Title
fcm.body ="My Body" # Set Body
fcm.color = "#000000" # Set Colour Code
fcm.sound = "default" # Set your Notification sound
response = fcm.send(device_token) # Send Notification- Copyright (c) 2017 Vipin Kumar. See LICENSE.txt for details.