lkpackage 0.1.7 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/lkpackage/version.rb +1 -1
- data/lib/lkpackage.rb +4 -3
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 829afbccc40ac66ca2859dbdc63194d3f8ca358ea1b082884f80a6967684cdd6
|
|
4
|
+
data.tar.gz: ab5baf5ddef69a7f14a5469f86f861fe8e17b63a41d648b76ba281513372d4fe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 44f337fa77e93fcc242de4306fc949b3b07b21d2560261f14b892da617a215783201ad2446ae8dcd3502ef7b7b35ed39f20417cde15ae7a0ed9ef37bf1ec1d14
|
|
7
|
+
data.tar.gz: 56c253ef74ac40e620abc1eb5137fb64acde51117a0fe40fcdec377d86a86e49c80966165aa8e0c23e15de06105c61a52368d28c1f0aa30da27cd8fbf073f1a9
|
data/lib/lkpackage/version.rb
CHANGED
data/lib/lkpackage.rb
CHANGED
|
@@ -9,7 +9,7 @@ module Lkpackage
|
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
def
|
|
12
|
+
def Lkpackage.package(podspecFile = "", tagVersion = "", needPackageLib = '0', repoSource = "", releaseNotes = "release notes", lintRepoSources = "git@gitlab.leoao-inc.com:Lefit_iOS_Organization/PrivatePods.git,git@gitlab.leoao-inc.com:Lefit_iOS_ThirdSDK/ThirdSDKSpec.git,git@gitlab.leoao-inc.com:Lefit_LFE_Architecture_Organization/Lefit_Platform_iOS/PlatformSDKSpec.git")
|
|
13
13
|
if podspecFile.empty?
|
|
14
14
|
raise "podspec 文件名为空"
|
|
15
15
|
end
|
|
@@ -19,6 +19,7 @@ module Lkpackage
|
|
|
19
19
|
if repoSource.empty?
|
|
20
20
|
raise "请输入 repo source"
|
|
21
21
|
end
|
|
22
|
+
|
|
22
23
|
puts "podspec 文件:#{podspecFile}"
|
|
23
24
|
puts "tag 版本:#{tagVersion}"
|
|
24
25
|
puts "是否打包静态库:#{needPackageLib}"
|
|
@@ -27,8 +28,8 @@ module Lkpackage
|
|
|
27
28
|
puts "lintRepoSources :#{lintRepoSources}"
|
|
28
29
|
|
|
29
30
|
|
|
30
|
-
packageCommand = "ruby package.rb #{podspecFile} #{tagVersion} #{needPackageLib} #{repoSource} #{releaseNotes} #{lintRepoSources}"
|
|
31
|
-
system packageCommand
|
|
31
|
+
# packageCommand = "ruby package.rb #{podspecFile} #{tagVersion} #{needPackageLib} #{repoSource} #{releaseNotes} #{lintRepoSources}"
|
|
32
|
+
# system packageCommand
|
|
32
33
|
|
|
33
34
|
end
|
|
34
35
|
|