Snap is now SnapKit

This commit is contained in:
Robert Payne 2015-04-15 23:07:50 +12:00
parent 529e7588aa
commit 51662d58bb
29 changed files with 176 additions and 216 deletions

View File

@ -9,6 +9,6 @@ before_install:
- gem install xcpretty -N - gem install xcpretty -N
script: script:
- set -o pipefail - set -o pipefail
- xcodebuild -project Snap.xcodeproj -scheme "Snap iOS" -sdk iphonesimulator - xcodebuild -project SnapKit.xcodeproj -scheme "SnapKit iOS" -sdk iphonesimulator
-destination "platform=iOS Simulator,name=iPhone 6" ONLY_ACTIVE_ARCH=NO test | xcpretty -c -destination "platform=iOS Simulator,name=iPhone 6" ONLY_ACTIVE_ARCH=NO test | xcpretty -c
- pod lib lint --quick - pod lib lint --quick

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

View File

@ -1,12 +1,13 @@
CHANGELOG CHANGELOG
======= =======
# 0.10.0 - Next Release In Development # 0.10.0 - April 15 2015
* **ANNOUNCEMENT**: Snap is now SnapKit
* **BREAKING:** The constraint making chain now utilises protocols to tighten the API's to avoid user error. This may break some syntaxes. * **BREAKING:** The constraint making chain now utilises protocols to tighten the API's to avoid user error. This may break some syntaxes.
* **BREAKING:** Semantic `and` and `with` chain variables were removed * **BREAKING:** Semantic `and` and `with` chain variables were removed
* Added `update###` functions to `Constraint` so their constants and priorities can be updated * Added `update###` functions to `Constraint` so their constants and priorities can be updated
* Added a `Snap.Config.interfaceLayoutDirection` variable for richer Leading/Trailing support. * Added a `SnapKit.Config.interfaceLayoutDirection` variable for richer Leading/Trailing support.
* Fixed memory leaks that could occur on long lived views * Fixed memory leaks that could occur on long lived views
* Ensure Swift 1.2 compatibility * Ensure Swift 1.2 compatibility

View File

@ -17,7 +17,7 @@
<key>IDECodeSnippetLanguage</key> <key>IDECodeSnippetLanguage</key>
<string>Xcode.SourceCodeLanguage.Swift</string> <string>Xcode.SourceCodeLanguage.Swift</string>
<key>IDECodeSnippetTitle</key> <key>IDECodeSnippetTitle</key>
<string>Snap Constraint Make</string> <string>SnapKit Constraint Make</string>
<key>IDECodeSnippetUserSnippet</key> <key>IDECodeSnippetUserSnippet</key>
<true/> <true/>
<key>IDECodeSnippetVersion</key> <key>IDECodeSnippetVersion</key>

View File

@ -17,7 +17,7 @@
<key>IDECodeSnippetLanguage</key> <key>IDECodeSnippetLanguage</key>
<string>Xcode.SourceCodeLanguage.Swift</string> <string>Xcode.SourceCodeLanguage.Swift</string>
<key>IDECodeSnippetTitle</key> <key>IDECodeSnippetTitle</key>
<string>Snap Constraint Remake</string> <string>SnapKit Constraint Remake</string>
<key>IDECodeSnippetUserSnippet</key> <key>IDECodeSnippetUserSnippet</key>
<true/> <true/>
<key>IDECodeSnippetVersion</key> <key>IDECodeSnippetVersion</key>

View File

@ -1,4 +1,4 @@
Copyright (c) 2011-2015 Masonry Team - https://github.com/Masonry Copyright (c) 2011-Present SnapKit Team - https://github.com/SnapKit
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

View File

@ -1,13 +1,13 @@
<img src="https://raw.githubusercontent.com/Masonry/Snap/develop/Assets/snap-banner.png" alt=""> SnapKit
==== ====
[![Build Status](https://travis-ci.org/Masonry/Snap.svg)](https://travis-ci.org/Masonry/Snap) [![Build Status](https://travis-ci.org/SnapKit/SnapKit.svg)](https://travis-ci.org/SnapKit/SnapKit)
Snap is a light-weight layout framework which wraps AutoLayout with a nicer syntax. Snap has its own layout DSL which provides a chainable way of describing your NSLayoutConstraints which results in layout code that is more concise and readable. Snap supports both iOS and OS X. SnapKit is a light-weight layout framework which wraps AutoLayout with a nicer syntax. SnapKit has its own layout DSL which provides a chainable way of describing your NSLayoutConstraints which results in layout code that is more concise and readable. SnapKit supports both iOS and OS X.
> Snap uses some Swift-only features like function overloading, so it cannot be used from Objective-C. Because of this weve chosen to swap prefixes from Masonrys `mas_` to `snp_` so you can use both Masonry and Snap in the same project. > SnapKit uses some Swift-only features like function overloading, so it cannot be used from Objective-C. Because of this weve chosen to swap prefixes from Masonrys `mas_` to `snp_` so you can use both Masonry and SnapKit in the same project.
## Requirements ## Requirements
@ -28,14 +28,14 @@ CocoaPods 0.36 adds supports for Swift and embedded frameworks. You can install
$ gem install cocoapods $ gem install cocoapods
``` ```
To integrate Snap into your Xcode project using CocoaPods, specify it in your `Podfile`: To integrate SnapKit into your Xcode project using CocoaPods, specify it in your `Podfile`:
```ruby ```ruby
source 'https://github.com/CocoaPods/Specs.git' source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0' platform :ios, '8.0'
use_frameworks! use_frameworks!
pod 'Snap', '~> 0.9.2' pod 'SnapKit', '~> 0.10.0'
``` ```
Then, run the following command: Then, run the following command:
@ -55,30 +55,30 @@ $ brew update
$ brew install carthage $ brew install carthage
``` ```
To integrate Snap into your Xcode project using Carthage, specify it in your `Cartfile`: To integrate SnapKit into your Xcode project using Carthage, specify it in your `Cartfile`:
``` ```
github "Masonry/Snap" >= 0.9.2 github "SnapKit/SnapKit" >= 0.10.0
``` ```
### Manually ### Manually
If you prefer not to use either of the aforementioned dependency managers, you can integrate Snap into your project manually. If you prefer not to use either of the aforementioned dependency managers, you can integrate SnapKit into your project manually.
### Embedded Framework ### Embedded Framework
- Add Snap as a [submodule](http://git-scm.com/docs/git-submodule) by opening the Terminal, `cd`-ing into your top-level project directory, and entering the following command: - Add SnapKit as a [submodule](http://git-scm.com/docs/git-submodule) by opening the Terminal, `cd`-ing into your top-level project directory, and entering the following command:
```bash ```bash
$ git submodule add https://github.com/Masonry/Snap.git $ git submodule add https://github.com/SnapKit/SnapKit.git
``` ```
- Open the `Snap` folder, and drag `Snap.xcodeproj` into the file navigator of your app project. - Open the `SnapKit` folder, and drag `SnapKit.xcodeproj` into the file navigator of your app project.
- In Xcode, navigate to the target configuration window by clicking on the blue project icon, and selecting the application target under the "Targets" heading in the sidebar. - In Xcode, navigate to the target configuration window by clicking on the blue project icon, and selecting the application target under the "Targets" heading in the sidebar.
- Ensure that the deployment target of Snap.framework matches that of the application target. - Ensure that the deployment target of SnapKit.framework matches that of the application target.
- In the tab bar at the top of that window, open the "Build Phases" panel. - In the tab bar at the top of that window, open the "Build Phases" panel.
- Expand the "Target Dependencies" group, and add `Snap.framework`. - Expand the "Target Dependencies" group, and add `SnapKit.framework`.
- Click on the `+` button at the top left of the panel and select "New Copy Files Phase". Rename this new phase to "Copy Frameworks", set the "Destination" to "Frameworks", and add `Snap.framework`. - Click on the `+` button at the top left of the panel and select "New Copy Files Phase". Rename this new phase to "Copy Frameworks", set the "Destination" to "Frameworks", and add `SnapKit.framework`.
## What's wrong with NSLayoutConstraints? ## What's wrong with NSLayoutConstraints?
@ -160,9 +160,9 @@ view1.snp_makeConstraints { (make) -> Void in
``` ```
Also note in the first example we had to add the constraints to the superview `superview.addConstraints`. Also note in the first example we had to add the constraints to the superview `superview.addConstraints`.
Snap however will automagically add constraints to the appropriate view. SnapKit however will automagically add constraints to the appropriate view.
Snap will also call `view1.setTranslatesAutoresizingMaskIntoConstraints(false)` for you. SnapKit will also call `view1.setTranslatesAutoresizingMaskIntoConstraints(false)` for you.
## Not all things are created equal ## Not all things are created equal
@ -214,7 +214,7 @@ make.width.lessThanOrEqualTo(400)
``` ```
However Auto Layout does not allow alignment attributes such as left, right, centerY etc to be set to constant values. However Auto Layout does not allow alignment attributes such as left, right, centerY etc to be set to constant values.
So if you pass a primitive for these attributes Snap will turn these into constraints relative to the view&rsquo;s superview ie: So if you pass a primitive for these attributes SnapKit will turn these into constraints relative to the view&rsquo;s superview ie:
```swift ```swift
// creates view.left <= view.superview.left + 10 // creates view.left <= view.superview.left + 10
make.left.lessThanOrEqualTo(10) make.left.lessThanOrEqualTo(10)
@ -241,14 +241,14 @@ make.left.equalTo(view).offset(UIEdgeInsetsMake(10, 0, 10, 0))
Priorities are can be tacked on to the end of a constraint chain like so: Priorities are can be tacked on to the end of a constraint chain like so:
```swift ```swift
make.left.greaterThanOrEqualTo(label.snp_left).with.priorityLow(); make.left.greaterThanOrEqualTo(label.snp_left).priorityLow();
make.top.equalTo(label.snp_top).with.priority(600); make.top.equalTo(label.snp_top).priority(600);
``` ```
## Composition, composition, composition ## Composition, composition, composition
Snap also gives you a few convenience methods which create multiple constraints at the same time. SnapKit also gives you a few convenience methods which create multiple constraints at the same time.
#### edges #### edges
@ -285,14 +285,14 @@ You can chain view attributes for increased readability:
```swift ```swift
// All edges but the top should equal those of the superview // All edges but the top should equal those of the superview
make.left.right.and.bottom.equalTo(superview) make.left.right.bottom.equalTo(superview)
make.top.equalTo(otherView) make.top.equalTo(otherView)
``` ```
## Hold on for dear life ## Hold on for dear life
Sometimes you need modify existing constraints in order to animate or remove/replace constraints. Sometimes you need modify existing constraints in order to animate or remove/replace constraints.
In Snap there are a few different approaches to updating constraints. In SnapKit there are a few different approaches to updating constraints.
#### 1. References #### 1. References
You can hold on to a reference of a particular constraint by assigning the result of a constraint make expression to a local variable or a class property. You can hold on to a reference of a particular constraint by assigning the result of a constraint make expression to a local variable or a class property.
@ -306,8 +306,8 @@ var topConstraint: Constraint? = nil
// when making constraints // when making constraints
view1.snp_makeConstraints { make in view1.snp_makeConstraints { make in
self.topConstraint = make.top.equalTo(superview).with.offset(padding.top).constraint self.topConstraint = make.top.equalTo(superview).offset(padding.top).constraint
make.left.equalTo(superview).with.offset(padding.left) make.left.equalTo(superview).offset(padding.left)
} }
... ...
@ -317,7 +317,7 @@ self.topConstraint.uninstall()
### 2. snp_remakeConstraints ### 2. snp_remakeConstraints
`snp_remakeConstraints` is similar to `snp_makeConstraints`, but will first remove all existing constraints installed by Snap. `snp_remakeConstraints` is similar to `snp_makeConstraints`, but will first remove all existing constraints installed by SnapKit.
```swift ```swift
func changeButtonPosition() { func changeButtonPosition() {

View File

@ -1,41 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDESourceControlProjectFavoriteDictionaryKey</key>
<false/>
<key>IDESourceControlProjectIdentifier</key>
<string>FDF6DE8D-A35D-47D4-8CB6-ACB35050F0D0</string>
<key>IDESourceControlProjectName</key>
<string>Snap</string>
<key>IDESourceControlProjectOriginsDictionary</key>
<dict>
<key>3AF18F9C6F5D633BAA0B3F935459E0C777C82047</key>
<string>github.com:Masonry/Snap.git</string>
</dict>
<key>IDESourceControlProjectPath</key>
<string>Snap.xcodeproj</string>
<key>IDESourceControlProjectRelativeInstallPathDictionary</key>
<dict>
<key>3AF18F9C6F5D633BAA0B3F935459E0C777C82047</key>
<string>../..</string>
</dict>
<key>IDESourceControlProjectURL</key>
<string>github.com:Masonry/Snap.git</string>
<key>IDESourceControlProjectVersion</key>
<integer>111</integer>
<key>IDESourceControlProjectWCCIdentifier</key>
<string>3AF18F9C6F5D633BAA0B3F935459E0C777C82047</string>
<key>IDESourceControlProjectWCConfigurations</key>
<array>
<dict>
<key>IDESourceControlRepositoryExtensionIdentifierKey</key>
<string>public.vcs.git</string>
<key>IDESourceControlWCCIdentifierKey</key>
<string>3AF18F9C6F5D633BAA0B3F935459E0C777C82047</string>
<key>IDESourceControlWCCName</key>
<string>Snap</string>
</dict>
</array>
</dict>
</plist>

View File

@ -1,12 +1,12 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'Snap' s.name = 'SnapKit'
s.version = '0.9.2' s.version = '0.10.0'
s.license = 'MIT' s.license = 'MIT'
s.summary = 'Harness the power of auto layout with a simplified, chainable, and compile time safe syntax.' s.summary = 'Harness the power of auto layout with a simplified, chainable, and compile time safe syntax.'
s.homepage = 'https://github.com/Masonry/Snap' s.homepage = 'https://github.com/SnapKit/SnapKit'
s.authors = { 'Robert Payne' => 'robertpayne@me.com' } s.authors = { 'Robert Payne' => 'robertpayne@me.com' }
s.social_media_url = 'http://twitter.com/robertjpayne' s.social_media_url = 'http://twitter.com/robertjpayne'
s.source = { :git => 'https://github.com/Masonry/Snap.git', :tag => '0.9.2' } s.source = { :git => 'https://github.com/SnapKit/SnapKit.git', :tag => '0.10.0' }
s.ios.deployment_target = '8.0' s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9' s.osx.deployment_target = '10.9'

View File

@ -9,8 +9,8 @@
/* Begin PBXBuildFile section */ /* Begin PBXBuildFile section */
EE94F6091AC0F10A008767FF /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EE94F6081AC0F10A008767FF /* UIKit.framework */; }; EE94F6091AC0F10A008767FF /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EE94F6081AC0F10A008767FF /* UIKit.framework */; };
EE94F60B1AC0F10F008767FF /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EE94F60A1AC0F10F008767FF /* AppKit.framework */; }; EE94F60B1AC0F10F008767FF /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EE94F60A1AC0F10F008767FF /* AppKit.framework */; };
EE94F6101AC0F143008767FF /* Snap.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EEBCC9D819CC627D0083B827 /* Snap.framework */; }; EE94F6101AC0F143008767FF /* SnapKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EEBCC9D819CC627D0083B827 /* SnapKit.framework */; };
EE94F6111AC0F146008767FF /* Snap.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EECDB37A1AC0C9D4006BBC11 /* Snap.framework */; }; EE94F6111AC0F146008767FF /* SnapKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EECDB37A1AC0C9D4006BBC11 /* SnapKit.framework */; };
EECDB36C1AC0C9A6006BBC11 /* Constraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = EECDB35E1AC0C95C006BBC11 /* Constraint.swift */; }; EECDB36C1AC0C9A6006BBC11 /* Constraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = EECDB35E1AC0C95C006BBC11 /* Constraint.swift */; };
EECDB36D1AC0C9A6006BBC11 /* ConstraintAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = EECDB35F1AC0C95C006BBC11 /* ConstraintAttributes.swift */; }; EECDB36D1AC0C9A6006BBC11 /* ConstraintAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = EECDB35F1AC0C95C006BBC11 /* ConstraintAttributes.swift */; };
EECDB36E1AC0C9A6006BBC11 /* ConstraintItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = EECDB3601AC0C95C006BBC11 /* ConstraintItem.swift */; }; EECDB36E1AC0C9A6006BBC11 /* ConstraintItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = EECDB3601AC0C95C006BBC11 /* ConstraintItem.swift */; };
@ -18,8 +18,8 @@
EECDB3701AC0C9A6006BBC11 /* ConstraintRelation.swift in Sources */ = {isa = PBXBuildFile; fileRef = EECDB3621AC0C95C006BBC11 /* ConstraintRelation.swift */; }; EECDB3701AC0C9A6006BBC11 /* ConstraintRelation.swift in Sources */ = {isa = PBXBuildFile; fileRef = EECDB3621AC0C95C006BBC11 /* ConstraintRelation.swift */; };
EECDB3711AC0C9A6006BBC11 /* EdgeInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = EECDB3631AC0C95C006BBC11 /* EdgeInsets.swift */; }; EECDB3711AC0C9A6006BBC11 /* EdgeInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = EECDB3631AC0C95C006BBC11 /* EdgeInsets.swift */; };
EECDB3721AC0C9A6006BBC11 /* LayoutConstraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = EECDB3651AC0C95C006BBC11 /* LayoutConstraint.swift */; }; EECDB3721AC0C9A6006BBC11 /* LayoutConstraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = EECDB3651AC0C95C006BBC11 /* LayoutConstraint.swift */; };
EECDB3731AC0C9A6006BBC11 /* View+Snap.swift in Sources */ = {isa = PBXBuildFile; fileRef = EECDB3671AC0C95C006BBC11 /* View+Snap.swift */; }; EECDB3731AC0C9A6006BBC11 /* View+SnapKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = EECDB3671AC0C95C006BBC11 /* View+SnapKit.swift */; };
EECDB3741AC0C9B6006BBC11 /* Snap.h in Headers */ = {isa = PBXBuildFile; fileRef = EECDB3661AC0C95C006BBC11 /* Snap.h */; settings = {ATTRIBUTES = (Public, ); }; }; EECDB3741AC0C9B6006BBC11 /* SnapKit.h in Headers */ = {isa = PBXBuildFile; fileRef = EECDB3661AC0C95C006BBC11 /* SnapKit.h */; settings = {ATTRIBUTES = (Public, ); }; };
EECDB3931AC0CB52006BBC11 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = EECDB36A1AC0C95C006BBC11 /* Tests.swift */; }; EECDB3931AC0CB52006BBC11 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = EECDB36A1AC0C95C006BBC11 /* Tests.swift */; };
EECDB3941AC0CB52006BBC11 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = EECDB36A1AC0C95C006BBC11 /* Tests.swift */; }; EECDB3941AC0CB52006BBC11 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = EECDB36A1AC0C95C006BBC11 /* Tests.swift */; };
EECDB3951AC0CBFF006BBC11 /* Constraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = EECDB35E1AC0C95C006BBC11 /* Constraint.swift */; }; EECDB3951AC0CBFF006BBC11 /* Constraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = EECDB35E1AC0C95C006BBC11 /* Constraint.swift */; };
@ -29,12 +29,12 @@
EECDB3991AC0CBFF006BBC11 /* ConstraintRelation.swift in Sources */ = {isa = PBXBuildFile; fileRef = EECDB3621AC0C95C006BBC11 /* ConstraintRelation.swift */; }; EECDB3991AC0CBFF006BBC11 /* ConstraintRelation.swift in Sources */ = {isa = PBXBuildFile; fileRef = EECDB3621AC0C95C006BBC11 /* ConstraintRelation.swift */; };
EECDB39A1AC0CBFF006BBC11 /* EdgeInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = EECDB3631AC0C95C006BBC11 /* EdgeInsets.swift */; }; EECDB39A1AC0CBFF006BBC11 /* EdgeInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = EECDB3631AC0C95C006BBC11 /* EdgeInsets.swift */; };
EECDB39B1AC0CBFF006BBC11 /* LayoutConstraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = EECDB3651AC0C95C006BBC11 /* LayoutConstraint.swift */; }; EECDB39B1AC0CBFF006BBC11 /* LayoutConstraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = EECDB3651AC0C95C006BBC11 /* LayoutConstraint.swift */; };
EECDB39C1AC0CBFF006BBC11 /* View+Snap.swift in Sources */ = {isa = PBXBuildFile; fileRef = EECDB3671AC0C95C006BBC11 /* View+Snap.swift */; }; EECDB39C1AC0CBFF006BBC11 /* View+SnapKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = EECDB3671AC0C95C006BBC11 /* View+SnapKit.swift */; };
EECDB39D1AC0CC03006BBC11 /* Snap.h in Headers */ = {isa = PBXBuildFile; fileRef = EECDB3661AC0C95C006BBC11 /* Snap.h */; settings = {ATTRIBUTES = (Public, ); }; }; EECDB39D1AC0CC03006BBC11 /* SnapKit.h in Headers */ = {isa = PBXBuildFile; fileRef = EECDB3661AC0C95C006BBC11 /* SnapKit.h */; settings = {ATTRIBUTES = (Public, ); }; };
EEFCF32C1AD910B900A425FA /* Debugging.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEFCF32B1AD910B900A425FA /* Debugging.swift */; }; EEFCF32C1AD910B900A425FA /* Debugging.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEFCF32B1AD910B900A425FA /* Debugging.swift */; };
EEFCF32D1AD9250C00A425FA /* Debugging.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEFCF32B1AD910B900A425FA /* Debugging.swift */; }; EEFCF32D1AD9250C00A425FA /* Debugging.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEFCF32B1AD910B900A425FA /* Debugging.swift */; };
EEFCF32F1AD926AE00A425FA /* Snap.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEFCF32E1AD926AE00A425FA /* Snap.swift */; }; EEFCF32F1AD926AE00A425FA /* SnapKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEFCF32E1AD926AE00A425FA /* SnapKit.swift */; };
EEFCF3301AD92C2200A425FA /* Snap.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEFCF32E1AD926AE00A425FA /* Snap.swift */; }; EEFCF3301AD92C2200A425FA /* SnapKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEFCF32E1AD926AE00A425FA /* SnapKit.swift */; };
EEFCF3321AD9432400A425FA /* ConstraintDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEFCF3311AD9432400A425FA /* ConstraintDescription.swift */; }; EEFCF3321AD9432400A425FA /* ConstraintDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEFCF3311AD9432400A425FA /* ConstraintDescription.swift */; };
EEFCF3331AD9432400A425FA /* ConstraintDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEFCF3311AD9432400A425FA /* ConstraintDescription.swift */; }; EEFCF3331AD9432400A425FA /* ConstraintDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEFCF3311AD9432400A425FA /* ConstraintDescription.swift */; };
/* End PBXBuildFile section */ /* End PBXBuildFile section */
@ -45,15 +45,15 @@
containerPortal = DDC9FD8D1981B4DD009612C7 /* Project object */; containerPortal = DDC9FD8D1981B4DD009612C7 /* Project object */;
proxyType = 1; proxyType = 1;
remoteGlobalIDString = EECDB3791AC0C9D4006BBC11; remoteGlobalIDString = EECDB3791AC0C9D4006BBC11;
remoteInfo = "Snap OSX"; remoteInfo = "SnapKit OSX";
}; };
/* End PBXContainerItemProxy section */ /* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */ /* Begin PBXFileReference section */
EE94F6081AC0F10A008767FF /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; EE94F6081AC0F10A008767FF /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
EE94F60A1AC0F10F008767FF /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk/System/Library/Frameworks/AppKit.framework; sourceTree = DEVELOPER_DIR; }; EE94F60A1AC0F10F008767FF /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk/System/Library/Frameworks/AppKit.framework; sourceTree = DEVELOPER_DIR; };
EEBCC9D819CC627D0083B827 /* Snap.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Snap.framework; sourceTree = BUILT_PRODUCTS_DIR; }; EEBCC9D819CC627D0083B827 /* SnapKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SnapKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
EEBCC9E219CC627E0083B827 /* Snap iOS Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Snap iOS Tests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; EEBCC9E219CC627E0083B827 /* SnapKit iOS Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "SnapKit iOS Tests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
EECDB35E1AC0C95C006BBC11 /* Constraint.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Constraint.swift; sourceTree = "<group>"; }; EECDB35E1AC0C95C006BBC11 /* Constraint.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Constraint.swift; sourceTree = "<group>"; };
EECDB35F1AC0C95C006BBC11 /* ConstraintAttributes.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConstraintAttributes.swift; sourceTree = "<group>"; }; EECDB35F1AC0C95C006BBC11 /* ConstraintAttributes.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConstraintAttributes.swift; sourceTree = "<group>"; };
EECDB3601AC0C95C006BBC11 /* ConstraintItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConstraintItem.swift; sourceTree = "<group>"; }; EECDB3601AC0C95C006BBC11 /* ConstraintItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConstraintItem.swift; sourceTree = "<group>"; };
@ -62,14 +62,14 @@
EECDB3631AC0C95C006BBC11 /* EdgeInsets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EdgeInsets.swift; sourceTree = "<group>"; }; EECDB3631AC0C95C006BBC11 /* EdgeInsets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EdgeInsets.swift; sourceTree = "<group>"; };
EECDB3641AC0C95C006BBC11 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; }; EECDB3641AC0C95C006BBC11 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
EECDB3651AC0C95C006BBC11 /* LayoutConstraint.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LayoutConstraint.swift; sourceTree = "<group>"; }; EECDB3651AC0C95C006BBC11 /* LayoutConstraint.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LayoutConstraint.swift; sourceTree = "<group>"; };
EECDB3661AC0C95C006BBC11 /* Snap.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Snap.h; sourceTree = "<group>"; }; EECDB3661AC0C95C006BBC11 /* SnapKit.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SnapKit.h; sourceTree = "<group>"; };
EECDB3671AC0C95C006BBC11 /* View+Snap.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "View+Snap.swift"; sourceTree = "<group>"; }; EECDB3671AC0C95C006BBC11 /* View+SnapKit.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "View+SnapKit.swift"; sourceTree = "<group>"; };
EECDB3691AC0C95C006BBC11 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; }; EECDB3691AC0C95C006BBC11 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
EECDB36A1AC0C95C006BBC11 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = "<group>"; }; EECDB36A1AC0C95C006BBC11 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = "<group>"; };
EECDB37A1AC0C9D4006BBC11 /* Snap.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Snap.framework; sourceTree = BUILT_PRODUCTS_DIR; }; EECDB37A1AC0C9D4006BBC11 /* SnapKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SnapKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
EECDB3841AC0C9D4006BBC11 /* Snap OSX Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Snap OSX Tests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; EECDB3841AC0C9D4006BBC11 /* SnapKit OSX Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "SnapKit OSX Tests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
EEFCF32B1AD910B900A425FA /* Debugging.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Debugging.swift; sourceTree = "<group>"; }; EEFCF32B1AD910B900A425FA /* Debugging.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Debugging.swift; sourceTree = "<group>"; };
EEFCF32E1AD926AE00A425FA /* Snap.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Snap.swift; sourceTree = "<group>"; }; EEFCF32E1AD926AE00A425FA /* SnapKit.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SnapKit.swift; sourceTree = "<group>"; };
EEFCF3311AD9432400A425FA /* ConstraintDescription.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ConstraintDescription.swift; sourceTree = "<group>"; }; EEFCF3311AD9432400A425FA /* ConstraintDescription.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ConstraintDescription.swift; sourceTree = "<group>"; };
/* End PBXFileReference section */ /* End PBXFileReference section */
@ -78,7 +78,7 @@
isa = PBXFrameworksBuildPhase; isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
files = ( files = (
EE94F6111AC0F146008767FF /* Snap.framework in Frameworks */, EE94F6111AC0F146008767FF /* SnapKit.framework in Frameworks */,
); );
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
}; };
@ -86,7 +86,7 @@
isa = PBXFrameworksBuildPhase; isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
files = ( files = (
EE94F6101AC0F143008767FF /* Snap.framework in Frameworks */, EE94F6101AC0F143008767FF /* SnapKit.framework in Frameworks */,
); );
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
}; };
@ -121,10 +121,10 @@
DDC9FD961981B4DD009612C7 /* Products */ = { DDC9FD961981B4DD009612C7 /* Products */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
EEBCC9D819CC627D0083B827 /* Snap.framework */, EEBCC9D819CC627D0083B827 /* SnapKit.framework */,
EEBCC9E219CC627E0083B827 /* Snap iOS Tests.xctest */, EEBCC9E219CC627E0083B827 /* SnapKit iOS Tests.xctest */,
EECDB37A1AC0C9D4006BBC11 /* Snap.framework */, EECDB37A1AC0C9D4006BBC11 /* SnapKit.framework */,
EECDB3841AC0C9D4006BBC11 /* Snap OSX Tests.xctest */, EECDB3841AC0C9D4006BBC11 /* SnapKit OSX Tests.xctest */,
); );
name = Products; name = Products;
sourceTree = "<group>"; sourceTree = "<group>";
@ -141,12 +141,12 @@
EECDB35D1AC0C95C006BBC11 /* Source */ = { EECDB35D1AC0C95C006BBC11 /* Source */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
EECDB3661AC0C95C006BBC11 /* Snap.h */, EECDB3661AC0C95C006BBC11 /* SnapKit.h */,
EEFCF32E1AD926AE00A425FA /* Snap.swift */, EEFCF32E1AD926AE00A425FA /* SnapKit.swift */,
EECDB35E1AC0C95C006BBC11 /* Constraint.swift */, EECDB35E1AC0C95C006BBC11 /* Constraint.swift */,
EEFCF3311AD9432400A425FA /* ConstraintDescription.swift */, EEFCF3311AD9432400A425FA /* ConstraintDescription.swift */,
EECDB3611AC0C95C006BBC11 /* ConstraintMaker.swift */, EECDB3611AC0C95C006BBC11 /* ConstraintMaker.swift */,
EECDB3671AC0C95C006BBC11 /* View+Snap.swift */, EECDB3671AC0C95C006BBC11 /* View+SnapKit.swift */,
EECDB3601AC0C95C006BBC11 /* ConstraintItem.swift */, EECDB3601AC0C95C006BBC11 /* ConstraintItem.swift */,
EECDB3631AC0C95C006BBC11 /* EdgeInsets.swift */, EECDB3631AC0C95C006BBC11 /* EdgeInsets.swift */,
EECDB3651AC0C95C006BBC11 /* LayoutConstraint.swift */, EECDB3651AC0C95C006BBC11 /* LayoutConstraint.swift */,
@ -184,7 +184,7 @@
isa = PBXHeadersBuildPhase; isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
files = ( files = (
EECDB3741AC0C9B6006BBC11 /* Snap.h in Headers */, EECDB3741AC0C9B6006BBC11 /* SnapKit.h in Headers */,
); );
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
}; };
@ -192,16 +192,16 @@
isa = PBXHeadersBuildPhase; isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
files = ( files = (
EECDB39D1AC0CC03006BBC11 /* Snap.h in Headers */, EECDB39D1AC0CC03006BBC11 /* SnapKit.h in Headers */,
); );
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
}; };
/* End PBXHeadersBuildPhase section */ /* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */ /* Begin PBXNativeTarget section */
EEBCC9D719CC627D0083B827 /* Snap iOS */ = { EEBCC9D719CC627D0083B827 /* SnapKit iOS */ = {
isa = PBXNativeTarget; isa = PBXNativeTarget;
buildConfigurationList = EEBCC9E819CC627E0083B827 /* Build configuration list for PBXNativeTarget "Snap iOS" */; buildConfigurationList = EEBCC9E819CC627E0083B827 /* Build configuration list for PBXNativeTarget "SnapKit iOS" */;
buildPhases = ( buildPhases = (
EEBCC9D319CC627D0083B827 /* Sources */, EEBCC9D319CC627D0083B827 /* Sources */,
EEBCC9D419CC627D0083B827 /* Frameworks */, EEBCC9D419CC627D0083B827 /* Frameworks */,
@ -212,14 +212,14 @@
); );
dependencies = ( dependencies = (
); );
name = "Snap iOS"; name = "SnapKit iOS";
productName = Snap; productName = SnapKit;
productReference = EEBCC9D819CC627D0083B827 /* Snap.framework */; productReference = EEBCC9D819CC627D0083B827 /* SnapKit.framework */;
productType = "com.apple.product-type.framework"; productType = "com.apple.product-type.framework";
}; };
EEBCC9E119CC627D0083B827 /* Snap iOS Tests */ = { EEBCC9E119CC627D0083B827 /* SnapKit iOS Tests */ = {
isa = PBXNativeTarget; isa = PBXNativeTarget;
buildConfigurationList = EEBCC9EB19CC627E0083B827 /* Build configuration list for PBXNativeTarget "Snap iOS Tests" */; buildConfigurationList = EEBCC9EB19CC627E0083B827 /* Build configuration list for PBXNativeTarget "SnapKit iOS Tests" */;
buildPhases = ( buildPhases = (
EEBCC9DE19CC627D0083B827 /* Sources */, EEBCC9DE19CC627D0083B827 /* Sources */,
EE94F60E1AC0F136008767FF /* Frameworks */, EE94F60E1AC0F136008767FF /* Frameworks */,
@ -229,14 +229,14 @@
); );
dependencies = ( dependencies = (
); );
name = "Snap iOS Tests"; name = "SnapKit iOS Tests";
productName = SnapTests; productName = SnapKitTests;
productReference = EEBCC9E219CC627E0083B827 /* Snap iOS Tests.xctest */; productReference = EEBCC9E219CC627E0083B827 /* SnapKit iOS Tests.xctest */;
productType = "com.apple.product-type.bundle.unit-test"; productType = "com.apple.product-type.bundle.unit-test";
}; };
EECDB3791AC0C9D4006BBC11 /* Snap OSX */ = { EECDB3791AC0C9D4006BBC11 /* SnapKit OSX */ = {
isa = PBXNativeTarget; isa = PBXNativeTarget;
buildConfigurationList = EECDB38D1AC0C9D4006BBC11 /* Build configuration list for PBXNativeTarget "Snap OSX" */; buildConfigurationList = EECDB38D1AC0C9D4006BBC11 /* Build configuration list for PBXNativeTarget "SnapKit OSX" */;
buildPhases = ( buildPhases = (
EECDB3751AC0C9D4006BBC11 /* Sources */, EECDB3751AC0C9D4006BBC11 /* Sources */,
EECDB3761AC0C9D4006BBC11 /* Frameworks */, EECDB3761AC0C9D4006BBC11 /* Frameworks */,
@ -247,14 +247,14 @@
); );
dependencies = ( dependencies = (
); );
name = "Snap OSX"; name = "SnapKit OSX";
productName = "Snap OSX"; productName = "SnapKit OSX";
productReference = EECDB37A1AC0C9D4006BBC11 /* Snap.framework */; productReference = EECDB37A1AC0C9D4006BBC11 /* SnapKit.framework */;
productType = "com.apple.product-type.framework"; productType = "com.apple.product-type.framework";
}; };
EECDB3831AC0C9D4006BBC11 /* Snap OSX Tests */ = { EECDB3831AC0C9D4006BBC11 /* SnapKit OSX Tests */ = {
isa = PBXNativeTarget; isa = PBXNativeTarget;
buildConfigurationList = EECDB3901AC0C9D4006BBC11 /* Build configuration list for PBXNativeTarget "Snap OSX Tests" */; buildConfigurationList = EECDB3901AC0C9D4006BBC11 /* Build configuration list for PBXNativeTarget "SnapKit OSX Tests" */;
buildPhases = ( buildPhases = (
EECDB3801AC0C9D4006BBC11 /* Sources */, EECDB3801AC0C9D4006BBC11 /* Sources */,
EE94F60D1AC0F132008767FF /* Frameworks */, EE94F60D1AC0F132008767FF /* Frameworks */,
@ -265,9 +265,9 @@
dependencies = ( dependencies = (
EECDB3871AC0C9D4006BBC11 /* PBXTargetDependency */, EECDB3871AC0C9D4006BBC11 /* PBXTargetDependency */,
); );
name = "Snap OSX Tests"; name = "SnapKit OSX Tests";
productName = "Snap OSXTests"; productName = "SnapKit OSXTests";
productReference = EECDB3841AC0C9D4006BBC11 /* Snap OSX Tests.xctest */; productReference = EECDB3841AC0C9D4006BBC11 /* SnapKit OSX Tests.xctest */;
productType = "com.apple.product-type.bundle.unit-test"; productType = "com.apple.product-type.bundle.unit-test";
}; };
/* End PBXNativeTarget section */ /* End PBXNativeTarget section */
@ -277,7 +277,7 @@
isa = PBXProject; isa = PBXProject;
attributes = { attributes = {
LastUpgradeCheck = 0600; LastUpgradeCheck = 0600;
ORGANIZATIONNAME = "Masonry Team"; ORGANIZATIONNAME = "SnapKit Team";
TargetAttributes = { TargetAttributes = {
EEBCC9D719CC627D0083B827 = { EEBCC9D719CC627D0083B827 = {
CreatedOnToolsVersion = 6.0; CreatedOnToolsVersion = 6.0;
@ -293,7 +293,7 @@
}; };
}; };
}; };
buildConfigurationList = DDC9FD901981B4DD009612C7 /* Build configuration list for PBXProject "Snap" */; buildConfigurationList = DDC9FD901981B4DD009612C7 /* Build configuration list for PBXProject "SnapKit" */;
compatibilityVersion = "Xcode 3.2"; compatibilityVersion = "Xcode 3.2";
developmentRegion = English; developmentRegion = English;
hasScannedForEncodings = 0; hasScannedForEncodings = 0;
@ -306,10 +306,10 @@
projectDirPath = ""; projectDirPath = "";
projectRoot = ""; projectRoot = "";
targets = ( targets = (
EEBCC9D719CC627D0083B827 /* Snap iOS */, EEBCC9D719CC627D0083B827 /* SnapKit iOS */,
EECDB3791AC0C9D4006BBC11 /* Snap OSX */, EECDB3791AC0C9D4006BBC11 /* SnapKit OSX */,
EEBCC9E119CC627D0083B827 /* Snap iOS Tests */, EEBCC9E119CC627D0083B827 /* SnapKit iOS Tests */,
EECDB3831AC0C9D4006BBC11 /* Snap OSX Tests */, EECDB3831AC0C9D4006BBC11 /* SnapKit OSX Tests */,
); );
}; };
/* End PBXProject section */ /* End PBXProject section */
@ -351,11 +351,11 @@
buildActionMask = 2147483647; buildActionMask = 2147483647;
files = ( files = (
EECDB36C1AC0C9A6006BBC11 /* Constraint.swift in Sources */, EECDB36C1AC0C9A6006BBC11 /* Constraint.swift in Sources */,
EEFCF32F1AD926AE00A425FA /* Snap.swift in Sources */, EEFCF32F1AD926AE00A425FA /* SnapKit.swift in Sources */,
EEFCF32C1AD910B900A425FA /* Debugging.swift in Sources */, EEFCF32C1AD910B900A425FA /* Debugging.swift in Sources */,
EECDB3701AC0C9A6006BBC11 /* ConstraintRelation.swift in Sources */, EECDB3701AC0C9A6006BBC11 /* ConstraintRelation.swift in Sources */,
EEFCF3321AD9432400A425FA /* ConstraintDescription.swift in Sources */, EEFCF3321AD9432400A425FA /* ConstraintDescription.swift in Sources */,
EECDB3731AC0C9A6006BBC11 /* View+Snap.swift in Sources */, EECDB3731AC0C9A6006BBC11 /* View+SnapKit.swift in Sources */,
EECDB3711AC0C9A6006BBC11 /* EdgeInsets.swift in Sources */, EECDB3711AC0C9A6006BBC11 /* EdgeInsets.swift in Sources */,
EECDB36F1AC0C9A6006BBC11 /* ConstraintMaker.swift in Sources */, EECDB36F1AC0C9A6006BBC11 /* ConstraintMaker.swift in Sources */,
EECDB36D1AC0C9A6006BBC11 /* ConstraintAttributes.swift in Sources */, EECDB36D1AC0C9A6006BBC11 /* ConstraintAttributes.swift in Sources */,
@ -377,11 +377,11 @@
buildActionMask = 2147483647; buildActionMask = 2147483647;
files = ( files = (
EECDB3951AC0CBFF006BBC11 /* Constraint.swift in Sources */, EECDB3951AC0CBFF006BBC11 /* Constraint.swift in Sources */,
EEFCF3301AD92C2200A425FA /* Snap.swift in Sources */, EEFCF3301AD92C2200A425FA /* SnapKit.swift in Sources */,
EEFCF32D1AD9250C00A425FA /* Debugging.swift in Sources */, EEFCF32D1AD9250C00A425FA /* Debugging.swift in Sources */,
EECDB3991AC0CBFF006BBC11 /* ConstraintRelation.swift in Sources */, EECDB3991AC0CBFF006BBC11 /* ConstraintRelation.swift in Sources */,
EEFCF3331AD9432400A425FA /* ConstraintDescription.swift in Sources */, EEFCF3331AD9432400A425FA /* ConstraintDescription.swift in Sources */,
EECDB39C1AC0CBFF006BBC11 /* View+Snap.swift in Sources */, EECDB39C1AC0CBFF006BBC11 /* View+SnapKit.swift in Sources */,
EECDB39A1AC0CBFF006BBC11 /* EdgeInsets.swift in Sources */, EECDB39A1AC0CBFF006BBC11 /* EdgeInsets.swift in Sources */,
EECDB3981AC0CBFF006BBC11 /* ConstraintMaker.swift in Sources */, EECDB3981AC0CBFF006BBC11 /* ConstraintMaker.swift in Sources */,
EECDB3961AC0CBFF006BBC11 /* ConstraintAttributes.swift in Sources */, EECDB3961AC0CBFF006BBC11 /* ConstraintAttributes.swift in Sources */,
@ -403,7 +403,7 @@
/* Begin PBXTargetDependency section */ /* Begin PBXTargetDependency section */
EECDB3871AC0C9D4006BBC11 /* PBXTargetDependency */ = { EECDB3871AC0C9D4006BBC11 /* PBXTargetDependency */ = {
isa = PBXTargetDependency; isa = PBXTargetDependency;
target = EECDB3791AC0C9D4006BBC11 /* Snap OSX */; target = EECDB3791AC0C9D4006BBC11 /* SnapKit OSX */;
targetProxy = EECDB3861AC0C9D4006BBC11 /* PBXContainerItemProxy */; targetProxy = EECDB3861AC0C9D4006BBC11 /* PBXContainerItemProxy */;
}; };
/* End PBXTargetDependency section */ /* End PBXTargetDependency section */
@ -502,7 +502,7 @@
INFOPLIST_FILE = "$(SRCROOT)/Source/Info.plist"; INFOPLIST_FILE = "$(SRCROOT)/Source/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_NAME = Snap; PRODUCT_NAME = SnapKit;
SKIP_INSTALL = YES; SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphonesimulator iphoneos"; SUPPORTED_PLATFORMS = "iphonesimulator iphoneos";
VERSIONING_SYSTEM = "apple-generic"; VERSIONING_SYSTEM = "apple-generic";
@ -522,7 +522,7 @@
INFOPLIST_FILE = "$(SRCROOT)/Source/Info.plist"; INFOPLIST_FILE = "$(SRCROOT)/Source/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_NAME = Snap; PRODUCT_NAME = SnapKit;
SKIP_INSTALL = YES; SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = "iphonesimulator iphoneos"; SUPPORTED_PLATFORMS = "iphonesimulator iphoneos";
VERSIONING_SYSTEM = "apple-generic"; VERSIONING_SYSTEM = "apple-generic";
@ -574,7 +574,7 @@
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.10; MACOSX_DEPLOYMENT_TARGET = 10.10;
PRODUCT_NAME = Snap; PRODUCT_NAME = SnapKit;
SDKROOT = macosx; SDKROOT = macosx;
SKIP_INSTALL = YES; SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx; SUPPORTED_PLATFORMS = macosx;
@ -598,7 +598,7 @@
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.10; MACOSX_DEPLOYMENT_TARGET = 10.10;
PRODUCT_NAME = Snap; PRODUCT_NAME = SnapKit;
SDKROOT = macosx; SDKROOT = macosx;
SKIP_INSTALL = YES; SKIP_INSTALL = YES;
SUPPORTED_PLATFORMS = macosx; SUPPORTED_PLATFORMS = macosx;
@ -644,7 +644,7 @@
/* End XCBuildConfiguration section */ /* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */ /* Begin XCConfigurationList section */
DDC9FD901981B4DD009612C7 /* Build configuration list for PBXProject "Snap" */ = { DDC9FD901981B4DD009612C7 /* Build configuration list for PBXProject "SnapKit" */ = {
isa = XCConfigurationList; isa = XCConfigurationList;
buildConfigurations = ( buildConfigurations = (
DDC9FDAF1981B4DD009612C7 /* Debug */, DDC9FDAF1981B4DD009612C7 /* Debug */,
@ -653,7 +653,7 @@
defaultConfigurationIsVisible = 0; defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release; defaultConfigurationName = Release;
}; };
EEBCC9E819CC627E0083B827 /* Build configuration list for PBXNativeTarget "Snap iOS" */ = { EEBCC9E819CC627E0083B827 /* Build configuration list for PBXNativeTarget "SnapKit iOS" */ = {
isa = XCConfigurationList; isa = XCConfigurationList;
buildConfigurations = ( buildConfigurations = (
EEBCC9E919CC627E0083B827 /* Debug */, EEBCC9E919CC627E0083B827 /* Debug */,
@ -662,7 +662,7 @@
defaultConfigurationIsVisible = 0; defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release; defaultConfigurationName = Release;
}; };
EEBCC9EB19CC627E0083B827 /* Build configuration list for PBXNativeTarget "Snap iOS Tests" */ = { EEBCC9EB19CC627E0083B827 /* Build configuration list for PBXNativeTarget "SnapKit iOS Tests" */ = {
isa = XCConfigurationList; isa = XCConfigurationList;
buildConfigurations = ( buildConfigurations = (
EEBCC9EC19CC627E0083B827 /* Debug */, EEBCC9EC19CC627E0083B827 /* Debug */,
@ -671,7 +671,7 @@
defaultConfigurationIsVisible = 0; defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release; defaultConfigurationName = Release;
}; };
EECDB38D1AC0C9D4006BBC11 /* Build configuration list for PBXNativeTarget "Snap OSX" */ = { EECDB38D1AC0C9D4006BBC11 /* Build configuration list for PBXNativeTarget "SnapKit OSX" */ = {
isa = XCConfigurationList; isa = XCConfigurationList;
buildConfigurations = ( buildConfigurations = (
EECDB38E1AC0C9D4006BBC11 /* Debug */, EECDB38E1AC0C9D4006BBC11 /* Debug */,
@ -680,7 +680,7 @@
defaultConfigurationIsVisible = 0; defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release; defaultConfigurationName = Release;
}; };
EECDB3901AC0C9D4006BBC11 /* Build configuration list for PBXNativeTarget "Snap OSX Tests" */ = { EECDB3901AC0C9D4006BBC11 /* Build configuration list for PBXNativeTarget "SnapKit OSX Tests" */ = {
isa = XCConfigurationList; isa = XCConfigurationList;
buildConfigurations = ( buildConfigurations = (
EECDB3911AC0C9D4006BBC11 /* Debug */, EECDB3911AC0C9D4006BBC11 /* Debug */,

View File

@ -15,9 +15,9 @@
<BuildableReference <BuildableReference
BuildableIdentifier = "primary" BuildableIdentifier = "primary"
BlueprintIdentifier = "EECDB3791AC0C9D4006BBC11" BlueprintIdentifier = "EECDB3791AC0C9D4006BBC11"
BuildableName = "Snap.framework" BuildableName = "SnapKit.framework"
BlueprintName = "Snap OSX" BlueprintName = "SnapKit OSX"
ReferencedContainer = "container:Snap.xcodeproj"> ReferencedContainer = "container:SnapKit.xcodeproj">
</BuildableReference> </BuildableReference>
</BuildActionEntry> </BuildActionEntry>
<BuildActionEntry <BuildActionEntry
@ -29,9 +29,9 @@
<BuildableReference <BuildableReference
BuildableIdentifier = "primary" BuildableIdentifier = "primary"
BlueprintIdentifier = "EECDB3831AC0C9D4006BBC11" BlueprintIdentifier = "EECDB3831AC0C9D4006BBC11"
BuildableName = "Snap OSX Tests.xctest" BuildableName = "SnapKit OSX Tests.xctest"
BlueprintName = "Snap OSX Tests" BlueprintName = "SnapKit OSX Tests"
ReferencedContainer = "container:Snap.xcodeproj"> ReferencedContainer = "container:SnapKit.xcodeproj">
</BuildableReference> </BuildableReference>
</BuildActionEntry> </BuildActionEntry>
</BuildActionEntries> </BuildActionEntries>
@ -47,9 +47,9 @@
<BuildableReference <BuildableReference
BuildableIdentifier = "primary" BuildableIdentifier = "primary"
BlueprintIdentifier = "EECDB3831AC0C9D4006BBC11" BlueprintIdentifier = "EECDB3831AC0C9D4006BBC11"
BuildableName = "Snap OSX Tests.xctest" BuildableName = "SnapKit OSX Tests.xctest"
BlueprintName = "Snap OSX Tests" BlueprintName = "SnapKit OSX Tests"
ReferencedContainer = "container:Snap.xcodeproj"> ReferencedContainer = "container:SnapKit.xcodeproj">
</BuildableReference> </BuildableReference>
</TestableReference> </TestableReference>
</Testables> </Testables>
@ -57,9 +57,9 @@
<BuildableReference <BuildableReference
BuildableIdentifier = "primary" BuildableIdentifier = "primary"
BlueprintIdentifier = "EECDB3791AC0C9D4006BBC11" BlueprintIdentifier = "EECDB3791AC0C9D4006BBC11"
BuildableName = "Snap.framework" BuildableName = "SnapKit.framework"
BlueprintName = "Snap OSX" BlueprintName = "SnapKit OSX"
ReferencedContainer = "container:Snap.xcodeproj"> ReferencedContainer = "container:SnapKit.xcodeproj">
</BuildableReference> </BuildableReference>
</MacroExpansion> </MacroExpansion>
</TestAction> </TestAction>
@ -76,9 +76,9 @@
<BuildableReference <BuildableReference
BuildableIdentifier = "primary" BuildableIdentifier = "primary"
BlueprintIdentifier = "EECDB3791AC0C9D4006BBC11" BlueprintIdentifier = "EECDB3791AC0C9D4006BBC11"
BuildableName = "Snap.framework" BuildableName = "SnapKit.framework"
BlueprintName = "Snap OSX" BlueprintName = "SnapKit OSX"
ReferencedContainer = "container:Snap.xcodeproj"> ReferencedContainer = "container:SnapKit.xcodeproj">
</BuildableReference> </BuildableReference>
</MacroExpansion> </MacroExpansion>
<AdditionalOptions> <AdditionalOptions>
@ -94,9 +94,9 @@
<BuildableReference <BuildableReference
BuildableIdentifier = "primary" BuildableIdentifier = "primary"
BlueprintIdentifier = "EECDB3791AC0C9D4006BBC11" BlueprintIdentifier = "EECDB3791AC0C9D4006BBC11"
BuildableName = "Snap.framework" BuildableName = "SnapKit.framework"
BlueprintName = "Snap OSX" BlueprintName = "SnapKit OSX"
ReferencedContainer = "container:Snap.xcodeproj"> ReferencedContainer = "container:SnapKit.xcodeproj">
</BuildableReference> </BuildableReference>
</MacroExpansion> </MacroExpansion>
</ProfileAction> </ProfileAction>

View File

@ -15,9 +15,9 @@
<BuildableReference <BuildableReference
BuildableIdentifier = "primary" BuildableIdentifier = "primary"
BlueprintIdentifier = "EEBCC9D719CC627D0083B827" BlueprintIdentifier = "EEBCC9D719CC627D0083B827"
BuildableName = "Snap.framework" BuildableName = "SnapKit.framework"
BlueprintName = "Snap iOS" BlueprintName = "SnapKit iOS"
ReferencedContainer = "container:Snap.xcodeproj"> ReferencedContainer = "container:SnapKit.xcodeproj">
</BuildableReference> </BuildableReference>
</BuildActionEntry> </BuildActionEntry>
<BuildActionEntry <BuildActionEntry
@ -29,9 +29,9 @@
<BuildableReference <BuildableReference
BuildableIdentifier = "primary" BuildableIdentifier = "primary"
BlueprintIdentifier = "EEBCC9E119CC627D0083B827" BlueprintIdentifier = "EEBCC9E119CC627D0083B827"
BuildableName = "Snap iOS Tests.xctest" BuildableName = "SnapKit iOS Tests.xctest"
BlueprintName = "Snap iOS Tests" BlueprintName = "SnapKit iOS Tests"
ReferencedContainer = "container:Snap.xcodeproj"> ReferencedContainer = "container:SnapKit.xcodeproj">
</BuildableReference> </BuildableReference>
</BuildActionEntry> </BuildActionEntry>
</BuildActionEntries> </BuildActionEntries>
@ -47,9 +47,9 @@
<BuildableReference <BuildableReference
BuildableIdentifier = "primary" BuildableIdentifier = "primary"
BlueprintIdentifier = "EEBCC9E119CC627D0083B827" BlueprintIdentifier = "EEBCC9E119CC627D0083B827"
BuildableName = "Snap iOS Tests.xctest" BuildableName = "SnapKit iOS Tests.xctest"
BlueprintName = "Snap iOS Tests" BlueprintName = "SnapKit iOS Tests"
ReferencedContainer = "container:Snap.xcodeproj"> ReferencedContainer = "container:SnapKit.xcodeproj">
</BuildableReference> </BuildableReference>
</TestableReference> </TestableReference>
</Testables> </Testables>
@ -57,9 +57,9 @@
<BuildableReference <BuildableReference
BuildableIdentifier = "primary" BuildableIdentifier = "primary"
BlueprintIdentifier = "EEBCC9D719CC627D0083B827" BlueprintIdentifier = "EEBCC9D719CC627D0083B827"
BuildableName = "Snap.framework" BuildableName = "SnapKit.framework"
BlueprintName = "Snap iOS" BlueprintName = "SnapKit iOS"
ReferencedContainer = "container:Snap.xcodeproj"> ReferencedContainer = "container:SnapKit.xcodeproj">
</BuildableReference> </BuildableReference>
</MacroExpansion> </MacroExpansion>
</TestAction> </TestAction>
@ -76,9 +76,9 @@
<BuildableReference <BuildableReference
BuildableIdentifier = "primary" BuildableIdentifier = "primary"
BlueprintIdentifier = "EEBCC9D719CC627D0083B827" BlueprintIdentifier = "EEBCC9D719CC627D0083B827"
BuildableName = "Snap.framework" BuildableName = "SnapKit.framework"
BlueprintName = "Snap iOS" BlueprintName = "SnapKit iOS"
ReferencedContainer = "container:Snap.xcodeproj"> ReferencedContainer = "container:SnapKit.xcodeproj">
</BuildableReference> </BuildableReference>
</MacroExpansion> </MacroExpansion>
<AdditionalOptions> <AdditionalOptions>
@ -94,9 +94,9 @@
<BuildableReference <BuildableReference
BuildableIdentifier = "primary" BuildableIdentifier = "primary"
BlueprintIdentifier = "EEBCC9D719CC627D0083B827" BlueprintIdentifier = "EEBCC9D719CC627D0083B827"
BuildableName = "Snap.framework" BuildableName = "SnapKit.framework"
BlueprintName = "Snap iOS" BlueprintName = "SnapKit iOS"
ReferencedContainer = "container:Snap.xcodeproj"> ReferencedContainer = "container:SnapKit.xcodeproj">
</BuildableReference> </BuildableReference>
</MacroExpansion> </MacroExpansion>
</ProfileAction> </ProfileAction>

View File

@ -2,6 +2,6 @@
<Workspace <Workspace
version = "1.0"> version = "1.0">
<FileRef <FileRef
location = "container:Snap.xcodeproj"> location = "container:SnapKit.xcodeproj">
</FileRef> </FileRef>
</Workspace> </Workspace>

View File

@ -5,16 +5,16 @@
<key>IDESourceControlProjectFavoriteDictionaryKey</key> <key>IDESourceControlProjectFavoriteDictionaryKey</key>
<false/> <false/>
<key>IDESourceControlProjectIdentifier</key> <key>IDESourceControlProjectIdentifier</key>
<string>A81B1AD2-2D5B-4BB2-AAA6-86A53AADC474</string> <string>A9120727-7306-4189-ADAA-9CB826A3713C</string>
<key>IDESourceControlProjectName</key> <key>IDESourceControlProjectName</key>
<string>Snap</string> <string>SnapKit</string>
<key>IDESourceControlProjectOriginsDictionary</key> <key>IDESourceControlProjectOriginsDictionary</key>
<dict> <dict>
<key>3AF18F9C6F5D633BAA0B3F935459E0C777C82047</key> <key>3AF18F9C6F5D633BAA0B3F935459E0C777C82047</key>
<string>github.com:Masonry/Snap.git</string> <string>github.com:Masonry/Snap.git</string>
</dict> </dict>
<key>IDESourceControlProjectPath</key> <key>IDESourceControlProjectPath</key>
<string>Snap.xcworkspace</string> <string>SnapKit.xcworkspace</string>
<key>IDESourceControlProjectRelativeInstallPathDictionary</key> <key>IDESourceControlProjectRelativeInstallPathDictionary</key>
<dict> <dict>
<key>3AF18F9C6F5D633BAA0B3F935459E0C777C82047</key> <key>3AF18F9C6F5D633BAA0B3F935459E0C777C82047</key>
@ -34,7 +34,7 @@
<key>IDESourceControlWCCIdentifierKey</key> <key>IDESourceControlWCCIdentifierKey</key>
<string>3AF18F9C6F5D633BAA0B3F935459E0C777C82047</string> <string>3AF18F9C6F5D633BAA0B3F935459E0C777C82047</string>
<key>IDESourceControlWCCName</key> <key>IDESourceControlWCCName</key>
<string>Snap</string> <string>SnapKit</string>
</dict> </dict>
</array> </array>
</dict> </dict>

View File

@ -1,7 +1,7 @@
// //
// Snap // SnapKit
// //
// Copyright (c) 2011-2015 Masonry Team - https://github.com/Masonry // Copyright (c) 2011-Present SnapKit Team - https://github.com/SnapKit
// //
// Permission is hereby granted, free of charge, to any person obtaining a copy // Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal // of this software and associated documentation files (the "Software"), to deal

View File

@ -1,7 +1,7 @@
// //
// Snap // SnapKit
// //
// Copyright (c) 2011-2015 Masonry Team - https://github.com/Masonry // Copyright (c) 2011-2015 SnapKit Team - https://github.com/SnapKit
// //
// Permission is hereby granted, free of charge, to any person obtaining a copy // Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal // of this software and associated documentation files (the "Software"), to deal

View File

@ -1,7 +1,7 @@
// //
// Snap // SnapKit
// //
// Copyright (c) 2011-2015 Masonry Team - https://github.com/Masonry // Copyright (c) 2011-2015 SnapKit Team - https://github.com/SnapKit
// //
// Permission is hereby granted, free of charge, to any person obtaining a copy // Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal // of this software and associated documentation files (the "Software"), to deal

View File

@ -1,7 +1,7 @@
// //
// Snap // SnapKit
// //
// Copyright (c) 2011-2015 Masonry Team - https://github.com/Masonry // Copyright (c) 2011-2015 SnapKit Team - https://github.com/SnapKit
// //
// Permission is hereby granted, free of charge, to any person obtaining a copy // Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal // of this software and associated documentation files (the "Software"), to deal

View File

@ -1,7 +1,7 @@
// //
// Snap // SnapKit
// //
// Copyright (c) 2011-2015 Masonry Team - https://github.com/Masonry // Copyright (c) 2011-2015 SnapKit Team - https://github.com/SnapKit
// //
// Permission is hereby granted, free of charge, to any person obtaining a copy // Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal // of this software and associated documentation files (the "Software"), to deal

View File

@ -1,7 +1,7 @@
// //
// Snap // SnapKit
// //
// Copyright (c) 2011-2015 Masonry Team - https://github.com/Masonry // Copyright (c) 2011-2015 SnapKit Team - https://github.com/SnapKit
// //
// Permission is hereby granted, free of charge, to any person obtaining a copy // Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal // of this software and associated documentation files (the "Software"), to deal

View File

@ -1,7 +1,7 @@
// //
// Snap // SnapKit
// //
// Copyright (c) 2011-2015 Masonry Team - https://github.com/Masonry // Copyright (c) 2011-2015 SnapKit Team - https://github.com/SnapKit
// //
// Permission is hereby granted, free of charge, to any person obtaining a copy // Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal // of this software and associated documentation files (the "Software"), to deal

View File

@ -1,7 +1,7 @@
// //
// Snap // SnapKit
// //
// Copyright (c) 2011-2015 Masonry Team - https://github.com/Masonry // Copyright (c) 2011-2015 SnapKit Team - https://github.com/SnapKit
// //
// Permission is hereby granted, free of charge, to any person obtaining a copy // Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal // of this software and associated documentation files (the "Software"), to deal

View File

@ -7,7 +7,7 @@
<key>CFBundleExecutable</key> <key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string> <string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key> <key>CFBundleIdentifier</key>
<string>com.masonry.$(PRODUCT_NAME:rfc1034identifier)</string> <string>io.snapkit.$(PRODUCT_NAME:rfc1034identifier)</string>
<key>CFBundleInfoDictionaryVersion</key> <key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string> <string>6.0</string>
<key>CFBundleName</key> <key>CFBundleName</key>

View File

@ -1,7 +1,7 @@
// //
// Snap // SnapKit
// //
// Copyright (c) 2011-2015 Masonry Team - https://github.com/Masonry // Copyright (c) 2011-2015 SnapKit Team - https://github.com/SnapKit
// //
// Permission is hereby granted, free of charge, to any person obtaining a copy // Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal // of this software and associated documentation files (the "Software"), to deal

View File

@ -1,7 +1,7 @@
// //
// Snap // SnapKit
// //
// Copyright (c) 2011-2014 Masonry Team - https://github.com/Masonry // Copyright (c) 2011-Present SnapKit Team - https://github.com/SnapKit
// //
// Permission is hereby granted, free of charge, to any person obtaining a copy // Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal // of this software and associated documentation files (the "Software"), to deal
@ -23,5 +23,5 @@
#import <Foundation/Foundation.h> #import <Foundation/Foundation.h>
FOUNDATION_EXPORT double SnapVersionNumber; FOUNDATION_EXPORT double SnapKitVersionNumber;
FOUNDATION_EXPORT const unsigned char SnapVersionString[]; FOUNDATION_EXPORT const unsigned char SnapKitVersionString[];

View File

@ -1,7 +1,7 @@
// //
// Snap // SnapKit
// //
// Copyright (c) 2011-2015 Masonry Team - https://github.com/Masonry // Copyright (c) 2011-2015 SnapKit Team - https://github.com/SnapKit
// //
// Permission is hereby granted, free of charge, to any person obtaining a copy // Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal // of this software and associated documentation files (the "Software"), to deal
@ -30,7 +30,7 @@ public typealias InterfaceLayoutDirection = NSUserInterfaceLayoutDirection
#endif #endif
/** /**
Used to configure different parts of Snap Used to configure different parts of SnapKit
*/ */
public struct Config { public struct Config {

View File

@ -1,7 +1,7 @@
// //
// Snap // SnapKit
// //
// Copyright (c) 2011-2015 Masonry Team - https://github.com/Masonry // Copyright (c) 2011-2015 SnapKit Team - https://github.com/SnapKit
// //
// Permission is hereby granted, free of charge, to any person obtaining a copy // Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal // of this software and associated documentation files (the "Software"), to deal

View File

@ -7,7 +7,7 @@
<key>CFBundleExecutable</key> <key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string> <string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key> <key>CFBundleIdentifier</key>
<string>com.masonry.$(PRODUCT_NAME:rfc1034identifier)</string> <string>io.snapkit.$(PRODUCT_NAME:rfc1034identifier)</string>
<key>CFBundleInfoDictionaryVersion</key> <key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string> <string>6.0</string>
<key>CFBundleName</key> <key>CFBundleName</key>

View File

@ -13,9 +13,9 @@ extension View {
#endif #endif
import XCTest import XCTest
import Snap import SnapKit
class SnapTests: XCTestCase { class SnapKitTests: XCTestCase {
let container = View() let container = View()