-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Bump iOS deployment target to 13.0 - Bump macOS deployment target to 10.15 - Bump tvOS deployment target to 13.0 - Bump watchOS deployment target to 5.0
- Loading branch information
1 parent
9309897
commit f8c00cf
Showing
14 changed files
with
127 additions
and
147 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
source 'https://rubygems.org' | ||
|
||
gem 'cocoapods', '1.9.3' | ||
gem 'cocoapods', '1.10.0' |
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,37 +1,20 @@ | ||
# | ||
# Be sure to run `pod lib lint ${POD_NAME}.podspec' to ensure this is a | ||
# valid spec before submitting. | ||
# | ||
# Any lines starting with a # are optional, but their use is encouraged | ||
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html | ||
# | ||
|
||
Pod::Spec.new do |s| | ||
s.name = 'Loki' | ||
s.version = '1.4.4' | ||
s.version = '2.0.0' | ||
s.summary = 'Loki is an iOS/macOS/tvOS/watchOS framework for manipulating UIImage/NSImage.' | ||
|
||
# This description is used to generate tags and improve search results. | ||
# * Think: What does it do? Why did you write it? What is the focus? | ||
# * Try to keep it short, snappy and to the point. | ||
# * Write the description between the DESC delimiters below. | ||
# * Finally, don't worry about the indent, CocoaPods strips it! | ||
|
||
s.description = <<-DESC | ||
Loki is an iOS/macOS/tvOS/watchOS framework for manipulating `UIImage`/`NSImage`. Methods are provided to resize, blur, adjust contrast, brightness, or saturation. A limited subset of methods are provided on watchOS. | ||
DESC | ||
|
||
s.homepage = 'https://github.com/Kosoku/Loki' | ||
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' | ||
s.license = { :type => 'Apache 2.0', :file => 'LICENSE.txt' } | ||
s.author = { 'William Towe' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/Kosoku/Loki.git', :tag => s.version.to_s } | ||
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>' | ||
|
||
s.ios.deployment_target = '10.0' | ||
s.osx.deployment_target = '10.12' | ||
s.tvos.deployment_target = '10.0' | ||
s.watchos.deployment_target = '3.0' | ||
s.ios.deployment_target = '13.0' | ||
s.osx.deployment_target = '10.15' | ||
s.tvos.deployment_target = '13.0' | ||
s.watchos.deployment_target = '5.0' | ||
|
||
s.requires_arc = true | ||
|
||
|
@@ -43,14 +26,8 @@ Loki is an iOS/macOS/tvOS/watchOS framework for manipulating `UIImage`/`NSImage` | |
s.tvos.exclude_files = 'Loki/macOS' | ||
s.watchos.exclude_files = 'Loki/macOS' | ||
|
||
# s.resource_bundles = { | ||
# '${POD_NAME}' => ['${POD_NAME}/Assets/*.png'] | ||
# } | ||
|
||
# s.public_header_files = 'Pod/Classes/**/*.h' | ||
s.ios.frameworks = 'Foundation', 'UIKit', 'Accelerate' | ||
s.osx.frameworks = 'Foundation', 'AppKit', 'Accelerate' | ||
s.tvos.frameworks = 'Foundation', 'UIKit', 'Accelerate' | ||
s.watchos.frameworks = 'Foundation', 'UIKit' | ||
# s.dependency 'AFNetworking', '~> 2.3' | ||
end |
Oops, something went wrong.