fastlane-plugin-applivery 1.1 → 1.1.1

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: 694da3223547e78c1679e59c3bcb793114f5993a
4
- data.tar.gz: 20ec53551af54d699b74e06c3393c6d7381da2c3
3
+ metadata.gz: af46909c58923ac9415b702fe370b5f6f67a39ee
4
+ data.tar.gz: d3ed38a95fce32ed91cc191affc65645570171e1
5
5
  SHA512:
6
- metadata.gz: 25b0f1fec56f8cb3d17f53f3c5e80ad82202efe4003e84215225dc5eaa0de4c597e21757ad69c6af38a6934fbb89754fdee331bf95d5e374b1218bf236728ce5
7
- data.tar.gz: fbce9fe9bc31195abd9e3c2147958b4755df7f1e7bbf93748ba1c3e33df20b615eaa7923411732f15407e1be00936aea3df111fa2b3d5770982a402cb77a3ebe
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
- ![List of builds](http://www.applivery.com/wp-content/uploads/2016/08/BuildsList.png)
25
- ![Build details](http://www.applivery.com/wp-content/uploads/2016/08/BuilInfo.png)
24
+ <!--![List of builds](http://www.applivery.com/wp-content/uploads/2016/08/BuildsList.png)-->
25
+ <!--![Build details](http://www.applivery.com/wp-content/uploads/2016/08/BuilInfo.png)-->
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
- integrationNumber = ENV["XCS_INTEGRATION_NUMBER"] # XCode Server
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
- if !integrationNumber.nil?
24
- command += " -F buildNumber=\"#{integrationNumber}\""
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
 
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Applivery
3
- VERSION = "1.1"
3
+ VERSION = "1.1.1"
4
4
  end
5
5
  end
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: '1.1'
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: 2016-12-22 00:00:00.000000000 Z
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.6
129
+ rubygems_version: 2.6.12
130
130
  signing_key:
131
131
  specification_version: 4
132
132
  summary: Upload new build to Applivery