This file contains 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
First, we create a cart: | |
``` | |
mutation cartCreate($input: CartCreateMutationInput!) { | |
cartCreate(input: $input) { | |
cart { | |
...cartInfo | |
} | |
clientMutationId | |
status | |
errors { |
This file contains 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
enum CatchStatisticsProperty { | |
WEATHER_CONDITION | |
WIND_DIRECTION | |
WIND_SPEED | |
AIR_PRESSURE | |
MOON_PHASE | |
SUN_PHASE | |
HOUR_OF_DAY | |
MONTH_OF_YEAR |
This file contains 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
### Intro | |
This is a proposal of the CI workflow for the client (iOS/Android) apps. It's modeled on a workflow I used when consulting which was a project in a similar setup. The main assumptions which are similar to that project are: | |
- Infrequent, manually-triggered releases to App Store (ie, not a Continuous Delivery) | |
- Frequent beta app distribution | |
- Emphasis on manual testing by external users | |
## Setup | |
### Branches |
This file contains 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
version: "37" | |
info: | |
description: "This is the tracking data specification" | |
maintainers: | |
- "blahgblah@blah.com" | |
user_properties: | |
- name: "userId" | |
description: "The user's unique Identifier" | |
rationale: "Needed for tracking unique user events" | |
events: |
This file contains 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
# Install rbenv | |
$ brew install rbenv | |
# Install Ruby 2.3.1 using rbenv and set it global | |
$ rbenv install 2.3.1 | |
$ rbenv global 2.3.1 | |
$ ruby --version #version check | |
# Add the following to your ~/.bash_profile to set globally | |
# Ruby version |