luna-binary-uploader 0.1.28 → 0.1.29

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 45853ba48b0aa5f5cde7067af6b0bd50edd73cdaac1e106cc1debe9138835359
4
- data.tar.gz: e8c4b4d7d5de2a9b1fbff0ad26fb0defc8c8690fa5dee16b1dfbc8330259e0b2
3
+ metadata.gz: a64ef0ed106b66d7fa7f926afc2d41019ab289aa2a87b32f11d2cb256d85026d
4
+ data.tar.gz: be92b70bc9b1376efb6d24d9ce79c97a3d11f3417cab09877449e1e5fc579a07
5
5
  SHA512:
6
- metadata.gz: 27f20c71f0a9a7fcadbb078b5350e597f0650a82592821909c8909ebd84e80e89ae68c370de4c98e6a042f667044f9e6372efdb0fa474494619f3094d4a7e670
7
- data.tar.gz: a19faa54718112f9d9eaa70bc8a1c3870b34f6d96e1e9a373b2ff12a6d38408261e71f32e90174eed56aea01de481c084cf11eecb6c4aa86b2630969ba1b9a23
6
+ metadata.gz: 500ae49323f2dee4df985e9ef024948f5e4836ed5d7e0c443b8422997531db9306d964d8981c1a2248b7de1127c38dc4b677e68922231f3be7c99ba01c1044e2
7
+ data.tar.gz: 8df86a63ee0dbe5edaf0138c31037b91036d821a9aa17da5868e4415a9be6f5190c9427f6be2c6f960937e6306ba16855770d22046bce11f07a123be82370398
data/bin/lbu CHANGED
@@ -116,6 +116,7 @@ class App
116
116
  command :refresh do |c|
117
117
  c.desc '是否需要build, 不需要的话 -n or --no'
118
118
  c.switch [:n,:no]
119
+ c.switch [:q,:quick]
119
120
  c.action do |global_options,options,args|
120
121
  if options[:no]
121
122
  obj = Luna::Binary::Refresh.new()
@@ -132,6 +133,9 @@ class App
132
133
  build = Luna::Binary::Build.new()
133
134
  build.workspace=args[0]
134
135
  build.scheme=args[1]
136
+ if options[:quick]
137
+ build.needPodInstall = false
138
+ end
135
139
  if build.run
136
140
  obj = Luna::Binary::Refresh.new()
137
141
  obj.binary_path = Luna::Binary::Common.instance.binary_path_merged
@@ -145,6 +149,7 @@ class App
145
149
  desc 'build项目并合成带有arm64&x86的framework'
146
150
  arg_name '1.xcworkspace 名称 eg:MyWorkSpace.xcworkspace 2.scheme eg: MyProject'
147
151
  command :build do |c|
152
+ c.switch [:q,:quick]
148
153
  c.action do |global_options,options,args|
149
154
  help_now!('args is required') if args.empty?
150
155
  help_now!('workspace is required') if args[0] == nil
@@ -152,6 +157,9 @@ class App
152
157
  obj = Luna::Binary::Build.new()
153
158
  obj.workspace=args[0]
154
159
  obj.scheme=args[1]
160
+ if options[:quick]
161
+ build.needPodInstall = false
162
+ end
155
163
  obj.run
156
164
  end
157
165
  end
@@ -1,7 +1,7 @@
1
1
  module Luna
2
2
  module Binary
3
3
  module Uploader
4
- VERSION = "0.1.28"
4
+ VERSION = "0.1.29"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: luna-binary-uploader
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.28
4
+ version: 0.1.29
5
5
  platform: ruby
6
6
  authors:
7
7
  - 车德超
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-03-23 00:00:00.000000000 Z
11
+ date: 2022-03-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake