Skip to content

Commit

Permalink
feat(podspec): add support for carthage
Browse files Browse the repository at this point in the history
add support for carthage

fix alibaba#49
  • Loading branch information
pengyutang125 committed Mar 14, 2019
1 parent 9ed8ab5 commit 346fcd5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
4 changes: 2 additions & 2 deletions cocore.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "cocore"
s.version = "1.1.0"
s.version = "1.1.1"
s.summary = "coobjc's core implement"

s.description = <<-DESC
Expand All @@ -20,7 +20,7 @@ Pod::Spec.new do |s|
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.12'

s.source = { :git => "https://github.com/alibaba/coobjc.git", :tag => '1.1.0' }
s.source = { :git => "https://github.com/alibaba/coobjc.git", :tag => '1.1.1' }
s.source_files = 'cocore/*.{h,m,s,c,mm}'
s.requires_arc = 'cocore/*.m'

Expand Down
4 changes: 2 additions & 2 deletions cokit.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "cokit"
s.version = "1.1.0"
s.version = "1.1.1"
s.summary = "coobjc's Foundationkit."

s.description = <<-DESC
Expand All @@ -21,7 +21,7 @@ Pod::Spec.new do |s|
s.ios.deployment_target = '8.0'
s.requires_arc = true

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

s.dependency 'coobjc', '~> 1.1.0'
Expand Down
4 changes: 2 additions & 2 deletions coobjc.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "coobjc"
s.version = "1.1.0"
s.version = "1.1.1"
s.summary = "A coroutine framework for Objective-C"

s.description = <<-DESC
Expand All @@ -20,7 +20,7 @@ Pod::Spec.new do |s|
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.12'

s.source = { :git => "https://github.com/alibaba/coobjc.git", :tag => '1.1.0' }
s.source = { :git => "https://github.com/alibaba/coobjc.git", :tag => '1.1.1' }
s.source_files = 'coobjc/**/*.{h,m}'
s.requires_arc = ['coobjc/co/*.m', 'coobjc/generator/*.m', 'coobjc/actor/*.m', 'coobjc/promise/*.m']

Expand Down
5 changes: 2 additions & 3 deletions coswift.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "coswift"
s.version = "1.1.0"
s.version = "1.1.1"
s.summary = "A coroutine framework for swift."

s.description = <<-DESC
Expand All @@ -21,11 +21,10 @@ Pod::Spec.new do |s|
s.ios.deployment_target = '8.0'
s.requires_arc = true

s.source = { :git => "https://github.com/alibaba/coobjc.git", :tag => '1.1.0' }
s.source = { :git => "https://github.com/alibaba/coobjc.git", :tag => '1.1.1' }
s.source_files = 'coswift/*.{h,swift}'

s.swift_version = '4.2'

s.dependency 'fishhook', '~> 0.2.0'
s.dependency 'cocore', '~> 1.1.0'
end

0 comments on commit 346fcd5

Please sign in to comment.