fastlane-plugin-testappio 1.0.4 → 1.0.5

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: d55de14e5648c1807325ebdea9de2ebf7553a9c61d8a8c7e4f58484409c29dc1
4
- data.tar.gz: 7d560dce67bef063702fb942b3bbfa508a3a55cf49a98e8b3a7d5e65bb803c1f
3
+ metadata.gz: 4a3f8258a28c0ecf61cb6a5c6fb9cb4034bff5661a255107aebe48875538d96c
4
+ data.tar.gz: b410611a5b15eae119663098c1eba864e67295e85cba0d81588f037cf4bd5a94
5
5
  SHA512:
6
- metadata.gz: 57d59c0bd2d320dcec29a97b53a21de3e2cc8290967738dd4591cabfd2317beb03567d8d92823f1bf6b39e10e7e8c4b00a2b23f07ad40408723178ae4dd0f637
7
- data.tar.gz: 310cc7eb9e585a5b6dbb2eadb28084b921a8a217a50723abd7c365be3f1d02abee51e7427191a5412e7fdfae19f32b61fbeede3aa090359d153868e08b256f03
6
+ metadata.gz: 28ad0d6bb57af599d7d2caff4d48f4a833ae7d222f7fe639f715d01e5cdce7951d37d420c7017c152a74105611d3b26e9af69a0e2197129ea72e7cf36f3897cc
7
+ data.tar.gz: 7f8dbefec28b28af770b92bed123ecef137cef756e9be97ddc430955e8fd93afa0c67a392d7ee4aadc1b580ee1db40006596e83779fe91401fb2644542e4d6ea
@@ -43,7 +43,9 @@ module Fastlane
43
43
  "--git_release_notes=#{git_release_notes}",
44
44
  "--git_commit_id=#{git_commit_id}",
45
45
  "--notify=#{notify}",
46
- "--source=Fastlane"]
46
+ "--self_update=#{self_update}",
47
+ "--source=Fastlane",
48
+ "--source_version=#{Fastlane::Testappio::VERSION}"]
47
49
 
48
50
  UI.message("Uploading to TestApp.io")
49
51
  Helper::TestappioHelper.call_ta_cli(command)
@@ -102,7 +102,11 @@ module Fastlane
102
102
  Open3.popen3(final_command) do |stdin, stdout, stderr, wait_thr|
103
103
  while (line = stdout.gets)
104
104
  out << line
105
- UI.message(line.strip!) if FastlaneCore::Globals.verbose? && !line.strip.empty?
105
+ line.strip!
106
+
107
+ # Print output as it's generated
108
+ UI.message(line) unless line.empty?
109
+
106
110
  end
107
111
  while (line = stderr.gets)
108
112
  error << line.strip!
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Testappio
3
- VERSION = "1.0.4"
3
+ VERSION = "1.0.5"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-testappio
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - TestApp.io