Skip to content

Commit

Permalink
change podspec for 1.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
念纪 committed Feb 27, 2019
1 parent 0799fcb commit 3decd15
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
6 changes: 3 additions & 3 deletions cokit.podspec
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Pod::Spec.new do |s|
s.name = "cokit"
s.version = "1.0.0"
s.summary = "cokit."
s.summary = "Coobjc's Foundationkit."

s.description = <<-DESC
cokit.
The Foundation extensions of coobjc.
DESC

s.homepage = "https://github.com/alibaba/coobjc"
Expand All @@ -21,7 +21,7 @@ Pod::Spec.new do |s|
s.ios.deployment_target = '8.0'
s.requires_arc = true

s.source = { :git => "git@github.com/alibaba/coobjc.git", :branch => 'master' }
s.source = { :git => "https://github.com/alibaba/coobjc.git", :tag => '1.0.0' }
s.source_files = 'cokit/cokit/**/*.{h,m}'

s.dependency "coobjc"
Expand Down
6 changes: 3 additions & 3 deletions coobjc.podspec
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
Pod::Spec.new do |s|
s.name = "coobjc"
s.version = "1.0.0"
s.summary = "Coroutine support for Objective-C"
s.summary = "A coroutine framework for Objective-C"

s.description = <<-DESC
This library provides coroutine support for Objective-C and Swift. We added await method、generator and actor model like C#、Javascript and Kotlin. For convenience, we added coroutine categories for some Foundation and UIKit API in cokit framework like NSFileManager, JSON, NSData, UIImage etc. We also add tuple support in coobjc
DESC

s.homepage = "http://github.com/alibaba/coobjc"
s.homepage = "https://github.com/alibaba/coobjc"
s.license = {
:type => 'Copyright',
:text => <<-LICENSE
Expand All @@ -21,7 +21,7 @@ Pod::Spec.new do |s|
s.ios.deployment_target = '8.0'
s.requires_arc = true

s.source = { :git => "git@github.com:alibaba/coobjc.git", :branch => 'master' }
s.source = { :git => "https://github.com/alibaba/coobjc.git", :tag => '1.0.0' }
s.source_files = 'coobjc/**/*.{h,m,s,c,mm}'

s.subspec 'no-arc' do |sna|
Expand Down
5 changes: 2 additions & 3 deletions coswift.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Pod::Spec.new do |s|
A coroutine framework for swift.
DESC

s.homepage = "http://github.com/alibaba/coobjc"
s.homepage = "https://github.com/alibaba/coobjc"
s.license = {
:type => 'Copyright',
:text => <<-LICENSE
Expand All @@ -21,9 +21,8 @@ Pod::Spec.new do |s|
s.ios.deployment_target = '8.0'
s.requires_arc = true

s.source = { :git => "git@github.com:alibaba/coobjc.git", :branch => 'master' }
s.source = { :git => "https://github.com/alibaba/coobjc.git", :tag => '1.0.0' }
s.source_files = 'coswift/*.{h,swift}'
s.exclude_files = 'coobjc/util/co_tuple.{h,m}'

s.dependency 'fishhook'
s.dependency 'coobjc'
Expand Down

0 comments on commit 3decd15

Please sign in to comment.