-
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3fcfabd
commit 5eb4d3a
Showing
18 changed files
with
140 additions
and
229 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "Anchors" | ||
s.name = "EasyAnchor" | ||
s.summary = "Declarative, extensible, powerful Auto Layout for iOS and macOS" | ||
s.version = "2.5.0" | ||
s.homepage = "https://github.com/onmyway133/Anchors" | ||
s.version = "3.0.0" | ||
s.homepage = "https://github.com/onmyway133/EasyAnchor" | ||
s.license = 'MIT' | ||
s.author = { "Khoa Pham" => "[email protected]" } | ||
s.source = { | ||
:git => "https://github.com/onmyway133/Anchors.git", | ||
:git => "https://github.com/onmyway133/EasyAnchor.git", | ||
:tag => s.version.to_s | ||
} | ||
s.social_media_url = 'https://twitter.com/onmyway133' | ||
|
150 changes: 69 additions & 81 deletions
150
Anchors.xcodeproj/project.pbxproj → EasyAnchor.xcodeproj/project.pbxproj
Large diffs are not rendered by default.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...ject.xcworkspace/contents.xcworkspacedata → ...ject.xcworkspace/contents.xcworkspacedata
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
File renamed without changes.
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
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,19 @@ | ||
// | ||
// EasyAnchor_tvOS.h | ||
// EasyAnchor-tvOS | ||
// | ||
// Created by Khoa Pham on 31.10.2017. | ||
// Copyright © 2017 Khoa Pham. All rights reserved. | ||
// | ||
|
||
#import <UIKit/UIKit.h> | ||
|
||
//! Project version number for EasyAnchor_tvOS. | ||
FOUNDATION_EXPORT double EasyAnchor_tvOSVersionNumber; | ||
|
||
//! Project version string for EasyAnchor_tvOS. | ||
FOUNDATION_EXPORT const unsigned char EasyAnchor_tvOSVersionString[]; | ||
|
||
// In this header, you should import all the public headers of your framework using statements like #import <EasyAnchor_tvOS/PublicHeader.h> | ||
|
||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import XCTest | ||
@testable import Anchors | ||
@testable import EasyAnchor | ||
|
||
class Tests: XCTestCase { | ||
|
||
|
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.