-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Conflicts: # README.md
- Loading branch information
Showing
4 changed files
with
80 additions
and
23 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 |
---|---|---|
|
@@ -8,23 +8,14 @@ | |
|
||
Pod::Spec.new do |s| | ||
s.name = 'APNSUtil' | ||
s.version = '1.1.4' | ||
s.version = '1.1.5' | ||
s.summary = 'APNSUtil is makes code simple using apple push notification service.' | ||
s.description = 'APNSUtil is makes code simple using apple push notification service.' | ||
s.homepage = 'https://github.com/pisces/APNSUtil' | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { 'pisces' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/pisces/APNSUtil.git', :tag => s.version.to_s } | ||
s.ios.deployment_target = '9.0' | ||
s.source_files = 'APNSUtil/Classes/**/*' | ||
s.dependency 'ObjectMapper', '~> 3.1' | ||
s.default_subspec = 'Core' | ||
|
||
s.subspec 'Core' do |core| | ||
core.source_files = 'APNSUtil/Classes/**/*' | ||
end | ||
|
||
s.subspec 'AppExtension' do |ext| | ||
ext.source_files = 'APNSUtil/Classes/**/*' | ||
ext.pod_target_xcconfig = { 'OTHER_SWIFT_FLAGS' => '-DAPP_EXTENSIONS' } | ||
end | ||
end |
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,22 @@ | ||
# | ||
# Be sure to run `pod lib lint APNSUtil.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 = 'APNSUtilAppExtension' | ||
s.version = '1.1.5' | ||
s.summary = 'APNSUtil is makes code simple using apple push notification service.' | ||
s.description = 'APNSUtil is makes code simple using apple push notification service.' | ||
s.homepage = 'https://github.com/pisces/APNSUtil' | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { 'pisces' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/pisces/APNSUtil.git', :tag => s.version.to_s } | ||
s.ios.deployment_target = '9.0' | ||
s.source_files = 'APNSUtil/Classes/**/*' | ||
s.dependency 'ObjectMapper', '~> 3.1' | ||
s.pod_target_xcconfig = { 'OTHER_SWIFT_FLAGS' => '-DAPP_EXTENSIONS' } | ||
end |
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