Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix/SimulateLocation Fix #973

Merged
merged 32 commits into from
Feb 15, 2021
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
6ab8a2b
Preemptively fix compilation for latest XcodeProj
jcolicchio Oct 9, 2020
199e0d3
Add StoreKitConfiguration to scheme and generator
jcolicchio Oct 9, 2020
10417ee
Add scheme generator test
jcolicchio Oct 9, 2020
d3c837e
Fix and add tests
jcolicchio Oct 9, 2020
7623ccd
Support StoreKitConfiguration in TargetScheme
jcolicchio Oct 9, 2020
b1acd63
Set default type of `storekit` to `.none`
jcolicchio Oct 10, 2020
2dde67f
Upgrade XcodeProj to 7.15.0
jcolicchio Oct 16, 2020
b908f7c
Create struct for StoreKitConfiguration
jcolicchio Oct 16, 2020
f445f10
Update tests
jcolicchio Oct 16, 2020
01bc9df
Add storekit configuration to test project
jcolicchio Oct 16, 2020
9d8bfc3
Update changelog
jcolicchio Oct 16, 2020
d372457
Merge remote-tracking branch 'origin/master' into feature/StoreKitCon…
jcolicchio Oct 16, 2020
b344a68
Update project spec
jcolicchio Oct 16, 2020
f6faee5
Fix xcodeprojs
jcolicchio Oct 16, 2020
fa36fe1
Fix projects
jcolicchio Oct 16, 2020
76cb652
Capitalize String
jcolicchio Oct 16, 2020
c156d62
Update CHANGELOG.md
jcolicchio Oct 17, 2020
e8370af
Refactor StoreKitConfiguration init from json
jcolicchio Oct 17, 2020
4f706cb
Merge branch 'feature/StoreKitConfiguration' of github.com:jcolicchio…
jcolicchio Oct 18, 2020
c102ab0
Change `forWorkspace` to `pathPrefix` and add tests
jcolicchio Oct 21, 2020
7722365
Merge branch 'master' into feature/StoreKitConfiguration
jcolicchio Dec 2, 2020
cdbd7dc
Merge remote-tracking branch 'origin' into feature/StoreKitConfiguration
jcolicchio Jan 11, 2021
1bd3135
Merge branch 'master' into feature/StoreKitConfiguration
jcolicchio Jan 12, 2021
90650ce
Merge branch 'master' into feature/StoreKitConfiguration
jcolicchio Feb 14, 2021
ffd6f1f
Replace StoreKitConfiguration struct with string + option
jcolicchio Feb 14, 2021
27be1cc
Fix tests
jcolicchio Feb 14, 2021
d001286
Update project spec
jcolicchio Feb 14, 2021
4244dc2
Fixup changelog
jcolicchio Feb 14, 2021
5da55f2
Add `See Options` to `storeKitConfiguration` in project spec
jcolicchio Feb 14, 2021
fb72d87
Make `simulateLocation` respect `schemePathPrefix`
jcolicchio Feb 14, 2021
75f8e37
Merge branch 'master' into bugfix/SimulateLocationFix
jcolicchio Feb 15, 2021
3133c8e
Update docs
jcolicchio Feb 15, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add See Options to storeKitConfiguration in project spec
  • Loading branch information
jcolicchio committed Feb 14, 2021
commit 5da55f214a64a2269de9cba5fc7b7bc1a7741284
4 changes: 2 additions & 2 deletions Docs/ProjectSpec.md
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ This is a convenience used to automatically generate schemes for a target based
- [ ] **environmentVariables**: **[[Environment Variable](#environment-variable)]** or **[String:String]** - environment variables for Run, Test and Profile scheme actions. When passing a dictionary, every key-value entry maps to a corresponding variable that is enabled.
- [ ] **preActions**: **[[Execution Action](#execution-action)]** - Scripts that are run *before* the build action
- [ ] **postActions**: **[[Execution Action](#execution-action)]** - Scripts that are run *after* the build action
- [ ] **storeKitConfiguration**: **String** - specify storekit configuration to use during run.
- [ ] **storeKitConfiguration**: **String** - specify storekit configuration to use during run. See [Options](#options).

For example, the spec below would create 3 schemes called:

Expand Down Expand Up @@ -777,7 +777,7 @@ The different actions share some properties:
- [ ] **simulateLocation**: **[Simulate Location](#simulate-location)** - `run` action can define a simulated location
- [ ] **askForAppToLaunch**: **Bool** - `run` action can define the executable set to ask to launch. This defaults to false.
- [ ] **launchAutomaticallySubstyle**: **String** - `run` action can define the launch automatically substyle ('2' for extensions).
- [ ] **storeKitConfiguration**: **String** - `run` action can specify a storekit configuration.
- [ ] **storeKitConfiguration**: **String** - `run` action can specify a storekit configuration. See [Options](#options).

### Execution Action

Expand Down