fastlane 2.25.0.beta.20170403010018 → 2.25.0

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: b8fce45ce3cad1a255fd0d1078cfc68e421a490f
4
- data.tar.gz: 3a296a6772b9d8f42ee2509ffaf5aa1532ea9fa9
3
+ metadata.gz: d45730302ccf621655ca587f8bd4e6125b0a55d0
4
+ data.tar.gz: faed8d005d8cd0578251d50b885f49d65fb43f99
5
5
  SHA512:
6
- metadata.gz: 80d4b53048b018847dd3e9dcc0243539435134dbd1766692d5556d2320b151ef6754549e8d2510af66f9f3d0e3493c74b3d2709b45d2e1e20e2702b3ddc191f1
7
- data.tar.gz: 3c7b539859a237828264675f430563e9e61837400fd1862b6808e55370ef0bdd20256e958fad4b98f5c03a6187ee1314eb860b3523d785a449f10ff81b7abd52
6
+ metadata.gz: 430ce1737f4b100ac800d7c14c76660892464c357aa47522f1955bb3a3b56c913053515c01571a37ab77d5409926efd00f97337f7feb8aad37d278177ddbc39a
7
+ data.tar.gz: 880bcaa673c36c1b5c99e5426d6175d2eb9238b1be11e8ae407f40361994a7578c77c771dd46ec44bcdeed50f6002e8d6e74d14c0664c97fd024e8cf5dfe2061
@@ -1,3 +1,6 @@
1
+ Style/PercentLiteralDelimiters:
2
+ Enabled: false
3
+
1
4
  # kind_of? is a good way to check a type
2
5
  Style/ClassCheck:
3
6
  EnforcedStyle: kind_of?
@@ -1,4 +1,4 @@
1
1
  module Fastlane
2
- VERSION = '2.25.0.beta.20170403010018'.freeze
2
+ VERSION = '2.25.0'.freeze
3
3
  DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
4
4
  end
@@ -75,7 +75,7 @@ module Match
75
75
  return "AdHoc" if type == :adhoc
76
76
  return "AppStore" if type == :appstore
77
77
  return "InHouse" if type == :enterprise
78
- return "Unkown"
78
+ return "Unknown"
79
79
  end
80
80
  end
81
81
  end
@@ -56,7 +56,7 @@ module Match
56
56
 
57
57
  UI.success "All required keys, certificates and provisioning profiles are installed 🙌".green
58
58
  rescue Spaceship::Client::UnexpectedResponse, Spaceship::Client::InvalidUserCredentialsError, Spaceship::Client::NoUserCredentialsError => ex
59
- UI.error("An error occured while verifying your certificates and profiles with the Apple Developer Portal.")
59
+ UI.error("An error occurred while verifying your certificates and profiles with the Apple Developer Portal.")
60
60
  UI.error("If you already have your certificates stored in git, you can run `fastlane match` in readonly mode")
61
61
  UI.error("to just install the certificates and profiles without accessing the Dev Portal.")
62
62
  UI.error("To do so, just pass `readonly: true` to your match call.")
@@ -1,3 +1,5 @@
1
+ require 'tmpdir'
2
+
1
3
  module Pilot
2
4
  class BuildManager < Manager
3
5
  def upload(options)
@@ -9,10 +11,12 @@ module Pilot
9
11
 
10
12
  UI.success("Ready to upload new build to TestFlight (App: #{app.apple_id})...")
11
13
 
14
+ dir = Dir.mktmpdir
15
+
12
16
  platform = fetch_app_platform
13
17
  package_path = FastlaneCore::IpaUploadPackageBuilder.new.generate(app_id: app.apple_id,
14
18
  ipa_path: config[:ipa],
15
- package_path: "/tmp",
19
+ package_path: dir,
16
20
  platform: platform)
17
21
 
18
22
  transporter = FastlaneCore::ItunesTransporter.new(options[:username], nil, false, options[:itc_provider])
@@ -80,6 +80,11 @@ module Snapshot
80
80
  description: "Don't open the HTML summary after running _snapshot_",
81
81
  default_value: false,
82
82
  is_string: false),
83
+ FastlaneCore::ConfigItem.new(key: :skip_helper_version_check,
84
+ env_name: 'SNAPSHOT_SKIP_SKIP_HELPER_VERSION_CHECK',
85
+ description: "Do not check for most recent SnapshotHelper code",
86
+ default_value: false,
87
+ is_string: false),
83
88
  FastlaneCore::ConfigItem.new(key: :clear_previous_screenshots,
84
89
  env_name: 'SNAPSHOT_CLEAR_PREVIOUS_SCREENSHOTS',
85
90
  description: "Enabling this option will automatically clear previously generated screenshots before running snapshot",
@@ -292,6 +292,7 @@ module Snapshot
292
292
 
293
293
  # rubocop:disable Style/Next
294
294
  def verify_helper_is_current
295
+ return if Snapshot.config[:skip_helper_version_check]
295
296
  current_version = version_of_bundled_helper
296
297
  UI.verbose "Checking that helper files contain #{current_version}"
297
298
 
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.25.0.beta.20170403010018
4
+ version: 2.25.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
@@ -656,16 +656,16 @@ dependencies:
656
656
  name: rubocop
657
657
  requirement: !ruby/object:Gem::Requirement
658
658
  requirements:
659
- - - "~>"
659
+ - - '='
660
660
  - !ruby/object:Gem::Version
661
- version: '0.48'
661
+ version: 0.48.1
662
662
  type: :development
663
663
  prerelease: false
664
664
  version_requirements: !ruby/object:Gem::Requirement
665
665
  requirements:
666
- - - "~>"
666
+ - - '='
667
667
  - !ruby/object:Gem::Version
668
- version: '0.48'
668
+ version: 0.48.1
669
669
  - !ruby/object:Gem::Dependency
670
670
  name: rb-readline
671
671
  requirement: !ruby/object:Gem::Requirement
@@ -1297,23 +1297,23 @@ metadata:
1297
1297
  post_install_message:
1298
1298
  rdoc_options: []
1299
1299
  require_paths:
1300
- - fastlane/lib
1301
- - snapshot/lib
1302
- - sigh/lib
1303
- - spaceship/lib
1300
+ - cert/lib
1304
1301
  - credentials_manager/lib
1305
- - produce/lib
1306
- - screengrab/lib
1307
- - pilot/lib
1308
1302
  - deliver/lib
1309
- - pem/lib
1310
- - match/lib
1311
- - cert/lib
1312
- - supply/lib
1313
- - scan/lib
1303
+ - fastlane/lib
1314
1304
  - fastlane_core/lib
1315
1305
  - frameit/lib
1316
1306
  - gym/lib
1307
+ - match/lib
1308
+ - pem/lib
1309
+ - pilot/lib
1310
+ - produce/lib
1311
+ - scan/lib
1312
+ - screengrab/lib
1313
+ - sigh/lib
1314
+ - snapshot/lib
1315
+ - spaceship/lib
1316
+ - supply/lib
1317
1317
  required_ruby_version: !ruby/object:Gem::Requirement
1318
1318
  requirements:
1319
1319
  - - ">="
@@ -1321,14 +1321,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
1321
1321
  version: 2.0.0
1322
1322
  required_rubygems_version: !ruby/object:Gem::Requirement
1323
1323
  requirements:
1324
- - - ">"
1324
+ - - ">="
1325
1325
  - !ruby/object:Gem::Version
1326
- version: 1.3.1
1326
+ version: '0'
1327
1327
  requirements: []
1328
1328
  rubyforge_project:
1329
- rubygems_version: 2.4.5.2
1329
+ rubygems_version: 2.5.2
1330
1330
  signing_key:
1331
1331
  specification_version: 4
1332
1332
  summary: The easiest way to automate beta deployments and releases for your iOS and
1333
1333
  Android apps
1334
1334
  test_files: []
1335
+ has_rdoc: