Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
twostraws committed Aug 9, 2018
0 parents commit aa35405
Show file tree
Hide file tree
Showing 982 changed files with 46,588 additions and 0 deletions.
68 changes: 68 additions & 0 deletions .gitignore
@@ -0,0 +1,68 @@
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

## Build generated
build/
DerivedData/

## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata/

## Other
*.moved-aside
*.xccheckout
*.xcscmblueprint
.DS_Store

## Obj-C/Swift specific
*.hmap
*.ipa
*.dSYM.zip
*.dSYM

## Playgrounds
timeline.xctimeline
playground.xcworkspace

# Swift Package Manager
#
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
# Packages/
# Package.pins
.build/

# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
# Pods/

# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts

Carthage/Build

# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://docs.fastlane.tools/best-practices/source-control/#source-control

fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output
45 changes: 45 additions & 0 deletions CODE_OF_CONDUCT.md
@@ -0,0 +1,45 @@
# Contributor Covenant Code of Conduct

## Our Pledge

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.

## Our Standards

Examples of behavior that contributes to creating a positive environment include:

* Using welcoming and inclusive language
* Being respectful of differing viewpoints and experiences
* Gracefully accepting constructive criticism
* Focusing on what is best for the community
* Showing empathy towards other community members

Examples of unacceptable behavior by participants include:

* The use of sexualized language or imagery and unwelcome sexual attention or advances
* Trolling, insulting/derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or electronic address, without explicit permission
* Other conduct which could reasonably be considered inappropriate in a professional setting

## Our Responsibilities

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.

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.

## Scope

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.

## Enforcement

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.

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.

## Attribution

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

[homepage]: https://www.contributor-covenant.org
277 changes: 277 additions & 0 deletions CONTRIBUTING.md

Large diffs are not rendered by default.

28 changes: 28 additions & 0 deletions LICENSE.md
@@ -0,0 +1,28 @@
# Unwrap
**Copyright (c) 2018 Paul Hudson**

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.

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.

So, right now here’s the license:

- You can read through all my code and learn all you want. Please do!

- You may not redistribute any part of the code, commercially or otherwise.

- 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.

- 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.

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.

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.

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.

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.

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>.

**Note:** If you have suggestions for how I can make this better for everyone, please get in touch!
34 changes: 34 additions & 0 deletions Podfile
@@ -0,0 +1,34 @@
# Uncomment the next line to define a global platform for your project
platform :ios, '11.0'

target 'Unwrap' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!

# There isn't a lot we can do about warnings in thes pods, so silence them
inhibit_all_warnings!

# Pods for Unwrap
pod 'SwiftEntryKit', '0.5.5'
pod 'SDWebImage', '~> 4.0'
pod 'MKRingProgressView', '~> 2.0'
pod 'SourceEditor', '~> 1.0'
pod 'DZNEmptyDataSet', '~> 1.8'

target 'UnwrapTests' do
inherit! :search_paths
# Pods for testing
end

target 'UnwrapUITests' do
inherit! :search_paths
# Pods for testing
end

post_install do |installer|
installer.pods_project.build_configurations.each do |config|
config.build_settings.delete('CODE_SIGNING_ALLOWED')
config.build_settings.delete('CODE_SIGNING_REQUIRED')
end
end
end
42 changes: 42 additions & 0 deletions Podfile.lock
@@ -0,0 +1,42 @@
PODS:
- DZNEmptyDataSet (1.8.1)
- MKRingProgressView (2.0.1)
- QuickLayout (2.0.2)
- SavannaKit (0.9.0)
- SDWebImage (4.4.1):
- SDWebImage/Core (= 4.4.1)
- SDWebImage/Core (4.4.1)
- SourceEditor (1.0.1):
- SavannaKit (~> 0.9)
- SwiftEntryKit (0.5.5):
- QuickLayout (= 2.0.2)

DEPENDENCIES:
- DZNEmptyDataSet (~> 1.8)
- MKRingProgressView (~> 2.0)
- SDWebImage (~> 4.0)
- SourceEditor (~> 1.0)
- SwiftEntryKit (= 0.5.5)

SPEC REPOS:
https://github.com/cocoapods/specs.git:
- DZNEmptyDataSet
- MKRingProgressView
- QuickLayout
- SavannaKit
- SDWebImage
- SourceEditor
- SwiftEntryKit

SPEC CHECKSUMS:
DZNEmptyDataSet: 9525833b9e68ac21c30253e1d3d7076cc828eaa7
MKRingProgressView: a2adeddfff0ea03f0fb7f8b108f3f77176db3bb5
QuickLayout: a730730b646b231fd4ef7cffaeb1e81fe0e1ca92
SavannaKit: 920c240bde011900df8156200a960dad3ee5edfd
SDWebImage: 47e9b5b925cbce75946c23f0c42dd19464189af4
SourceEditor: 4d590385d642c812d08a91941a4bfc90eccf20af
SwiftEntryKit: 9be06d5a6138acb874223d84de2f42286c0c8d12

PODFILE CHECKSUM: 7b567eeaf662047e91731b1156f0abe6e1af6edd

COCOAPODS: 1.5.3
9 changes: 9 additions & 0 deletions Pods/DZNEmptyDataSet/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit aa35405

Please sign in to comment.