Skip to content

Commit 87b7929

Browse files
committed
Initial commit
0 parents  commit 87b7929

20 files changed

+1100
-0
lines changed

.gitignore

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
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+
*.xccheckout
22+
*.moved-aside
23+
*.xcuserstate
24+
*.xcscmblueprint
25+
26+
## Obj-C/Swift specific
27+
*.hmap
28+
*.ipa
29+
*.dSYM.zip
30+
31+
## Playgrounds
32+
timeline.xctimeline
33+
playground.xcworkspace
34+
35+
# Swift Package Manager
36+
#
37+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
38+
# Packages/
39+
.build/
40+
41+
.DS_Store
42+
*.mobileprovision
43+
*.cer
44+
*.certSigningRequest
45+
*.p12
46+
*.pem
47+
*.pkey
48+
screenshots
49+
rvm.env

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Change Log
2+
All notable changes to this project will be documented in this file.
3+
4+
## 1.0.0
5+
6+
Initial release!

LICENSE.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Copyright (c) 2016 SwiftKick Mobile LLC
2+
3+
4+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5+
6+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
7+
8+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# SwiftLayout
2+
3+
[![Twitter: @TimothyMoose](https://img.shields.io/badge/[email protected]?style=flat)](https://twitter.com/TimothyMoose)
4+
[![Version](https://img.shields.io/cocoapods/v/SwiftMessages.svg?style=flat)](http://cocoadocs.org/docsets/SwiftMessages)
5+
[![License](https://img.shields.io/cocoapods/l/SwiftMessages.svg?style=flat)](http://cocoadocs.org/docsets/SwiftMessages)
6+
[![Platform](https://img.shields.io/cocoapods/p/SwiftMessages.svg?style=flat)](http://cocoadocs.org/docsets/SwiftMessages)
7+
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
8+
9+
## Overview
10+
11+
## Installation
12+
13+
### CocoaPods
14+
15+
Add the following line to your Podfile:
16+
17+
````ruby
18+
pod 'SwiftLayout'
19+
````
20+
21+
### Carthage
22+
23+
Add the following line to your Cartfile:
24+
25+
````ruby
26+
github "SwiftKickMobile/SwiftLayout"
27+
````
28+
29+
### Manual
30+
31+
1. Put SwiftLayout repo somewhere in your project directory.
32+
1. In Xcode, add `SwiftLayout.xcodeproj` to your project.
33+
1. On your app's target, add the SwiftLayout framework:
34+
1. as an embedded binary on the General tab.
35+
1. as a target dependency on the Build Phases tab.
36+
37+
## Usage
38+
39+
### Basics
40+
41+
## About SwiftKick Mobile
42+
We build high quality apps! [Get in touch](http://www.swiftkickmobile.com) if you need help with a project.
43+
44+
## License
45+
46+
SwiftMessages is distributed under the MIT license. [See LICENSE](./LICENSE.md) for details.

SwiftLayout.podspec

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Pod::Spec.new do |spec|
2+
spec.name = 'SwiftLayout'
3+
spec.version = '1.0.0'
4+
spec.license = { :type => 'MIT' }
5+
spec.homepage = 'https://github.com/SwiftKickMobile/SwiftLayout'
6+
spec.authors = { 'Timothy Moose' => '[email protected]' }
7+
spec.summary = 'Super awesome Auto Layout constraint simplifier for Swift.'
8+
spec.source = {:git => 'https://github.com/SwiftKickMobile/SwiftLayout.git', :tag => spec.version}
9+
spec.platform = :ios, '10.0'
10+
spec.swift_version = '4.2'
11+
spec.ios.deployment_target = '10.0'
12+
spec.framework = 'UIKit'
13+
spec.requires_arc = true
14+
end

0 commit comments

Comments
 (0)