bigkeeper 0.9.20 → 0.9.21

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: b021c3e8e784a4cafb3cd0b2a4b7c69220ac4dad3b1d6966b2b74e907e31df3f
4
- data.tar.gz: d88d668a84f29169f586966be2593b7310166ebf507a812a2692b771a4fb3ccc
3
+ metadata.gz: eaa38916b7b908d6bb45dd0526f83d8a76e837057a30cf1bb54a55ffe9a688b8
4
+ data.tar.gz: 652385a3614e30f92bf5cce46c9e4505663a2f2440abdab81f0aa7faa42cfded
5
5
  SHA512:
6
- metadata.gz: c68bc812c9313d3d96ad9c90ad7de84c5d2f0cbd52b98bed3a8a55d70b147b37a8fc9b25f79b39b75b9dc8a3c2e6f1d4d189082de545b2921ce52776d6df0960
7
- data.tar.gz: e7da7e808c3386330099cfa0d87a64cc687355ce12bd24956f7bb91c0971c91f5a1ed048564860fe80bd353a5d7ad527b9b30f24675af02038711f720784b056
6
+ metadata.gz: 2b516d34005bcb1466b55649fb0df691353f8232cf6b52228d06a03de9717d4a6e9b2d2eb9e19ac6e5c3b29d90a36235bd2f77f7b1c5b272f67d5220ae71f88e
7
+ data.tar.gz: 8bfabe81a276f3e4048ca9bd87b7a593b478a2d0b4b58565813cd65d20c6053d3bbea5da206ba9a1e67194353cc639e7114c7bee2c6be9b854a1ba5c6e961ad0
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bigkeeper (0.9.17)
4
+ bigkeeper (0.9.20)
5
5
  big_resources
6
6
  big_stash (~> 0.1)
7
7
  cocoapods
@@ -64,7 +64,6 @@ module BigKeeper
64
64
  content.gsub!(/version\s/, 'BigKeeper::version ')
65
65
  content.gsub!(/user\s/, 'BigKeeper::user ')
66
66
  content.gsub!(/home\s/, 'BigKeeper::home ')
67
- content.gsub!(/source\s/, 'BigKeeper::source ')
68
67
  content.gsub!(/mod\s/, 'BigKeeper::mod ')
69
68
  content.gsub!(/modules\s/, 'BigKeeper::modules ')
70
69
  content.gsub!(/configs\s/, 'BigKeeper::configs ')
@@ -192,7 +191,9 @@ module BigKeeper
192
191
  end
193
192
 
194
193
  def self.sources
195
- @@config[:source].keys
194
+ if @@config[:source] != nil
195
+ @@config[:source].keys
196
+ end
196
197
  end
197
198
 
198
199
  def self.post_install_command
@@ -274,7 +275,9 @@ module BigKeeper
274
275
  end
275
276
 
276
277
  def self.module_names
277
- @@config[:modules].keys
278
+ if @@config[:modules] != nil
279
+ @@config[:modules].keys
280
+ end
278
281
  end
279
282
 
280
283
  def self.config
@@ -22,7 +22,6 @@ module BigKeeper
22
22
  Logger.highlight(%Q(Start Pod repo push #{module_name}))
23
23
  Dir.chdir(path) do
24
24
  command = ""
25
- p BigkeeperParser.source_spec_name(module_name)
26
25
  if source.length > 0
27
26
  command = "pod repo push #{BigkeeperParser.source_spec_name(module_name)} #{module_name}.podspec --allow-warnings --sources=#{source} --verbose --use-libraries"
28
27
  else
@@ -47,11 +46,13 @@ module BigKeeper
47
46
 
48
47
  def self.pod_update_private_repos(update_private)
49
48
  if update_private
50
- BigkeeperParser.sources.map { |spec|
51
- Logger.highlight('Start pod repo update, waiting...')
52
- cmd = "pod repo update #{spec}"
53
- cmd(cmd)
54
- }
49
+ if BigkeeperParser.sources != nil
50
+ BigkeeperParser.sources.map { |spec|
51
+ Logger.highlight('Start pod repo update, waiting...')
52
+ cmd = "pod repo update #{spec}"
53
+ cmd(cmd)
54
+ }
55
+ end
55
56
  else
56
57
  cmd = "pod repo update"
57
58
  cmd(cmd)
@@ -1,3 +1,3 @@
1
1
  module BigKeeper
2
- VERSION = "0.9.20"
2
+ VERSION = "0.9.21"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bigkeeper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.20
4
+ version: 0.9.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - mmoaay
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-03-18 00:00:00.000000000 Z
11
+ date: 2020-04-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gli