fastlane-plugin-testbm 0.1.19 → 0.1.24

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: 58eea5a1ed1b8eefef9c01aaa615eb480ab1d3fe4bedc61688a871fbc365c4e1
4
- data.tar.gz: aed1c1802cc15deb24ad6d948aacacbae60123577abb7ead4012fa848d4c5cfa
3
+ metadata.gz: d8481becc0b4a76158af89fb26e9425804e8700540382bcd05be2ba2b1fcea93
4
+ data.tar.gz: e318fbd44d0b8dab25377e7a27258b017c3ba31bf63545589dbf754b30f6303d
5
5
  SHA512:
6
- metadata.gz: 7de678c1ade51381d16a41c54ef6bbe44fd176d35399d1c247fa3b33a3a42244035ccd742f95db0e2f9eef4920582d52078db3cff8ae4eb5359198ac7534b2f8
7
- data.tar.gz: e4e071efc09897ed10c8217538b163b133dd7dcf50559e9dc7a49269c8c2947c3bb8d3e8442e3dcc3d743d9208d4ce636083d6a7cf4c5104c00e7b3701a26c24
6
+ metadata.gz: f6c21ba34521637cfcd6b89c8d238797d010e257cb12d68ba535f866f008a7409c5d575d35d9ce7ef57bb5fc694f8e9617fe289cbfb47d5b903f6071adf32169
7
+ data.tar.gz: af366a74f89293cc62c11141f39b9f3c55a77cbeff44d0bbb127f3fa9272c469259f693e80214076e21d34beed984ff8b79ce6e360854ca9b57748b862ffba99
@@ -2,7 +2,7 @@ require 'fastlane/action'
2
2
 
3
3
  module Fastlane
4
4
  module Actions
5
- class BmdistributionAction #< Action
5
+ class BmdistributionAction < Action
6
6
  def self.run(params)
7
7
  app_information = params[:app_information]
8
8
  platform_type = params[:platform_type]
@@ -30,9 +30,9 @@ module Fastlane
30
30
  [
31
31
  FastlaneCore::ConfigItem.new(key: :app_information,
32
32
  env_name: "APP_INFORMATION",
33
- description: "The app information including name, version.",
33
+ description: "The app information including name, version",
34
34
  optional: false,
35
- type: Array),
35
+ type: Hash),
36
36
  FastlaneCore::ConfigItem.new(key: :platform_type,
37
37
  env_name: "PLATFORM_TYPE",
38
38
  description: "Indicates platform wheter android or ios",
@@ -2,7 +2,7 @@ require 'fastlane/action'
2
2
 
3
3
  module Fastlane
4
4
  module Actions
5
- class BminfoAction #< Action
5
+ class BminfoAction < Action
6
6
  def self.run(params)
7
7
  environment = params[:environment]
8
8
  self.project_func_get_information(environment: environment)
@@ -2,7 +2,7 @@ require 'fastlane/action'
2
2
 
3
3
  module Fastlane
4
4
  module Actions
5
- class BmversionAction #< Action
5
+ class BmversionAction < Action
6
6
  def self.run(params)
7
7
  platform_type = params[:platform_type]
8
8
  self.version_func_get_version(platform_type)
@@ -31,6 +31,7 @@ module Fastlane
31
31
  description: "The platform, can be Android or iOS",
32
32
  optional: false,
33
33
  type: String)
34
+ ]
34
35
  end
35
36
 
36
37
  def self.is_supported?(platform)
@@ -32,7 +32,7 @@ module Fastlane
32
32
  description: "The person's name",
33
33
  optional: false,
34
34
  type: String)
35
- ]
35
+ ]# If your method provides a return value, you can describe here what it does
36
36
  end
37
37
 
38
38
  def self.is_supported?(platform)
@@ -32,8 +32,8 @@ module Fastlane
32
32
  version_number = Actions.lane_context[Actions::SharedValues::VERSION_NUMBER]
33
33
  build_number = Actions.lane_context[Actions::SharedValues::BUILD_NUMBER]
34
34
  elsif
35
- version_number = File.read("./../version.name").to_s
36
- build_number = File.read("./../version.number").to_s
35
+ version_number = File.read("version.name").to_s
36
+ build_number = File.read("version.number").to_s
37
37
  end
38
38
 
39
39
  {build_number: build_number, version_number: version_number}
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Testbm
3
- VERSION = "0.1.19"
3
+ VERSION = "0.1.24"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-testbm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.19
4
+ version: 0.1.24
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bemobile
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-01-22 00:00:00.000000000 Z
11
+ date: 2021-01-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry