- AppCenter
- iOS: https://docs.microsoft.com/en-us/appcenter/sdk/push/ios (we have this in place right now)
- Android: https://docs.microsoft.com/en-us/appcenter/sdk/push/android
- From the docs Note: For all the Android developers using App Center, there is a change coming where Firebase SDK is required to use Push Notifications
- OneSignal: https://onesignal.com/
- Pros: Free, super good admin dashboard, wide use/examples/tutorials
- Cons: They sell data to advertisers :| but! that's only for the free version https://onesignal.com/pricing?utm_campaign=upsell&utm_content=blue-button
- Firebase Cloud Messaging
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'git' | |
require 'logger' | |
revert_branch_name = "origin/remove-failing-tests" | |
working_dir = '.' | |
g = Git.open(working_dir, :log => Logger.new(STDOUT)) | |
base_commit = g.gcommit('5b78d2b') | |
branch_tip_commit = g.gcommit(revert_branch_name) |
npm publish
actually zips up your module directory and sends the zip to be stored on the npm servers.
if you have passwords and large files in your working directory they may be included in the zip unless you add them to a .npmignore (if an .npmignore is not present it will check .gitignore instead)
on github:
- merge PR to master
locally:
- switch to master branch important
- pull origin master locally important