fastlane-plugin-applivery 1.1 → 1.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: af46909c58923ac9415b702fe370b5f6f67a39ee
|
|
4
|
+
data.tar.gz: d3ed38a95fce32ed91cc191affc65645570171e1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 10629bd369dc709f8eee6e35a893b12f5b79b3163795a6870cd903e75c1351557b93b5b1d1d2a0c85306f8820f72d560771330bfc52ceeafaa5c2b16d268d3af
|
|
7
|
+
data.tar.gz: e13f818c41dedf14e8d8796f8ae53830a167657580aa348adf5d33f3bb72ee70c4b938e43fe345574868d56c4ed960ec50b5777afe2b9b69184942336ebd43cb
|
data/README.md
CHANGED
|
@@ -21,8 +21,8 @@ If you usually use Fastlane tools to automate the most common development tasks
|
|
|
21
21
|
|
|
22
22
|
This **fastlane** plugin will also help you to have more context about the build, attaching and displaying the most relevant information: Direct link to the repository(GitHub & Bitbucket), commit hash, Branch, Tag, etc:
|
|
23
23
|
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
<!---->
|
|
25
|
+
<!---->
|
|
26
26
|
|
|
27
27
|
## Examples
|
|
28
28
|
|
|
@@ -18,11 +18,19 @@ module Fastlane
|
|
|
18
18
|
end
|
|
19
19
|
|
|
20
20
|
def self.add_integration_number
|
|
21
|
-
|
|
21
|
+
xcodeIntegrationNumber = ENV["XCS_INTEGRATION_NUMBER"] # XCode Server
|
|
22
|
+
jenkinsIntegrationNumber = ENV["BUILD_NUMBER"] # Jenkins
|
|
23
|
+
travisIntegrationNumber = ENV["TRAVIS_BUILD_NUMBER"] # Travis
|
|
22
24
|
command = ""
|
|
23
|
-
|
|
24
|
-
|
|
25
|
+
|
|
26
|
+
if !xcodeIntegrationNumber.nil?
|
|
27
|
+
command += " -F buildNumber=\"#{xcodeIntegrationNumber}\""
|
|
28
|
+
elsif !jenkinsIntegrationNumber.nil?
|
|
29
|
+
command += " -F buildNumber=\"#{jenkinsIntegrationNumber}\""
|
|
30
|
+
elsif !travisIntegrationNumber.nil?
|
|
31
|
+
command += " -F buildNumber=\"#{travisIntegrationNumber}\""
|
|
25
32
|
end
|
|
33
|
+
|
|
26
34
|
return command
|
|
27
35
|
end
|
|
28
36
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-applivery
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alejandro Jimenez
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-06-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pry
|
|
@@ -126,7 +126,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
126
126
|
version: '0'
|
|
127
127
|
requirements: []
|
|
128
128
|
rubyforge_project:
|
|
129
|
-
rubygems_version: 2.6.
|
|
129
|
+
rubygems_version: 2.6.12
|
|
130
130
|
signing_key:
|
|
131
131
|
specification_version: 4
|
|
132
132
|
summary: Upload new build to Applivery
|