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
| $ git log origin/master..origin/develop --oneline | grep "Merge pull request" | grep -v "from refuel4/master" | sed "s/.*from [^\/]*\//Branch: /g" | |
| # Example output: | |
| # Branch: fix/4031-batman-hits-a-car | |
| # Branch: feature/3953-iron-man-works-hard | |
| # Branch: fix/3995-global-warming | |
| # Branch: feature/3953-deploy-rocket-to-mars | |
| # Branch: fix/4024-deadpool-got-cancer |
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
| document.addEventListener('deviceready', onDeviceReady); | |
| function onDeviceReady() { | |
| const store = CdvPurchase.store; | |
| const { ProductType, Platform, LogLevel, Product, VerifiedReceipt } = CdvPurchase; // shortcuts | |
| // We should first register all our products or we cannot use them in the app. | |
| store.register([{ | |
| id: 'demo_monthly_basic', |
OlderNewer