fastlane 2.25.0.beta.20170330225747 → 2.25.0.beta.20170331010039

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: 68d5a90ce4be55d9177cc6c310aa2e7335f1766d
4
- data.tar.gz: 383b4fb4980383dfdbf624cce62954d4c7fb6ae7
3
+ metadata.gz: 086ed911d61f23b58a412612758affbfc547bcee
4
+ data.tar.gz: b2f75926eacfb4654e62524abaee35d3822cde26
5
5
  SHA512:
6
- metadata.gz: 133f9842a07cc8f7e9aee39a88e5c9f731074a5eac8f911a72fe867a24152ac41b75bf138a3a5d2dcfd8a1ef81b13f726eeb6f08bd57054eb395110a3023c62a
7
- data.tar.gz: ea0315647aca7057192a662ccaecaff457e7129fc2f55b066a3c1bc3eed384bbcb00f56f240bb0290866f362c7b80feb3d5c974a2bde4f7dc0692b37270ba554
6
+ metadata.gz: 62db4c0a51f5e35319791b404a6734f8067a5a106c1277a9b5af4c05582044eda38ffd0f8d3ca4112307c014ef5e934ae8edad2063a724eacc6f9bb958e29ff4
7
+ data.tar.gz: 97593b87c8de41d2280f74f405ab6a707cca4eef492ab5d12eea6d510a39ed2e3b8477af1b2c46e8f5cff4bc959abd6454ba566f67eacc600df912d745fc9248
@@ -18,7 +18,7 @@ module Fastlane
18
18
  zipped_bundle = Actions::ZipAction.run(path: app_path,
19
19
  output_path: File.join(tmp_path, "Result.zip"))
20
20
 
21
- Actions::AppetizeAction.run(path: zipped_bundle,
21
+ other_action.appetize(path: zipped_bundle,
22
22
  api_token: params[:api_token])
23
23
 
24
24
  public_key = Actions.lane_context[SharedValues::APPETIZE_PUBLIC_KEY]
@@ -1,4 +1,4 @@
1
1
  module Fastlane
2
- VERSION = '2.25.0.beta.20170330225747'.freeze
2
+ VERSION = '2.25.0.beta.20170331010039'.freeze
3
3
  DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
4
4
  end
@@ -104,6 +104,15 @@ module Gym
104
104
  return File.join(m[1], 'IDEDistribution.standard.log') unless m.nil?
105
105
  end
106
106
 
107
+ def raise_legacy_build_api_error(output)
108
+ UI.error("You enabled the legacy build API in _gym_")
109
+ UI.error("This option has been deprecated for about a year")
110
+ UI.error("and was removed with Xcode 8.3")
111
+ UI.error("Please update your Fastfile to include the export_type too")
112
+ UI.error("more information about how to migrate away: https://github.com/fastlane/fastlane/releases/tag/2.24.0")
113
+ UI.user_error!("Build failed. Please remove the `use_legacy_build_api` option in your Fastfile and try again", error_info: output)
114
+ end
115
+
107
116
  private
108
117
 
109
118
  def read_standard_output(output)
@@ -140,13 +149,6 @@ module Gym
140
149
  title: "Build environment".yellow)
141
150
  end
142
151
 
143
- def raise_legacy_build_api_error(output)
144
- UI.error("You enabled the legacy build API in _gym_")
145
- UI.error("This option has been deprecated for about a year")
146
- UI.error("and broke with one of the most recent Xcode releases")
147
- UI.user_error!("Build failed. Please remove the `use_legacy_build_api` option in your Fastfile and try again", error_info: output)
148
- end
149
-
150
152
  def print_xcode_path_instructions
151
153
  xcode_path = File.expand_path("../..", FastlaneCore::Helper.xcode_path)
152
154
  default_xcode_path = "/Applications/"
@@ -20,6 +20,10 @@ module Gym
20
20
  # If that location changes, search it using xcrun --sdk iphoneos -f PackageApplication
21
21
  package_application_path = "#{Xcode.xcode_path}/Platforms/iPhoneOS.platform/Developer/usr/bin/PackageApplication"
22
22
 
23
+ unless File.exist?(package_application_path)
24
+ ErrorHandler.raise_legacy_build_api_error("")
25
+ end
26
+
23
27
  UI.crash!("Unable to patch the `PackageApplication` script bundled in Xcode. This is not supported.") unless expected_md5_hashes.include?(Digest::MD5.file(package_application_path).hexdigest)
24
28
 
25
29
  # Duplicate PackageApplication script to PackageApplication4Gym
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.20170330225747
4
+ version: 2.25.0.beta.20170331010039
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
@@ -14,7 +14,7 @@ authors:
14
14
  autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
- date: 2017-03-30 00:00:00.000000000 Z
17
+ date: 2017-03-31 00:00:00.000000000 Z
18
18
  dependencies:
19
19
  - !ruby/object:Gem::Dependency
20
20
  name: slack-notifier
@@ -1297,23 +1297,23 @@ metadata:
1297
1297
  post_install_message:
1298
1298
  rdoc_options: []
1299
1299
  require_paths:
1300
- - snapshot/lib
1301
- - credentials_manager/lib
1302
- - fastlane_core/lib
1303
- - cert/lib
1300
+ - pem/lib
1301
+ - spaceship/lib
1304
1302
  - produce/lib
1303
+ - cert/lib
1305
1304
  - sigh/lib
1305
+ - fastlane_core/lib
1306
1306
  - frameit/lib
1307
- - fastlane/lib
1308
1307
  - screengrab/lib
1309
- - gym/lib
1310
- - deliver/lib
1308
+ - supply/lib
1309
+ - scan/lib
1310
+ - snapshot/lib
1311
1311
  - match/lib
1312
+ - deliver/lib
1313
+ - credentials_manager/lib
1314
+ - fastlane/lib
1315
+ - gym/lib
1312
1316
  - pilot/lib
1313
- - pem/lib
1314
- - scan/lib
1315
- - supply/lib
1316
- - spaceship/lib
1317
1317
  required_ruby_version: !ruby/object:Gem::Requirement
1318
1318
  requirements:
1319
1319
  - - ">="