fastlane-plugin-cordova 0.3.3 → 0.3.4

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
  SHA1:
3
- metadata.gz: 494c0a6392497e64214fa45ce460b13547f54edb
4
- data.tar.gz: 3baad7e3049bf0a9c9c56c2c920eae984b6d9a88
3
+ metadata.gz: e2c2b8667479b6eb8905f7c5e572be0fd3797d34
4
+ data.tar.gz: 668b51deb1fe587697d7ec5b0dff3b87289d0945
5
5
  SHA512:
6
- metadata.gz: f69ab19b4770387c8bfdc603489126356479cce247e9663c1aa89b5cb5b6450c7893750c28c022d28d674d4d2ef3f24b09b35fe8c2fd4b0b2f4f2815caae286e
7
- data.tar.gz: 63b7ae344d271ff7b0ce66e328fa0e19e3593af8d95e32323bd36b47a37c31f993974f41bd894526c0110e52775eccd02ca96c1a0ac625469f688e13990bfb7e
6
+ metadata.gz: 4b900cb2ee2804d54cc308dfc2c859643d1008c06178f3c13a9d5827008518b26e97292f61b476b5c062e30957ba0c52d769659d8bcfc9a126ca4feb64fae3cb
7
+ data.tar.gz: dfb9e69b45576fbd4a82d08a36176d8892dd269138618576275a653b54dc75a2ab8c3437a487450e4b34156e8dca5a7697e84efe8a60956b50c0ab14db45ad3a
data/README.md CHANGED
@@ -68,6 +68,24 @@ To check what's available in the plugin, install it in a project and run at the
68
68
  fastlane actions cordova
69
69
  ```
70
70
 
71
+ Which will produce:
72
+
73
+ | Key | Description | Env Var | Default |
74
+ |-----|-------------|---------|---------|
75
+ | **platform** | Platform to build on. <br>Should be either android or ios | CORDOVA_PLATFORM | |
76
+ | **release** | Build for release if true,<br>or for debug if false | CORDOVA_RELEASE | *true* |
77
+ | **device** | Build for device | CORDOVA_DEVICE | *true* |
78
+ | **type** | This will determine what type of build is generated by Xcode. <br>Valid options are development, enterprise, adhoc, and appstore| CORDOVA_IOS_PACKAGE_TYPE | appstore |
79
+ | **team_id** | The development team (Team ID) to use for code signing | CORDOVA_IOS_TEAM_ID | *28323HT* |
80
+ | **provisioning_profile** | GUID of the provisioning profile to be used for signing | CORDOVA_IOS_PROVISIONING_PROFILE | |
81
+ | **keystore_path** | Path to the Keystore for Android | CORDOVA_ANDROID_KEYSTORE_PATH | |
82
+ | **keystore_password** | Android Keystore password | CORDOVA_ANDROID_KEYSTORE_PASSWORD | |
83
+ | **key_password** | Android Key password (default is keystore password) | CORDOVA_ANDROID_KEY_PASSWORD | |
84
+ | **keystore_alias** | Android Keystore alias | CORDOVA_ANDROID_KEYSTORE_ALIAS | |
85
+ | **build_number** | Build Number for iOS and Android | CORDOVA_BUILD_NUMBER | |
86
+ | **browserify** | Specifies whether to browserify build or not | CORDOVA_BROWSERIFY | *false* |
87
+ | **cordova_prepare** | Specifies whether to run `cordova prepare` before building | CORDOVA_PREPARE | *true* |
88
+
71
89
  ## Run tests for this plugin
72
90
 
73
91
  To run both the tests, and code style validation, run
@@ -134,7 +134,7 @@ module Fastlane
134
134
  FastlaneCore::ConfigItem.new(
135
135
  key: :release,
136
136
  env_name: "CORDOVA_RELEASE",
137
- description: "Build for release if true, or for debug if false.",
137
+ description: "Build for release if true, or for debug if false",
138
138
  is_string: false,
139
139
  default_value: true,
140
140
  verify_block: proc do |value|
@@ -206,7 +206,7 @@ module Fastlane
206
206
  FastlaneCore::ConfigItem.new(
207
207
  key: :build_number,
208
208
  env_name: "CORDOVA_BUILD_NUMBER",
209
- description: "Build Number for iOS and Android Keystore alias",
209
+ description: "Build Number for iOS",
210
210
  optional: true,
211
211
  is_string: false,
212
212
  ),
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Cordova
3
- VERSION = "0.3.3"
3
+ VERSION = "0.3.4"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-cordova
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Almouro