fastlane-plugin-android_testlab_script_swit 0.1.919 → 0.1.921

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: 3abf4f751114b6fa21b861e2d83a011b51de444a3c61f86dd0b764a8d4236d2a
4
- data.tar.gz: 4f5735bce308da7f556689e6fe52fed729f56502edd48f089fb5a151c6af4afa
3
+ metadata.gz: d798b8c51c1ba9fbd7bf2ecf2cad221ac3a7bab421163d0514e9e9154d55df16
4
+ data.tar.gz: 95a7893bdef7bfc823935e7a612f5aad809742a2e4bbee8ff86391ece80e95bf
5
5
  SHA512:
6
- metadata.gz: cc540da45ace53d8e58eef8856458f34eb0dd69542c06bbbdec125c1e92952523367a22ef6c337e5e71464d92bc9a11c7736b40e0792d91ce6cb0a773e81e82b
7
- data.tar.gz: 59deca4098f4cd101adcfd771be2502860a39b853fb15ab7ed0ca188853b391f731a95fa82daa16b9ff5539dff3ff9891b2f662dac9ab7f5e83fd2915ed55637
6
+ metadata.gz: f988735c3a2da60a8d611d2fabbab512fc0d6581cc6e2a4a8cf084196a75414f63c5dcfe8dce58158a2fc0d1763dd2d5ef2bb199e900ef9d77cb179fc55e7439
7
+ data.tar.gz: b7230559523a953c1d4a1dd82a920d3224da9a3971a983ef68582a395a59ff2488863e9250bd580d8dec184a6e68fcbeef91e4203590c2898f7fed6e1f7ef733
@@ -8,22 +8,22 @@ module Fastlane
8
8
  module Actions
9
9
  class AndroidTestlabScriptSwitAction < Action
10
10
 
11
+ def self.measure_time
12
+ start_time = Time.now
13
+ yield
14
+ end_time = Time.now
15
+ duration_sec_total = (end_time - start_time).round(1)
16
+ duration_min = (duration_sec_total / 60).round(1)
17
+ duration_sec = duration_sec_total % 60
18
+ return "#{duration_min}분 소요시간 자동화"
19
+ end
20
+
11
21
  # actions run
12
22
  def self.run(params)
13
23
  UI.message("********************************")
14
24
  UI.message("Start Action")
15
25
  UI.message("********************************")
16
26
 
17
- def measure_time
18
- start_time = Time.now
19
- yield
20
- end_time = Time.now
21
- duration_sec_total = (end_time - start_time).round(1)
22
- duration_min = (duration_sec_total / 60).round(1)
23
- duration_sec = duration_sec_total % 60
24
- return "#{duration_min}분 소요시간 자동화"
25
- end
26
-
27
27
  duration = measure_time do
28
28
 
29
29
  # Result Bucket & Dir
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module AndroidTestlabScriptSwit
3
- VERSION = "0.1.919"
3
+ VERSION = "0.1.921"
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.919
4
+ version: 0.1.921
5
5
  platform: ruby
6
6
  authors:
7
7
  - 나비이쁜이