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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f29629a8af1d178e3b369011168cd6adaa03e322
4
- data.tar.gz: fc016623e6c9cbbf8e9b908a9975a0018f44deed
3
+ metadata.gz: e3366567d8fffe4768e8a85b52f3d5e316586b41
4
+ data.tar.gz: 7adc6e44e901e17aa2ec738695885fff7412b8d9
5
5
  SHA512:
6
- metadata.gz: a2f91c4c05c93ceb6e77eaac058694c71d4aa5fbcc86a63227134d0fcd31c73ce3541ecf4cc13fb4bbf64f62f35233edef74420a2fb3233d8701dbb1d629d68e
7
- data.tar.gz: b61b3e6e49bc332b85a9eb9090265d66b542f63c07d658805795bb5af0584cf0525857039dc8fa8e97589d3310bc9f2ae3a5e63797145e13c86108898b1f8ae8
6
+ metadata.gz: be8281a73e40cb975fdcd6e3f360fb8d5778d0a8bdee5ab84fde25a162fa9dc8786cd243e0db1c3a45df8ad1d2593b9c2317ccfb659925beab020129704bfce8
7
+ data.tar.gz: 7cb9e37eeb16dadd1c783cd38811dc7cb5b6942cb69f8f1b09c61dff4da126af5d2635c6c3ec79c817444059cd2c33a2a605a5e9d954e0199e371643d20cc610
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
- VERSION = '2.93.0.beta.20180418050020'.freeze
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
- basename = File.basename(ipa_path, '.ipa').gsub(' ', '_')
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: team_id = nil, team_name: team_name = nil)
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: team_id = nil, team_name: team_name = nil)
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: team_id = nil, team_name: team_name = nil)
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: team_id = nil, team_name: team_name = nil)
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
 
@@ -47,7 +47,7 @@ module Spaceship
47
47
  end
48
48
  # rubocop:enable Require/MissingRequireStatement
49
49
 
50
- def select_team(team_id: team_id = nil, team_name: team_name = nil)
50
+ def select_team(team_id: nil, team_name: nil)
51
51
  teams = client.teams
52
52
 
53
53
  if teams.count == 0
@@ -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: team_id = nil, team_name: team_name = nil)
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: team_id = nil, team_name: team_name = nil)
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.20180418050020
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-18 00:00:00.000000000 Z
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
- - produce/lib
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
- - sigh/lib
1644
+ - pem/lib
1645
+ - scan/lib
1646
1646
  - fastlane/lib
1647
- - credentials_manager/lib
1648
- - spaceship/lib
1647
+ - fastlane_core/lib
1649
1648
  - snapshot/lib
1650
- - scan/lib
1651
- - gym/lib
1649
+ - frameit/lib
1650
+ - sigh/lib
1651
+ - produce/lib
1652
+ - match/lib
1653
+ - cert/lib
1652
1654
  - precheck/lib
1653
- - deliver/lib
1654
- - fastlane_core/lib
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
  - - ">="