bigkeeper 0.9.20 → 0.9.21
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/Gemfile.lock +1 -1
- data/lib/big_keeper/util/bigkeeper_parser.rb +6 -3
- data/lib/big_keeper/util/pod_operator.rb +7 -6
- data/lib/big_keeper/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eaa38916b7b908d6bb45dd0526f83d8a76e837057a30cf1bb54a55ffe9a688b8
|
|
4
|
+
data.tar.gz: 652385a3614e30f92bf5cce46c9e4505663a2f2440abdab81f0aa7faa42cfded
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2b516d34005bcb1466b55649fb0df691353f8232cf6b52228d06a03de9717d4a6e9b2d2eb9e19ac6e5c3b29d90a36235bd2f77f7b1c5b272f67d5220ae71f88e
|
|
7
|
+
data.tar.gz: 8bfabe81a276f3e4048ca9bd87b7a593b478a2d0b4b58565813cd65d20c6053d3bbea5da206ba9a1e67194353cc639e7114c7bee2c6be9b854a1ba5c6e961ad0
|
data/Gemfile.lock
CHANGED
|
@@ -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]
|
|
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]
|
|
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
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
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)
|
data/lib/big_keeper/version.rb
CHANGED
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.
|
|
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-
|
|
11
|
+
date: 2020-04-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gli
|