cocoapods-flutter-dt 0.0.8 → 0.0.9
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0d058cdad92967be7cdb6faf68d8bce286faee3ba289296a5a6f11df41738f53
|
|
4
|
+
data.tar.gz: eb3e2b8a366cbe38e1db06e19aae8e1d4a7e1694bb4153077895f96c1c3aa578
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 20879048433c4ef4939104a66c4362a265f41dbd1e2f9a0bb1a098f5338f153b9bea446bb3997b56ad4fd4963b9191e30a960854ac269a1b84b36c7fcbe2e61b
|
|
7
|
+
data.tar.gz: f580c9792e50cd5a57651944c961f18fd22667d02faa45d8a93cfe21e582c7e949d47a984467daa1690f4c1568689cc3e0a71240d0177f7f77c3cbfd0d5dc0ae
|
|
@@ -193,9 +193,9 @@ class Archiver
|
|
|
193
193
|
end
|
|
194
194
|
|
|
195
195
|
def build_framework
|
|
196
|
-
if CommandRunner.run(@flutter_wrapper, 'build','ios-framework',"--output=#{@product_dir}") == false
|
|
196
|
+
if CommandRunner.run(@flutter_wrapper, 'build','ios-framework','--debug','--release',"--output=#{@product_dir}") == false
|
|
197
197
|
# FileUtils.remove_dir product_dir, true
|
|
198
|
-
raise "Error running #{@flutter_wrapper} build ios-framework --output=#{@product_dir} "
|
|
198
|
+
raise "Error running #{@flutter_wrapper} build ios-framework --debug --release --output=#{@product_dir} "
|
|
199
199
|
end
|
|
200
200
|
end
|
|
201
201
|
|
|
@@ -388,7 +388,7 @@ end
|
|
|
388
388
|
end
|
|
389
389
|
|
|
390
390
|
Dir.chdir temp_dir do |dir|
|
|
391
|
-
Pod::Command::Repo::Push.run([@pod_repo, '--verbose', '--allow-warnings', "--sources=#{@sources.join(',')}"])
|
|
391
|
+
Pod::Command::Repo::Push.run([@pod_repo, '--skip-import-validation', '--verbose', '--allow-warnings', "--sources=#{@sources.join(',')}"])
|
|
392
392
|
end
|
|
393
393
|
|
|
394
394
|
end
|
|
@@ -5,13 +5,19 @@ class CommandRunner
|
|
|
5
5
|
def CommandRunner.run(*args)
|
|
6
6
|
command = args.join ' '
|
|
7
7
|
Pod::UserInterface.info "Running #{command}..."
|
|
8
|
-
stdin,
|
|
8
|
+
stdin, stdout_stderr, wait_thr = Open3.popen2e(*args)
|
|
9
|
+
Thread.new do
|
|
10
|
+
stdout_stderr.each {|l| puts l }
|
|
11
|
+
end
|
|
12
|
+
|
|
9
13
|
exit_status = wait_thr.value
|
|
10
14
|
if exit_status.success?
|
|
11
|
-
puts
|
|
15
|
+
puts stdout_stderr.gets
|
|
12
16
|
else
|
|
13
|
-
puts
|
|
17
|
+
puts stdout_stderr.gets
|
|
14
18
|
end
|
|
19
|
+
stdin.close
|
|
20
|
+
stdout_stderr.close
|
|
15
21
|
return exit_status.success?
|
|
16
22
|
end
|
|
17
23
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cocoapods-flutter-dt
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- "\bDreamtracer"
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-12-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: parallel
|