-
Notifications
You must be signed in to change notification settings - Fork 229
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #78 from layoutBox/ios_deployment_target_8
Update the Podspec minimum iOS platform to 8.0
- Loading branch information
Showing
3 changed files
with
8 additions
and
14 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,23 +1,17 @@ | ||
|
||
Pod::Spec.new do |spec| | ||
spec.name = "FlexLayout" | ||
spec.version = "1.3.5" | ||
spec.version = "1.3.6" | ||
spec.summary = "FlexLayout" | ||
|
||
spec.homepage = "https://github.com/lucdion/FlexLayout.git" | ||
spec.license = "BSD 3-clause" | ||
spec.author = { "Luc Dion" => "[email protected]" } | ||
|
||
spec.author = { | ||
"Luc Dion" => "[email protected]" | ||
} | ||
|
||
spec.platform = :ios, "9.0" | ||
|
||
spec.platform = :ios, "8.0" | ||
spec.source = { :git => "https://github.com/lucdion/FlexLayout.git", :tag => "#{spec.version}" } | ||
spec.source_files = "Sources/**/*.{swift,h,m,mm,cpp,c}" | ||
spec.source_files = "Sources/**/*.{swift,h,m,mm,cpp,c}" | ||
spec.public_header_files = "Sources/yoga/{Yoga,YGEnums,YGMacros}.h", "Sources/YogaKit/{UIView+Yoga,YGLayout}.h" | ||
|
||
|
||
# Should match yoga_defs.bzl + BUCK configuration | ||
spec.compiler_flags = [ | ||
'-fno-omit-frame-pointer', | ||
|
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