mirror of https://github.com/SnapKit/SnapKit
Merge branch 'main' of github.com:SnapKit/SnapKit into develop
# Conflicts: # README.md # SnapKit.podspec
This commit is contained in:
commit
07c5d1f604
|
@ -1,4 +1,4 @@
|
||||||
<img src="http://snapkit.io/images/banner.jpg" alt="" />
|
<img src="https://snapkit.github.io/SnapKit/images/banner.jpg" alt="" />
|
||||||
|
|
||||||
SnapKit is a DSL to make Auto Layout easy on both iOS and OS X.
|
SnapKit is a DSL to make Auto Layout easy on both iOS and OS X.
|
||||||
|
|
||||||
|
@ -59,7 +59,7 @@ platform :ios, '10.0'
|
||||||
use_frameworks!
|
use_frameworks!
|
||||||
|
|
||||||
target '<Your Target Name>' do
|
target '<Your Target Name>' do
|
||||||
pod 'SnapKit', '~> 5.0.0'
|
pod 'SnapKit', '~> 5.6.0'
|
||||||
end
|
end
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -142,8 +142,8 @@ You can try SnapKit in Playground.
|
||||||
|
|
||||||
### Resources
|
### Resources
|
||||||
|
|
||||||
- [Documentation](http://snapkit.io/docs/)
|
- [Documentation](https://snapkit.github.io/SnapKit/docs/)
|
||||||
- [F.A.Q.](http://snapkit.io/faq/)
|
- [F.A.Q.](https://snapkit.github.io/SnapKit/faq/)
|
||||||
|
|
||||||
## Credits
|
## Credits
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
Pod::Spec.new do |s|
|
Pod::Spec.new do |s|
|
||||||
s.name = 'SnapKit'
|
s.name = 'SnapKit'
|
||||||
s.version = '5.0.1'
|
s.version = '5.6.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/SnapKit/SnapKit'
|
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/SnapKit/SnapKit.git', :tag => '5.0.1' }
|
s.source = { :git => 'https://github.com/SnapKit/SnapKit.git', :tag => '5.6.0' }
|
||||||
|
|
||||||
s.ios.deployment_target = '10.0'
|
s.ios.deployment_target = '10.0'
|
||||||
s.osx.deployment_target = '10.11'
|
s.osx.deployment_target = '10.11'
|
||||||
|
@ -14,5 +14,5 @@ Pod::Spec.new do |s|
|
||||||
|
|
||||||
s.source_files = 'Sources/*.swift'
|
s.source_files = 'Sources/*.swift'
|
||||||
|
|
||||||
s.swift_version = '5.0'
|
s.swift_versions = ['5.0']
|
||||||
end
|
end
|
||||||
|
|
|
@ -536,6 +536,8 @@
|
||||||
CLANG_ENABLE_MODULES = YES;
|
CLANG_ENABLE_MODULES = YES;
|
||||||
CURRENT_PROJECT_VERSION = 1.0.0;
|
CURRENT_PROJECT_VERSION = 1.0.0;
|
||||||
DEFINES_MODULE = YES;
|
DEFINES_MODULE = YES;
|
||||||
|
DYLIB_COMPATIBILITY_VERSION = 1;
|
||||||
|
DYLIB_CURRENT_VERSION = 1;
|
||||||
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
||||||
INFOPLIST_FILE = "$(SRCROOT)/Supporting Files/Info.plist";
|
INFOPLIST_FILE = "$(SRCROOT)/Supporting Files/Info.plist";
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
|
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
|
||||||
|
@ -559,6 +561,8 @@
|
||||||
CLANG_ENABLE_MODULES = YES;
|
CLANG_ENABLE_MODULES = YES;
|
||||||
CURRENT_PROJECT_VERSION = 1.0.0;
|
CURRENT_PROJECT_VERSION = 1.0.0;
|
||||||
DEFINES_MODULE = YES;
|
DEFINES_MODULE = YES;
|
||||||
|
DYLIB_COMPATIBILITY_VERSION = 1;
|
||||||
|
DYLIB_CURRENT_VERSION = 1;
|
||||||
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
||||||
INFOPLIST_FILE = "$(SRCROOT)/Supporting Files/Info.plist";
|
INFOPLIST_FILE = "$(SRCROOT)/Supporting Files/Info.plist";
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
|
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
|
||||||
|
|
Loading…
Reference in New Issue