-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update repo name + adhere to new markdown templates (#121)
- Loading branch information
1 parent
8dfc873
commit 4449e9c
Showing
5 changed files
with
65 additions
and
78 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# A script that triggers a circleci build from the command line | ||
# Script from https://circleci.com/docs/2.0/examples/#video-test-your-config-file-locally | ||
# Usage: From the project folder (e.g. 'ios-client') run 'bash .circleci/run-build-locally.sh' | ||
# Usage: From the project folder (e.g. 'ios-client-sdk') run 'bash .circleci/run-build-locally.sh' | ||
# Set the url to run in this format | ||
# https://circleci.com/api/v1.1/project/<source, eg. github>/<user name>/<project name>/tree/<branch name> | ||
# Dependencies: | ||
|
@@ -10,4 +10,4 @@ curl --user ${CIRCLE_TOKEN}: \ | |
--request POST \ | ||
--form [email protected]/config.yml \ | ||
--form notify=false \ | ||
https://circleci.com/api/v1.1/project/github/launchdarkly/ios-client/tree/master | ||
https://circleci.com/api/v1.1/project/github/launchdarkly/ios-client-sdk/tree/master |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,31 @@ | ||
Contributing to LaunchDarkly SDK for iOS | ||
========================================= | ||
Contributing to the LaunchDarkly SDK for iOS | ||
================================================ | ||
|
||
We encourage pull-requests and other contributions from the community. We've also published an [SDK contributor's guide](http://docs.launchdarkly.com/docs/sdk-contributors-guide) that provides a detailed explanation of how our SDKs work. | ||
LaunchDarkly has published an [SDK contributor's guide](https://docs.launchdarkly.com/docs/sdk-contributors-guide) that provides a detailed explanation of how our SDKs work. See below for additional information on how to contribute to this SDK. | ||
|
||
Submitting bug reports and feature requests | ||
------------------ | ||
|
||
The LaunchDarkly SDK team monitors the [issue tracker](https://github.com/launchdarkly/ios-client-sdk/issues) in the SDK repository. Bug reports and feature requests specific to this SDK should be filed in this issue tracker. The SDK team will respond to all newly filed issues within two business days. | ||
|
||
Submitting pull requests | ||
------------------ | ||
|
||
We encourage pull requests and other contributions from the community. Before submitting pull requests, ensure that all temporary or unintended code is removed. Don't worry about adding reviewers to the pull request; the LaunchDarkly SDK team will add themselves. The SDK team will acknowledge all pull requests within two business days. | ||
|
||
Build instructions | ||
------------------ | ||
|
||
### Prerequisites | ||
|
||
This SDK is built with [XCode](https://developer.apple.com/xcode/). This version is compatible with XCode 10.2. | ||
|
||
### Building | ||
|
||
The exact command used to build the SDK depends on where you want to use it (for example -- iOS, watchOS, etc.). Refer to the `xcodebuild` commands in the SDK's [continuous integration build configuration](.circleci/config.yml) for examples on how to build for the different platforms. | ||
|
||
If you wish to clean your working directory between builds, include the `clean` goal in your `xcodebuild` command(s). | ||
|
||
### Testing | ||
|
||
To build the SDK and run all unit tests, include the `test` goal in your `xcodebuild` command(s). |
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
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