fastlane-plugin-testbm 0.1.0 → 0.1.1

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: 7f5a7882e7720971dc3fa745ae6303bd71c4b0d6e32b457d3fd2695a7a123c72
4
- data.tar.gz: 704bb3392f73cb66b3819b42ff3cc61b9806007b2ed83861a64655d17ccd74f9
3
+ metadata.gz: '09f62411bbdadf254beec1dd976890705a9c183bde8cce07d8dfc013047405a6'
4
+ data.tar.gz: b76b80b6b544c6f8e46ba84f0a000d71c8be1ed350d9cc71dfb259d5d1ee893a
5
5
  SHA512:
6
- metadata.gz: 8ee6823cf034ab3557afffe08c4eaeba33a902e5131c2c201eb4f4e1d92c64eba00e176ae9ef0deee1f490846673f81a541d640b41fe988cef61e0edc899858e
7
- data.tar.gz: 061ed4e5b0669748691a11a135a9d303e55db4d66fe054d596d9bfb444b55f8411ee75d373fea03b54a0349f338ada38c1f3cdbdd1e8c32a19005f172995f7f5
6
+ metadata.gz: 249455f9fa36453892bfe91ecf1d66f66dd461fd71f6b87d966154142ddfd07806831ff85e744811710179e8b989d2255591ca2f7364eb74481bf213c42f45f4
7
+ data.tar.gz: c6525a5b3728cb143ee01ec5361535849a3ebe71ca1d91eb7c313da49beb3bd1056b805996cf8c9e63cdab7af7d173f0ba5ac5a4760d6d0eaa911a355e932099
@@ -0,0 +1,46 @@
1
+ require 'fastlane/action'
2
+
3
+ module Fastlane
4
+ module Actions
5
+ class SalutationAction < Action
6
+ def self.run(params)
7
+ UI.message("Hello World!" + params[:person_name])
8
+ end
9
+
10
+ def self.description
11
+ "Returns hello world"
12
+ end
13
+
14
+ def self.authors
15
+ ["Bemobile"]
16
+ end
17
+
18
+ def self.return_value
19
+ # If your method provides a return value, you can describe here what it does
20
+ end
21
+
22
+ def self.details
23
+ # Optional:
24
+ "Just a test plugin"
25
+ end
26
+
27
+ def self.available_options
28
+ [
29
+ # FastlaneCore::ConfigItem.new(key: :your_option,
30
+ # env_name: "TESTBM_YOUR_OPTION",
31
+ # description: "A description of your option",
32
+ # optional: false,
33
+ # type: String)
34
+ ]
35
+ end
36
+
37
+ def self.is_supported?(platform)
38
+ # Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example)
39
+ # See: https://docs.fastlane.tools/advanced/#control-configuration-by-lane-and-by-platform
40
+ #
41
+ # [:ios, :mac, :android].include?(platform)
42
+ true
43
+ end
44
+ end
45
+ end
46
+ end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Testbm
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
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.0
4
+ version: 0.1.1
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-14 00:00:00.000000000 Z
11
+ date: 2021-01-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry
@@ -145,6 +145,7 @@ files:
145
145
  - LICENSE
146
146
  - README.md
147
147
  - lib/fastlane/plugin/testbm.rb
148
+ - lib/fastlane/plugin/testbm/actions/salutation_action.rb
148
149
  - lib/fastlane/plugin/testbm/actions/testbm_action.rb
149
150
  - lib/fastlane/plugin/testbm/helper/testbm_helper.rb
150
151
  - lib/fastlane/plugin/testbm/version.rb