腾讯信鸽推送
示例
# iOS
= QQpush::Ios.new(device_token: 'a123b', param_content: 'joe')
.settings = { access_id: '555', secret_key: '888' }
.request_params[:environment] = 1 if Rails.env.production?
.push_single_device
# Android
= QQpush::Android.new(
device_token: 'a123b', param_title: 'yo', param_content: 'joe')
.settings = { access_id: '555', secret_key: '888' }
.push_single_device
测试
$ rake init[your_access_id, your_secret_key]
$ rake test