cocoapods-soul-component-plugin 0.0.14 → 0.0.15

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '086cfd8e90765ff78ef8b39dc1d1d0fd0e8df174410e0fac71360946eb62acda'
4
- data.tar.gz: 6657b4e8d4ef34e00843a6ba56e32c71239e844f2f9f07c7d10caacb1aafcd54
3
+ metadata.gz: b1cc567fadc6951270b4ecdc745c8181315c90ec3197b3c02dd4ccf25f074aa0
4
+ data.tar.gz: c37be6a87ad84c013f378bd7f6cd6490ad1264ec26ea2ad41107241bd5f9d9ad
5
5
  SHA512:
6
- metadata.gz: 52780e0b5c959db595b9d3e1d8914cd2383243f1184ff1d6b9528dffed5b353ad0775c57e6c294da5c819d5a50bd4f02cba681ac929dae73b441adafa6fd22e5
7
- data.tar.gz: 5b5ecb2dc862f56aee5ead37711e8901c985ba8d934caf3ef56e7566669ed5e2a6c41e25a0689375cd032d6fb18841f3d96f0742a29c84dfeb1080d515167292
6
+ metadata.gz: cfe876fafd86ea8194e52d21d158d70d6cd311b5741001b04acfbed6fef1516b47ea0145659b7c438d45c63c61ac35745e365218be1638828992950ca66ea024
7
+ data.tar.gz: 7ac6535353d77dc166ec4704ea4ff60dd8ab9e8a5fb5b02cc1bed59bcb52d7fd415ec3e5fcc812d4080cd0368af34ba4d6d321a8aaac507954b07e6098bb70ee
@@ -44,6 +44,7 @@ end
44
44
  module CocoapodsSoulComponentPlugin
45
45
  @@components = []
46
46
  @@use_source = false
47
+ @@input_dependency = ''
47
48
 
48
49
  def self.use_source=(t_use_source)
49
50
  @@use_source = t_use_source
@@ -53,6 +54,14 @@ module CocoapodsSoulComponentPlugin
53
54
  @@use_source
54
55
  end
55
56
 
57
+ def self.input_dependency=(t_input_dependency)
58
+ @@input_dependency = t_input_dependency
59
+ end
60
+
61
+ def self.input_dependency
62
+ @@input_dependency
63
+ end
64
+
56
65
  def self.components
57
66
  @@components
58
67
  end
@@ -142,6 +151,11 @@ module CocoapodsSoulComponentPlugin
142
151
  dependencies_user = obj_user['dependencies']
143
152
  end
144
153
 
154
+ if self.input_dependency.length > 0
155
+ obj = JSON.parse(self.input_dependency)
156
+ Pod::UI.puts "使用外部依赖配置覆盖。参数:#{obj['dependencies'].to_hash}".green
157
+ end
158
+
145
159
  dependencies = obj['dependencies']
146
160
  dependencies.each do |each|
147
161
  component = Soul_Component.new(each[0], each[1]['local'], each[1]['submodule'], each[1]['version'], each[1]['git'],
@@ -229,12 +243,15 @@ module Pod
229
243
  class Install < Command
230
244
  def self.options
231
245
  [
232
- ['--source', 'Use source']
246
+ ['--source', 'Use source'],
247
+ ['--import-dependency', 'Use importDependency']
233
248
  ].concat(super)
234
249
  end
235
250
 
251
+
236
252
  def initialize(argv)
237
253
  CocoapodsSoulComponentPlugin.use_source = argv.flag?('source')
254
+ CocoapodsSoulComponentPlugin.input_dependency = argv.option('import-dependency')
238
255
  super
239
256
  end
240
257
 
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module CocoapodsSoulComponentPlugin
3
- VERSION = '0.0.14'
3
+ VERSION = '0.0.15'
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods-soul-component-plugin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.14
4
+ version: 0.0.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - fang
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-30 00:00:00.000000000 Z
11
+ date: 2022-02-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler