File tree 2 files changed +6
-3
lines changed
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ Pod::Spec.new do |s|
6
6
s . source = { :git => 'https://github.com/atomicobject/objection.git' , :tag => "#{ s . version } " }
7
7
s . homepage = 'http://www.objection-framework.org'
8
8
s . source_files = 'Source'
9
- s . license = "https://github.com/atomicobject/objection/blob/master/LICENSE"
9
+ s . license = { :type => "MIT" }
10
10
s . requires_arc = true
11
11
12
12
s . ios . deployment_target = '7.0'
Original file line number Diff line number Diff line change @@ -64,8 +64,11 @@ task :build_all do
64
64
system_or_exit ( %Q[set -o pipefail; #{ xcodebuild_executable } -project #{ PROJECT_NAME } .xcodeproj -alltargets -configuration #{ CONFIGURATION } build | xcpretty -c] , stdout )
65
65
end
66
66
67
- task :publish do
68
- system_or_exit %Q[pod trunk publish Objection.podspec --allow-warnings]
67
+ namespace :pod do
68
+ desc "Publish CocoaPod"
69
+ task :publish do
70
+ system_or_exit %Q[pod trunk push Objection.podspec --allow-warnings]
71
+ end
69
72
end
70
73
71
74
You can’t perform that action at this time.
0 commit comments