fastlane-plugin-android_testlab_script_swit 0.1.70 → 0.1.72

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: de8233bdc8f198d8b8223f3fd4ec74eb841905ab172f18d0a2420da477fdb83d
4
- data.tar.gz: 7ad6f0835dd7996187f52978c5431fd3e475c5ccca339ca11d122b21df8a9ba8
3
+ metadata.gz: 3ea7dcc6705b46362d15100be25c6f615cc6b827912a5f717cc92ad495db13fd
4
+ data.tar.gz: cb503efa308837fa29c54b821ffaca8e17a0b6d658a779cfe8b0e9e24c08f47f
5
5
  SHA512:
6
- metadata.gz: 55eee9a591b067d06841c0f252ffcd76d59eb218bc200e4c7d223f58e3d9a38655aa2a239ac0769311a46a75a61dc79917265df7c457abe4ca1c759060b12288
7
- data.tar.gz: 95376f74c419056f37a3bf5e8fb25d8395b29a08991ea98d1a6a48a9d149b81f897109e29718a99a7db4171c2c3c7b1456d98e4664ef9a9c53854ee203367f0a
6
+ metadata.gz: 769418264efcca9467ffb364e317ebb9016073e012076502884f6c121ccfcd67b0475a4d8eed44bb1c39f7efb99484550880bc6a5022d22acd680ee347012111
7
+ data.tar.gz: 5b7cef40953499f39cec42fdea1762ef16539fa0fbcddd4535c63d9aaa075b9ffa6335eacb9de910fb69beda93a3d43b869a09666a215c6fe15c72ae3ad77e8e
@@ -86,23 +86,26 @@ module Fastlane
86
86
  # end
87
87
  # end
88
88
 
89
- payload_string = +{
89
+ new_payload = [
90
90
  {"type" => "rt_section", "indent" => 1, "elements" => [{"type" => "rt_text", "content" => "Device#{index + 1}"}]},
91
91
  {"type" => "rt_section", "indent" => 2, "elements" => [{"type" => "rt_text", "content" => "model : #{device[:model]}"}]},
92
92
  {"type" => "rt_section", "indent" => 2, "elements" => [{"type" => "rt_text", "content" => "model : #{device[:version]}"}]},
93
93
  {"type" => "rt_section", "indent" => 2, "elements" => [{"type" => "rt_text", "content" => "model : #{device[:locale]}"}]},
94
94
  {"type" => "rt_section", "indent" => 2, "elements" => [{"type" => "rt_text", "content" => "model : #{device[:orientation]}"}]},
95
95
  {"type" => "rt_section", "indent" => 2, "elements" => [{"type" => "rt_text", "content" => "model : #{outcome}"}]}
96
- }
96
+ ]
97
97
 
98
- # 원래 받아오는
98
+ # 원래 하던 행위
99
99
  # payload_string = params[:swit_webhook_payload]
100
100
 
101
+ # 앞뒤 지우기
102
+ new_payload_string = new_payload.to_json
103
+
101
104
  # Remove the closing square bracket from the original payload and add a comma
102
- swit_webhook_payload = params[:swit_webhook_payload][0..-2] + ','
105
+ swit_webhook_payload = params[:swit_webhook_payload][0..-3] + ','
103
106
 
104
107
  # Add the additional payload and close the square bracket
105
- swit_webhook_payload += payload_string[1..-1]
108
+ swit_webhook_payload += new_payload_string + ']}]}'
106
109
 
107
110
  # Swit Message
108
111
  HTTParty.post(params[:swit_webhook_url], body: { body_text: params[:swit_webhook_payload] }.to_json, headers: { 'Content-Type' => 'application/json' })
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module AndroidTestlabScriptSwit
3
- VERSION = "0.1.70"
3
+ VERSION = "0.1.72"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-android_testlab_script_swit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.70
4
+ version: 0.1.72
5
5
  platform: ruby
6
6
  authors:
7
7
  - 나비이쁜이