fastlane 2.119.0 → 2.120.0.beta.20190325200020

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: 6e8792603f94b6737b4063f49ac09f760df105dd
4
- data.tar.gz: 4d52ec2a93da69a64c4322a2e23dc2d3966ea792
3
+ metadata.gz: 7c63814059cdd9bf5c92f7e3f54c10e3bb9a2821
4
+ data.tar.gz: 37c31954d509d05dc617e5e1bcf63ac19ea071c4
5
5
  SHA512:
6
- metadata.gz: f9302994959677532c10aee162b6848a6b3c392c39306a970efbe0536ac91c5a59a957d9803b7df722cf65d2f5fcb7268549158be6b4987d3e2b8fa20fe2e2f0
7
- data.tar.gz: c4a63f27286488ac5d349968390768fe84744f05c9ddc7cea2f439ad092ca26973364c17739aad9d12898c7d8756d6f37d42fef48df09fa98f590695945cb4c0
6
+ metadata.gz: 83ece711823abe3b99e8b5b32ab65c2b5fe2a7c6f9920cb854beccf31064a960bf51164658325660e07fbcd6f7725eed6a6b2bb5f5614417241c3dd90e369aea
7
+ data.tar.gz: 4b0b8eb7d71aa5b5d9379ec5ab319729075aebbeae7d9df092f10da252000a65cab3dd0fa2a0bfaf34464d3abeae8e110f6305025fdde3c66cd281b3dd4af534
@@ -12,7 +12,7 @@ module Cert
12
12
  def launch
13
13
  run
14
14
 
15
- installed = FastlaneCore::CertChecker.installed?(ENV["CER_FILE_PATH"])
15
+ installed = FastlaneCore::CertChecker.installed?(ENV["CER_FILE_PATH"], in_keychain: ENV["CER_KEYCHAIN_PATH"])
16
16
  UI.message("Verifying the certificate is properly installed locally...")
17
17
  UI.user_error!("Could not find the newly generated certificate installed", show_github_issues: true) unless installed
18
18
  UI.success("Successfully installed certificate #{ENV['CER_CERTIFICATE_ID']}")
@@ -92,22 +92,26 @@ module Cert
92
92
  path = store_certificate(certificate, Cert.config[:filename])
93
93
  private_key_path = File.expand_path(File.join(Cert.config[:output_path], "#{certificate.id}.p12"))
94
94
 
95
- if FastlaneCore::CertChecker.installed?(path)
95
+ # As keychain is specific to macOS, this will likely fail on non macOS systems.
96
+ # See also: https://github.com/fastlane/fastlane/pull/14462
97
+ keychain = File.expand_path(Cert.config[:keychain_path])
98
+ if FastlaneCore::CertChecker.installed?(path, in_keychain: keychain)
96
99
  # This certificate is installed on the local machine
97
100
  ENV["CER_CERTIFICATE_ID"] = certificate.id
98
101
  ENV["CER_FILE_PATH"] = path
102
+ ENV["CER_KEYCHAIN_PATH"] = keychain
99
103
 
100
104
  UI.success("Found the certificate #{certificate.id} (#{certificate.name}) which is installed on the local machine. Using this one.")
101
105
 
102
106
  return path
103
107
  elsif File.exist?(private_key_path)
104
- keychain = File.expand_path(Cert.config[:keychain_path])
105
108
  password = Cert.config[:keychain_password]
106
109
  FastlaneCore::KeychainImporter.import_file(private_key_path, keychain, keychain_password: password)
107
110
  FastlaneCore::KeychainImporter.import_file(path, keychain, keychain_password: password)
108
111
 
109
112
  ENV["CER_CERTIFICATE_ID"] = certificate.id
110
113
  ENV["CER_FILE_PATH"] = path
114
+ ENV["CER_KEYCHAIN_PATH"] = keychain
111
115
 
112
116
  UI.success("Found the cached certificate #{certificate.id} (#{certificate.name}). Using this one.")
113
117
 
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
- VERSION = '2.119.0'.freeze
2
+ VERSION = '2.120.0.beta.20190325200020'.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
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.119.0
4
+ version: 2.120.0.beta.20190325200020
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stefan Natchev
@@ -966,7 +966,6 @@ files:
966
966
  - fastlane/lib/fastlane.rb
967
967
  - fastlane/lib/fastlane/action.rb
968
968
  - fastlane/lib/fastlane/action_collector.rb
969
- - fastlane/lib/fastlane/actions/.slack.rb.swp
970
969
  - fastlane/lib/fastlane/actions/README.md
971
970
  - fastlane/lib/fastlane/actions/actions_helper.rb
972
971
  - fastlane/lib/fastlane/actions/adb.rb
@@ -1288,7 +1287,6 @@ files:
1288
1287
  - fastlane/swift/Fastlane.swift
1289
1288
  - fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.pbxproj
1290
1289
  - fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
1291
- - fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/project.xcworkspace/xcuserdata/josh.xcuserdatad/UserInterfaceState.xcuserstate
1292
1290
  - fastlane/swift/FastlaneSwiftRunner/FastlaneSwiftRunner.xcodeproj/xcshareddata/xcschemes/FastlaneRunner.xcscheme
1293
1291
  - fastlane/swift/FastlaneSwiftRunner/README.txt
1294
1292
  - fastlane/swift/Gymfile.swift
@@ -1441,7 +1439,6 @@ files:
1441
1439
  - pem/lib/pem/options.rb
1442
1440
  - pilot/README.md
1443
1441
  - pilot/lib/pilot.rb
1444
- - pilot/lib/pilot/.build_manager.rb.swp
1445
1442
  - pilot/lib/pilot/build_manager.rb
1446
1443
  - pilot/lib/pilot/commands_generator.rb
1447
1444
  - pilot/lib/pilot/features.rb
@@ -1572,8 +1569,6 @@ files:
1572
1569
  - spaceship/lib/spaceship/client.rb
1573
1570
  - spaceship/lib/spaceship/commands_generator.rb
1574
1571
  - spaceship/lib/spaceship/connect_api.rb
1575
- - spaceship/lib/spaceship/connect_api/.DS_Store
1576
- - spaceship/lib/spaceship/connect_api/.client.rb.swp
1577
1572
  - spaceship/lib/spaceship/connect_api/base.rb
1578
1573
  - spaceship/lib/spaceship/connect_api/client.rb
1579
1574
  - spaceship/lib/spaceship/du/du_client.rb
@@ -1606,13 +1601,11 @@ files:
1606
1601
  - spaceship/lib/spaceship/portal/provisioning_profile.rb
1607
1602
  - spaceship/lib/spaceship/portal/provisioning_profile_template.rb
1608
1603
  - spaceship/lib/spaceship/portal/spaceship.rb
1609
- - spaceship/lib/spaceship/portal/ui/.select_team.rb.swp
1610
1604
  - spaceship/lib/spaceship/portal/ui/select_team.rb
1611
1605
  - spaceship/lib/spaceship/portal/website_push.rb
1612
1606
  - spaceship/lib/spaceship/provider.rb
1613
1607
  - spaceship/lib/spaceship/spaceauth_runner.rb
1614
1608
  - spaceship/lib/spaceship/test_flight.rb
1615
- - spaceship/lib/spaceship/test_flight/.build.rb.swp
1616
1609
  - spaceship/lib/spaceship/test_flight/app_test_info.rb
1617
1610
  - spaceship/lib/spaceship/test_flight/base.rb
1618
1611
  - spaceship/lib/spaceship/test_flight/beta_review_info.rb
@@ -1695,24 +1688,24 @@ metadata:
1695
1688
  post_install_message:
1696
1689
  rdoc_options: []
1697
1690
  require_paths:
1698
- - credentials_manager/lib
1699
- - pem/lib
1700
- - snapshot/lib
1701
- - frameit/lib
1702
- - match/lib
1703
- - fastlane_core/lib
1704
1691
  - deliver/lib
1692
+ - pilot/lib
1693
+ - snapshot/lib
1705
1694
  - scan/lib
1706
- - supply/lib
1695
+ - precheck/lib
1696
+ - fastlane_core/lib
1697
+ - frameit/lib
1707
1698
  - cert/lib
1708
1699
  - fastlane/lib
1700
+ - sigh/lib
1701
+ - screengrab/lib
1709
1702
  - spaceship/lib
1710
- - pilot/lib
1711
1703
  - gym/lib
1712
- - precheck/lib
1713
- - screengrab/lib
1714
- - sigh/lib
1704
+ - match/lib
1705
+ - credentials_manager/lib
1706
+ - pem/lib
1715
1707
  - produce/lib
1708
+ - supply/lib
1716
1709
  required_ruby_version: !ruby/object:Gem::Requirement
1717
1710
  requirements:
1718
1711
  - - ">="
@@ -1720,12 +1713,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
1720
1713
  version: 2.0.0
1721
1714
  required_rubygems_version: !ruby/object:Gem::Requirement
1722
1715
  requirements:
1723
- - - ">="
1716
+ - - ">"
1724
1717
  - !ruby/object:Gem::Version
1725
- version: '0'
1718
+ version: 1.3.1
1726
1719
  requirements: []
1727
1720
  rubyforge_project:
1728
- rubygems_version: 2.5.2.3
1721
+ rubygems_version: 2.6.8
1729
1722
  signing_key:
1730
1723
  specification_version: 4
1731
1724
  summary: The easiest way to automate beta deployments and releases for your iOS and
Binary file