Skip to content

Commit aa35405

Browse files
committed
Initial commit.
0 parents  commit aa35405

File tree

982 files changed

+46588
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

982 files changed

+46588
-0
lines changed

.gitignore

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# Xcode
2+
#
3+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
4+
5+
## Build generated
6+
build/
7+
DerivedData/
8+
9+
## Various settings
10+
*.pbxuser
11+
!default.pbxuser
12+
*.mode1v3
13+
!default.mode1v3
14+
*.mode2v3
15+
!default.mode2v3
16+
*.perspectivev3
17+
!default.perspectivev3
18+
xcuserdata/
19+
20+
## Other
21+
*.moved-aside
22+
*.xccheckout
23+
*.xcscmblueprint
24+
.DS_Store
25+
26+
## Obj-C/Swift specific
27+
*.hmap
28+
*.ipa
29+
*.dSYM.zip
30+
*.dSYM
31+
32+
## Playgrounds
33+
timeline.xctimeline
34+
playground.xcworkspace
35+
36+
# Swift Package Manager
37+
#
38+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
39+
# Packages/
40+
# Package.pins
41+
.build/
42+
43+
# CocoaPods
44+
#
45+
# We recommend against adding the Pods directory to your .gitignore. However
46+
# you should judge for yourself, the pros and cons are mentioned at:
47+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
48+
#
49+
# Pods/
50+
51+
# Carthage
52+
#
53+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
54+
# Carthage/Checkouts
55+
56+
Carthage/Build
57+
58+
# fastlane
59+
#
60+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
61+
# screenshots whenever they are needed.
62+
# For more information about the recommended setup visit:
63+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
64+
65+
fastlane/report.xml
66+
fastlane/Preview.html
67+
fastlane/screenshots
68+
fastlane/test_output

CODE_OF_CONDUCT.md

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# Contributor Covenant Code of Conduct
2+
3+
## Our Pledge
4+
5+
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
6+
7+
## Our Standards
8+
9+
Examples of behavior that contributes to creating a positive environment include:
10+
11+
* Using welcoming and inclusive language
12+
* Being respectful of differing viewpoints and experiences
13+
* Gracefully accepting constructive criticism
14+
* Focusing on what is best for the community
15+
* Showing empathy towards other community members
16+
17+
Examples of unacceptable behavior by participants include:
18+
19+
* The use of sexualized language or imagery and unwelcome sexual attention or advances
20+
* Trolling, insulting/derogatory comments, and personal or political attacks
21+
* Public or private harassment
22+
* Publishing others' private information, such as a physical or electronic address, without explicit permission
23+
* Other conduct which could reasonably be considered inappropriate in a professional setting
24+
25+
## Our Responsibilities
26+
27+
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
28+
29+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
30+
31+
## Scope
32+
33+
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
34+
35+
## Enforcement
36+
37+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at paul@hackingwithswift.com. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
38+
39+
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
40+
41+
## Attribution
42+
43+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
44+
45+
[homepage]: https://www.contributor-covenant.org

CONTRIBUTING.md

+277
Large diffs are not rendered by default.

LICENSE.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Unwrap
2+
**Copyright (c) 2018 Paul Hudson**
3+
4+
My hope is to release Unwrap under an open source license at some point, partly so that folks can use this code to build their own apps, and partly because it means anyone can help improve this app for everyone.
5+
6+
However, until the app has actually shipped to the App Store I need to be careful: I don’t want folks to release my code before I do, because that’s just likely to confuse users and probably cause problems because there are bugs or glaring mistakes.
7+
8+
So, right now here’s the license:
9+
10+
- You can read through all my code and learn all you want. Please do!
11+
12+
- You may not redistribute any part of the code, commercially or otherwise.
13+
14+
- You may not use any part of the content, commercially or otherwise. “Content” means all the non-code materials, such as the videos or JSON files.
15+
16+
- If you want to help work on this now by all means fork it on GitHub, make changes, and open pull requests. However, any commit to this repository implicitly allows me to relicense your contribution to any OSI-approved license without prior consent, while also granting me permission to ship the code in a finished product.
17+
18+
That last clause is important, and is inspired by the [VLC team](https://github.com/videolan/vlc-ios/blob/master/COPYING) – if you intend to help with this project, it’s really important you understand its implications fully.
19+
20+
Normally changing a license means contacting every contributor and asking their permission for the change, but that clause means if you open pull requests here then you’re giving me permission to switch to a real open-source license at any point in the future without asking you.
21+
22+
You can find the full list of OSI-approved licenses at <https://opensource.org/licenses/alphabetical> – the Open Source Initiative curates that list very carefully, so you can be sure whatever license(s) I choose will definitely be open-source compatible.
23+
24+
Trust me: I know this license sucks, and I want to make it better. But at the same time I don’t want confused users, half-baked clones, or lots of negative reviews because the app was shipped before it was ready.
25+
26+
Please bear with me while I continue to refine what’s here and get it live. If you have questions or suggestions please get in touch: I’m [@twostraws on Twitter](https://twitter.com/twostraws), or you can email <paul@hackingwithswift.com>.
27+
28+
**Note:** If you have suggestions for how I can make this better for everyone, please get in touch!

Podfile

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Uncomment the next line to define a global platform for your project
2+
platform :ios, '11.0'
3+
4+
target 'Unwrap' do
5+
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
6+
use_frameworks!
7+
8+
# There isn't a lot we can do about warnings in thes pods, so silence them
9+
inhibit_all_warnings!
10+
11+
# Pods for Unwrap
12+
pod 'SwiftEntryKit', '0.5.5'
13+
pod 'SDWebImage', '~> 4.0'
14+
pod 'MKRingProgressView', '~> 2.0'
15+
pod 'SourceEditor', '~> 1.0'
16+
pod 'DZNEmptyDataSet', '~> 1.8'
17+
18+
target 'UnwrapTests' do
19+
inherit! :search_paths
20+
# Pods for testing
21+
end
22+
23+
target 'UnwrapUITests' do
24+
inherit! :search_paths
25+
# Pods for testing
26+
end
27+
28+
post_install do |installer|
29+
installer.pods_project.build_configurations.each do |config|
30+
config.build_settings.delete('CODE_SIGNING_ALLOWED')
31+
config.build_settings.delete('CODE_SIGNING_REQUIRED')
32+
end
33+
end
34+
end

Podfile.lock

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
PODS:
2+
- DZNEmptyDataSet (1.8.1)
3+
- MKRingProgressView (2.0.1)
4+
- QuickLayout (2.0.2)
5+
- SavannaKit (0.9.0)
6+
- SDWebImage (4.4.1):
7+
- SDWebImage/Core (= 4.4.1)
8+
- SDWebImage/Core (4.4.1)
9+
- SourceEditor (1.0.1):
10+
- SavannaKit (~> 0.9)
11+
- SwiftEntryKit (0.5.5):
12+
- QuickLayout (= 2.0.2)
13+
14+
DEPENDENCIES:
15+
- DZNEmptyDataSet (~> 1.8)
16+
- MKRingProgressView (~> 2.0)
17+
- SDWebImage (~> 4.0)
18+
- SourceEditor (~> 1.0)
19+
- SwiftEntryKit (= 0.5.5)
20+
21+
SPEC REPOS:
22+
https://github.com/cocoapods/specs.git:
23+
- DZNEmptyDataSet
24+
- MKRingProgressView
25+
- QuickLayout
26+
- SavannaKit
27+
- SDWebImage
28+
- SourceEditor
29+
- SwiftEntryKit
30+
31+
SPEC CHECKSUMS:
32+
DZNEmptyDataSet: 9525833b9e68ac21c30253e1d3d7076cc828eaa7
33+
MKRingProgressView: a2adeddfff0ea03f0fb7f8b108f3f77176db3bb5
34+
QuickLayout: a730730b646b231fd4ef7cffaeb1e81fe0e1ca92
35+
SavannaKit: 920c240bde011900df8156200a960dad3ee5edfd
36+
SDWebImage: 47e9b5b925cbce75946c23f0c42dd19464189af4
37+
SourceEditor: 4d590385d642c812d08a91941a4bfc90eccf20af
38+
SwiftEntryKit: 9be06d5a6138acb874223d84de2f42286c0c8d12
39+
40+
PODFILE CHECKSUM: 7b567eeaf662047e91731b1156f0abe6e1af6edd
41+
42+
COCOAPODS: 1.5.3

Pods/DZNEmptyDataSet/LICENSE

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)