fastlane-plugin-android_versioning 0.1.0 → 0.2.0

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
  SHA1:
3
- metadata.gz: 1b8d53637bdc5f7a9a378084c65ccb7466b446d9
4
- data.tar.gz: 11e44f2880c306080600eefd3af60ceae71cebac
3
+ metadata.gz: c69b72f80b02401d123b42041d28440b98c5a1aa
4
+ data.tar.gz: 9853f510500ab9414db52cdd246b2d59672a9981
5
5
  SHA512:
6
- metadata.gz: 51d17f075e9db8c7dcbcd03f866e3c09070f2745d643f43e9a0313fcdd382ae36a5b66b4571950d91a6a64ec8e641e852930a584f634e0dcff39dbd7481ef06d
7
- data.tar.gz: 63cae38a551191c2fdd2df8b5ad4d66af1c10a0558914f853973cff066deba1f4f5e1c29399fecf20c21f737ba89d6c03dd8ccbea456290d60a40573f75e5f4a
6
+ metadata.gz: cf825f7c796cc77ca7786e64ff37099d9fd408b22006bdcc4162d1de8bfbb4a6fa2b68edee4d21c05c94a4fa29ddf4c048a8c4db3850cf72da3beb9f6b988c5f
7
+ data.tar.gz: d5c07c2537b152c1f57cd490d25c3e54b9e6147f567a3fba7de1853477e00712a85a4515d05d9afa468ae16fe827649a78a590232d719b595617f29f5b039af0
@@ -43,12 +43,6 @@ module Fastlane
43
43
  ]
44
44
  end
45
45
 
46
- def self.output
47
- [
48
- ['PROPERTY_VALUE', 'The property value']
49
- ]
50
- end
51
-
52
46
  def self.authors
53
47
  ["Manabu OHTAKE"]
54
48
  end
@@ -2,17 +2,12 @@ require 'fileutils'
2
2
 
3
3
  module Fastlane
4
4
  module Actions
5
- module SharedValues
6
- VERSION_CODE = :VERSION_CODE
7
- end
8
5
  class GetVersionCodeAction < Action
9
6
  def self.run(params)
10
- code = GetValueFromBuildAction.run(
7
+ GetValueFromBuildAction.run(
11
8
  app_folder_name: params[:app_folder_name],
12
9
  key: "versionCode"
13
10
  )
14
- Actions.lane_context[SharedValues::VERSION_CODE] = code
15
- code
16
11
  end
17
12
 
18
13
  #####################################################
@@ -2,17 +2,12 @@ require 'fileutils'
2
2
 
3
3
  module Fastlane
4
4
  module Actions
5
- module SharedValues
6
- VERSION_NAME = :VERSION_NAME
7
- end
8
5
  class GetVersionNameAction < Action
9
6
  def self.run(params)
10
- name = GetValueFromBuildAction.run(
7
+ GetValueFromBuildAction.run(
11
8
  app_folder_name: params[:app_folder_name],
12
9
  key: "versionName"
13
10
  )
14
- Actions.lane_context[SharedValues::VERSION_NAME] = name
15
- name
16
11
  end
17
12
 
18
13
  #####################################################
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module AndroidVersioning
3
- VERSION = "0.1.0"
3
+ VERSION = "0.2.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-android_versioning
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Manabu OHTAKE