fastlane-plugin-stream_actions 0.3.44 → 0.3.46

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: b39fdd032145ea7316d3d612583d9564076c7af241ff0ad8c39fcd3691a11c1f
4
- data.tar.gz: 17872027046fff57de18d711c7de280b3f57a95c663937b026b2ce1037a534fd
3
+ metadata.gz: 2644d0e71f9839dca6ca6bbc9129a804346d1ace48bfa7b9abe425128f49075e
4
+ data.tar.gz: ef21a6f29a74e0ddf5a2172df4321b86053a44924ff2b6f3a206d9f2acbe8fc3
5
5
  SHA512:
6
- metadata.gz: a6bb99fd501151e0fa4b2d40d080aa5077fa1cdc283a15e6d28b1710761ab16a1ac76ed8be4cc13c48a3b51bd9f398753489097dfc15197b161b5d59e97e2e25
7
- data.tar.gz: a399d4c99402195e5a89073a5ec0b0658f2cd74c1261c29546736f3ff0d6bfd9dfba248332bdd7eae268db0b7d1b44c2165d52612f7b34f8a967da6861ffc262
6
+ metadata.gz: 5782c57af82a3fac306305e2ef107e2d69401337afa69a4bad84e933c06f59743979d043e292c8fb04b5693675c3a582f6afbbce07eb627f97ec46e19059554b
7
+ data.tar.gz: 4fa4ae9f683cbca4eec53eec83978e07a4ab232080f8a3cf49f0e4afd0084f962111ff12ea3cb4781953e70ee9b282599b16edfaeb61d241150cc06c1e8acea4
@@ -11,7 +11,7 @@ module Fastlane
11
11
  if simulators.empty?
12
12
  Dir.chdir('..') do
13
13
  sh("echo 'iOS #{params[:version]} Simulator' | ipsw download xcode --sim") if Dir['*.dmg'].first.nil?
14
- sh("./Scripts/install_ios_runtime.sh #{Dir['*.dmg'].first}")
14
+ sh("sh #{params[:custom_script]} #{Dir['*.dmg'].first}")
15
15
  UI.success("iOS #{params[:version]} Runtime successfuly installed")
16
16
  end
17
17
  else
@@ -32,6 +32,10 @@ module Fastlane
32
32
  FastlaneCore::ConfigItem.new(
33
33
  key: :version,
34
34
  description: 'iOS Version'
35
+ ),
36
+ FastlaneCore::ConfigItem.new(
37
+ key: :custom_script,
38
+ description: 'Path to custom script to install the runtime'
35
39
  )
36
40
  ]
37
41
  end
@@ -20,7 +20,7 @@ module Fastlane
20
20
  markdown_table = "#{table_header}\n| `title` | `#{is_release ? 'previous release' : 'develop'}` | `#{is_release ? 'current release' : 'branch'}` | `diff` | `status` |\n| - | - | - | - | - |\n"
21
21
  params[:branch_sizes].each do |sdk_name, branch_value_kb|
22
22
  branch_value_mb = (branch_value_kb / 1024).round(2)
23
- benchmark_value_kb = benchmark_sizes[sdk_name]
23
+ benchmark_value_kb = benchmark_sizes[sdk_name.to_s]
24
24
  benchmark_value_mb = (benchmark_value_kb / 1024).round(2)
25
25
  max_tolerance = 500 # Max Tolerance is 500KB
26
26
  fine_tolerance = 250 # Fine Tolerance is 250KB
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module StreamActions
3
- VERSION = '0.3.44'
3
+ VERSION = '0.3.46'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-stream_actions
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.44
4
+ version: 0.3.46
5
5
  platform: ruby
6
6
  authors:
7
7
  - GetStream