-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #150 from CodaFi/work-stealing
[WIP] Update to Swift 2.2+
- Loading branch information
Showing
44 changed files
with
1,151 additions
and
444 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
We love that you're interested in contributing to this project! | ||
|
||
To make the process as painless as possible, we have just a couple of guidelines | ||
that should make life easier for everyone involved. | ||
|
||
## Prefer Pull Requests | ||
|
||
If you know exactly how to implement the feature being suggested or fix the bug | ||
being reported, please open a pull request instead of an issue. Pull requests are easier than | ||
patches or inline code blocks for discussing and merging the changes. | ||
|
||
If you can't make the change yourself, please open an issue after making sure | ||
that one isn't already logged. | ||
|
||
## Contributing Code | ||
|
||
Fork this repository, make it awesomer (preferably in a branch named for the | ||
topic), send a pull request! | ||
|
||
All code contributions should match our the framework's conventions. When in | ||
doubt, you can look around the project for similar code, or just use [GitHub's | ||
coding conventions](https://github.com/github/swift-style-guide). | ||
|
||
Thanks for contributing! :boom::camel: | ||
|
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
Version | ||
======== | ||
|
||
_Share the git commit hash of the version of the framework that you are using. You can find it by running `git rev-parse HEAD` in the framework directory._ | ||
|
||
Environment | ||
=========== | ||
|
||
_What's your environment? Mac OS X, Linux, or something else?_ | ||
|
||
Description | ||
============ | ||
|
||
_In your own words, briefly describe the issue._ | ||
|
||
Steps To Reproduce | ||
=================== | ||
|
||
_List the actions that will reproduce the issue._ | ||
|
||
Expected Result | ||
================ | ||
|
||
_What was the expected result after running the steps above?_ | ||
|
||
Actual Result | ||
============== | ||
|
||
_What was the actual result after running the steps above?_ | ||
|
||
Additional information | ||
====================== | ||
|
||
_Please provide any additional information that helps debugging, e.g. log output, stack traces, error codes, etc._ | ||
|
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
What's in this pull request? | ||
============================ | ||
|
||
_Briefly describe the contents of this pull request. What did you add, remove, | ||
change?_ | ||
|
||
Why merge this pull request? | ||
============================ | ||
|
||
_Give us a short description of why this is important. For example, future | ||
plans, cleanup, motivations for additional features, etc._ | ||
|
||
What's worth discussing about this pull request? | ||
================================================ | ||
|
||
_Is there any part of this pull request that is especially important, | ||
controversial, or that you're unsure of? We can totally help!_ | ||
|
||
What downsides are there to merging this pull request? | ||
====================================================== | ||
|
||
_If you answered the last question in the affirmative, do you wish to discuss | ||
alternative implementations or have any other overarching concerns?_ | ||
|
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "SwiftCheck", | ||
targets: [ | ||
Target(name: "SwiftCheck"), | ||
Target(name: "SwiftCheck-iOS"), | ||
Target(name: "SwiftCheck-tvOS"), | ||
] | ||
) | ||
|
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
Oops, something went wrong.