fastlane-plugin-altool 0.1.0 → 0.1.1
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 +4 -4
- data/README.md +2 -0
- data/lib/fastlane/plugin/altool/actions/altool_action.rb +4 -4
- data/lib/fastlane/plugin/altool/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 31cbf0c79cd47d5b96016c901e08cf5a56520adb
|
|
4
|
+
data.tar.gz: 789d435a7c7b630cb5b42f1b729fdbbeaa5822d8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6c8fd822250092096dcb7fb3b83fe6bf06f34a38132f797c293cf3cfd26bbb0f8b05b6cc9acf2503e0b54bde110f7a766f540ce5b747301df09dfc5ad6bbc73d
|
|
7
|
+
data.tar.gz: e861c4376dcf19f70a9b699ac772618b51576cf2c035eea02db175bcaee80d0421e5fb95d507f9d3af040dad0fda965d8486b7f46d760d0cee9ee3d1dc7bc43a
|
data/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://rubygems.org/gems/fastlane-plugin-altool)
|
|
4
4
|
|
|
5
|
+
<a href="https://travis-ci.org/Shashikant86/fastlane-plugin-altool/"><img src="https://img.shields.io/travis/Shashikant86/fastlane-plugin-altool.svg" /></a>
|
|
6
|
+
|
|
5
7
|
## Getting Started
|
|
6
8
|
|
|
7
9
|
This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-altool`, add it to your project by running:
|
|
@@ -10,11 +10,11 @@ module Fastlane
|
|
|
10
10
|
UI.user_error!("altool binary not found. Please check your Xcode installtion")
|
|
11
11
|
end
|
|
12
12
|
|
|
13
|
-
altool_app_type = params[:
|
|
14
|
-
altool_ipa_path = params[:
|
|
13
|
+
altool_app_type = params[:altool_app_type]
|
|
14
|
+
altool_ipa_path = params[:altool_ipa_path]
|
|
15
15
|
altool_usename = ENV["FASTLANE_USER"]
|
|
16
16
|
altool_password = ENV['FASTLANE_PASSWORD']
|
|
17
|
-
altool_output_format = params[:
|
|
17
|
+
altool_output_format = params[:altool_output_format]
|
|
18
18
|
|
|
19
19
|
command = [
|
|
20
20
|
"/Applications/Xcode.app/Contents/Applications/Application\ Loader.app/Contents/Frameworks/ITunesSoftwareService.framework/Support/altool",
|
|
@@ -72,7 +72,7 @@ module Fastlane
|
|
|
72
72
|
UI.user_error!("'#{value}' doesn't seem to be an ipa file") unless value.end_with?(".ipa")
|
|
73
73
|
end),
|
|
74
74
|
|
|
75
|
-
FastlaneCore::ConfigItem.new(key: :
|
|
75
|
+
FastlaneCore::ConfigItem.new(key: :altool_output_format,
|
|
76
76
|
env_name: "ALTOOL_OUTPUT_FORMAT",
|
|
77
77
|
description: "Output formal xml or normal ",
|
|
78
78
|
default_value: "normal",
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-altool
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shashikant Jagtap
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-01-
|
|
11
|
+
date: 2018-01-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pry
|