fastlane 2.93.0.beta.20180418050020 → 2.93.0.beta.20180419050008
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/fastlane_core/lib/fastlane_core/ipa_upload_package_builder.rb +1 -2
- data/spaceship/lib/spaceship/launcher.rb +1 -1
- data/spaceship/lib/spaceship/portal/portal_client.rb +1 -1
- data/spaceship/lib/spaceship/portal/spaceship.rb +2 -2
- data/spaceship/lib/spaceship/portal/ui/select_team.rb +1 -1
- data/spaceship/lib/spaceship/tunes/spaceship.rb +1 -1
- data/spaceship/lib/spaceship/tunes/tunes_client.rb +1 -1
- metadata +15 -15
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e3366567d8fffe4768e8a85b52f3d5e316586b41
|
4
|
+
data.tar.gz: 7adc6e44e901e17aa2ec738695885fff7412b8d9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: be8281a73e40cb975fdcd6e3f360fb8d5778d0a8bdee5ab84fde25a162fa9dc8786cd243e0db1c3a45df8ad1d2593b9c2317ccfb659925beab020129704bfce8
|
7
|
+
data.tar.gz: 7cb9e37eeb16dadd1c783cd38811dc7cb5b6942cb69f8f1b09c61dff4da126af5d2635c6c3ec79c817444059cd2c33a2a605a5e9d954e0199e371643d20cc610
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module Fastlane
|
2
|
-
VERSION = '2.93.0.beta.
|
2
|
+
VERSION = '2.93.0.beta.20180419050008'.freeze
|
3
3
|
DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
|
4
4
|
MINIMUM_XCODE_RELEASE = "7.0".freeze
|
5
5
|
RUBOCOP_REQUIREMENT = '0.49.1'.freeze
|
@@ -36,8 +36,7 @@ module FastlaneCore
|
|
36
36
|
end
|
37
37
|
|
38
38
|
def unique_ipa_path(ipa_path)
|
39
|
-
|
40
|
-
"#{basename}_#{Digest::SHA256.file(ipa_path).hexdigest}.ipa"
|
39
|
+
"#{Digest::SHA256.file(ipa_path).hexdigest}.ipa"
|
41
40
|
end
|
42
41
|
|
43
42
|
private
|
@@ -63,7 +63,7 @@ module Spaceship
|
|
63
63
|
#
|
64
64
|
# @return (String) The ID of the select team. You also get the value if
|
65
65
|
# the user is only in one team.
|
66
|
-
def select_team(team_id:
|
66
|
+
def select_team(team_id: nil, team_name: nil)
|
67
67
|
@client.select_team(team_id: team_id, team_name: team_name)
|
68
68
|
end
|
69
69
|
|
@@ -68,7 +68,7 @@ module Spaceship
|
|
68
68
|
#
|
69
69
|
# @param team_id (String) (optional): The ID of a Developer Portal team
|
70
70
|
# @param team_name (String) (optional): The name of a Developer Portal team
|
71
|
-
def select_team(team_id:
|
71
|
+
def select_team(team_id: nil, team_name: nil)
|
72
72
|
@current_team_id = self.UI.select_team(team_id: team_id, team_name: team_name)
|
73
73
|
end
|
74
74
|
|
@@ -39,7 +39,7 @@ module Spaceship
|
|
39
39
|
#
|
40
40
|
# @return (String) The ID of the select team. You also get the value if
|
41
41
|
# the user is only in one team.
|
42
|
-
def select_team(team_id:
|
42
|
+
def select_team(team_id: nil, team_name: nil)
|
43
43
|
@client.select_team(team_id: team_id, team_name: team_name)
|
44
44
|
end
|
45
45
|
|
@@ -98,7 +98,7 @@ module Spaceship
|
|
98
98
|
Spaceship::Portal.login(user, password)
|
99
99
|
end
|
100
100
|
|
101
|
-
def select_team(team_id:
|
101
|
+
def select_team(team_id: nil, team_name: nil)
|
102
102
|
Spaceship::Portal.select_team(team_id: team_id, team_name: team_name)
|
103
103
|
end
|
104
104
|
|
@@ -31,7 +31,7 @@ module Spaceship
|
|
31
31
|
#
|
32
32
|
# @param team_id (String) (optional): The ID of a iTunesConnect team
|
33
33
|
# @param team_name (String) (optional): The name of a iTunesConnect team
|
34
|
-
def select_team(team_id:
|
34
|
+
def select_team(team_id: nil, team_name: nil)
|
35
35
|
@client.select_team(team_id: team_id, team_name: team_name)
|
36
36
|
end
|
37
37
|
end
|
@@ -59,7 +59,7 @@ module Spaceship
|
|
59
59
|
#
|
60
60
|
# @param team_id (String) (optional): The ID of a iTunesConnect team
|
61
61
|
# @param team_name (String) (optional): The name of a iTunesConnect team
|
62
|
-
def select_team(team_id:
|
62
|
+
def select_team(team_id: nil, team_name: nil)
|
63
63
|
t_id = (team_id || ENV['FASTLANE_ITC_TEAM_ID'] || '').strip
|
64
64
|
t_name = (team_name || ENV['FASTLANE_ITC_TEAM_NAME'] || '').strip
|
65
65
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.93.0.beta.
|
4
|
+
version: 2.93.0.beta.20180419050008
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jorge Revuelta H
|
@@ -27,7 +27,7 @@ authors:
|
|
27
27
|
autorequire:
|
28
28
|
bindir: bin
|
29
29
|
cert_chain: []
|
30
|
-
date: 2018-04-
|
30
|
+
date: 2018-04-19 00:00:00.000000000 Z
|
31
31
|
dependencies:
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: slack-notifier
|
@@ -1636,24 +1636,24 @@ metadata:
|
|
1636
1636
|
post_install_message:
|
1637
1637
|
rdoc_options: []
|
1638
1638
|
require_paths:
|
1639
|
-
-
|
1639
|
+
- pilot/lib
|
1640
|
+
- credentials_manager/lib
|
1641
|
+
- deliver/lib
|
1640
1642
|
- screengrab/lib
|
1641
|
-
- match/lib
|
1642
|
-
- frameit/lib
|
1643
|
-
- cert/lib
|
1644
1643
|
- supply/lib
|
1645
|
-
-
|
1644
|
+
- pem/lib
|
1645
|
+
- scan/lib
|
1646
1646
|
- fastlane/lib
|
1647
|
-
-
|
1648
|
-
- spaceship/lib
|
1647
|
+
- fastlane_core/lib
|
1649
1648
|
- snapshot/lib
|
1650
|
-
-
|
1651
|
-
-
|
1649
|
+
- frameit/lib
|
1650
|
+
- sigh/lib
|
1651
|
+
- produce/lib
|
1652
|
+
- match/lib
|
1653
|
+
- cert/lib
|
1652
1654
|
- precheck/lib
|
1653
|
-
-
|
1654
|
-
-
|
1655
|
-
- pem/lib
|
1656
|
-
- pilot/lib
|
1655
|
+
- gym/lib
|
1656
|
+
- spaceship/lib
|
1657
1657
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1658
1658
|
requirements:
|
1659
1659
|
- - ">="
|