fastlane-plugin-altool 0.1.3 → 0.1.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: a297e9856dca64e2f177a848064cf860e55dae60
4
- data.tar.gz: 145daf963652dc7f6b3969470e367a29f63dd18a
3
+ metadata.gz: e14ec63dda99ff231d55c837dab389c1ba1e7836
4
+ data.tar.gz: d4318584ff1b03f502c51ec9f8233ddbc1aa4735
5
5
  SHA512:
6
- metadata.gz: 02b11900d5d95f283ab468371e49dbfd4f080eeeca186e5dfd20b95b90bd492b57c57d15ce6b782dc1f50a85d4ce57942372c7b9173ded08b8a2705b3b6235df
7
- data.tar.gz: 6ec5bca7bd46fc2650888aca35763e9d203c5576d6d375d3024d501be234797fd82e0b0e5fd6118035c5bc548c7da0cc911056ac8f1620b7effb9f4af7622fae
6
+ metadata.gz: 86fc446a237e42e8700c9e385fad10d200f3936501c8596549463e29c2983c9d7d2d5103a57ea1146cb8d6f6115ab2446a478ebbaea8515ae903b0cf1b7d600f
7
+ data.tar.gz: cf456bd7c23fa33b29e953dc196395a0a04a82089e62896278bbcacd7093db85c3bec0cc5adbce5612756ddd65e6fa97067e0c65f609de0a0adef3d256b0785f
data/README.md CHANGED
@@ -20,7 +20,7 @@ Currently Fastlane deliver uses iTMSTransporter to upload an ipa files to iTunes
20
20
 
21
21
  This plugin can be used for uploading generated ipa file using Gym to iTunes Connect.
22
22
 
23
- This plugin assume that, you already have that Fastlane setup and your details are configured as ENV variables in FASTLANE_USER and FASTLANE_PASSWORD
23
+ This plugin assume that, you already have that Fastlane setup and your details are configured as ENV variables in FASTLANE_USER and FASTLANE_PASSWORD by default.
24
24
 
25
25
 
26
26
  ## Example
@@ -30,8 +30,8 @@ You can configure this plaugin using
30
30
  ```
31
31
  lane :upload_ipa_altool do
32
32
  altool(
33
- altool_usename: ENV["FASTLANE_USER"],
34
- altool_password: ENV["FASTLANE_PASSWORD"]
33
+ altool_username: ENV["FASTLANE_USER"],
34
+ altool_password: ENV["FASTLANE_PASSWORD"],
35
35
  altool_app_type: "ios",
36
36
  altool_ipa_path: "./build/Your-ipa.ipa",
37
37
  altool_output_format: "xml",
@@ -12,7 +12,7 @@ module Fastlane
12
12
 
13
13
  altool_app_type = params[:altool_app_type]
14
14
  altool_ipa_path = params[:altool_ipa_path]
15
- altool_usename = params[:altool_username]
15
+ altool_username = params[:altool_username]
16
16
  altool_password = params[:altool_password]
17
17
  altool_output_format = params[:altool_output_format]
18
18
 
@@ -24,7 +24,7 @@ module Fastlane
24
24
  '-f',
25
25
  altool_ipa_path,
26
26
  '-u',
27
- altool_usename,
27
+ altool_username,
28
28
  '-p',
29
29
  altool_password,
30
30
  '--output-format',
@@ -106,8 +106,8 @@ module Fastlane
106
106
 
107
107
  def self.example_code
108
108
  [' altool(
109
- altool_usename: ENV["FASTLANE_USER"],
110
- altool_password: ENV["FASTLANE_PASSWORD"]
109
+ altool_username: ENV["FASTLANE_USER"],
110
+ altool_password: ENV["FASTLANE_PASSWORD"],
111
111
  altool_app_type: "ios",
112
112
  altool_ipa_path: "./build/Your-ipa.ipa",
113
113
  altool_output_format: "xml",
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Altool
3
- VERSION = "0.1.3"
3
+ VERSION = "0.1.4"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-altool
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shashikant Jagtap