fastlane 2.39.0 → 2.39.1

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: 43d3baec2ef9ea389ced74cf323d2c0b13a87302
4
- data.tar.gz: 52dd0d052ebdf333ab7f6cdda2b01aa9d6f94c44
3
+ metadata.gz: 2411e22c17c3818313db796d1e55ccb0049e34ad
4
+ data.tar.gz: a87e4a541a5e43b010d08b18008a53df2df48f22
5
5
  SHA512:
6
- metadata.gz: 4da53336f6d8eb69924e6a05b87042b593f1944b668a21a55007e563c4a48308bdb5a6f24526558b497f2c8b5939c912c4bce21e767ee16a1e5af5bf402a5e68
7
- data.tar.gz: bbd97583b9104cc6fdbfb0ef9a612f30c86131ab33973ebbf2189ee3b224037dc5b9a09589f9dc3222dee185b47c0cc53a9f4afbfd7f8e8bef2efa66a0c6d3cd
6
+ metadata.gz: 6bd8c05ba9152f254dc2c63dfd7bb6c2031318705a00ae9a4438839c449e97ea21875cef1ae410758b867d21ce62775e8cd216e2ea85f5495540245d02551929
7
+ data.tar.gz: d9634e57836fb72ca524c4a1ea7300565ae9fdc5423a2f45c81db011fa3e79353ff44f437eac10add3c287437ea7b25d10096e40cd5dac77f0afab7c53e08bab
@@ -15,6 +15,8 @@ module Fastlane
15
15
  # More information about how to set up your project and how it works:
16
16
  # https://developer.apple.com/library/ios/qa/qa1827/_index.html
17
17
  # Attention: This is NOT the version number - but the build number
18
+ agv_enabled = system('agvtool what-version')
19
+ raise "Apple Generic Versioning is not enabled." unless Helper.test? || agv_enabled
18
20
 
19
21
  folder = params[:xcodeproj] ? File.join(params[:xcodeproj], '..') : '.'
20
22
 
@@ -47,9 +49,8 @@ module Fastlane
47
49
 
48
50
  return Actions.lane_context[SharedValues::BUILD_NUMBER] = build_number
49
51
  end
50
- rescue => ex
51
- UI.error('Before being able to increment and read the version number from your Xcode project, you first need to setup your project properly. Please follow the guide at https://developer.apple.com/library/content/qa/qa1827/_index.html')
52
- raise ex
52
+ rescue
53
+ UI.user_error!("Apple Generic Versioning is not enabled in this project.\nBefore being able to increment and read the version number from your Xcode project, you first need to setup your project properly. Please follow the guide at https://developer.apple.com/library/content/qa/qa1827/_index.html")
53
54
  end
54
55
 
55
56
  def self.description
@@ -1,4 +1,4 @@
1
1
  module Fastlane
2
- VERSION = '2.39.0'.freeze
2
+ VERSION = '2.39.1'.freeze
3
3
  DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
4
4
  end
@@ -29,7 +29,7 @@ module Spaceship::TestFlight
29
29
 
30
30
  def get_builds_for_train(app_id: nil, platform: "ios", train_version: nil, retry_count: 0)
31
31
  assert_required_params(__method__, binding)
32
- with_retry(retry_count: retry_count) do
32
+ with_retry(retry_count) do
33
33
  response = request(:get, "providers/#{team_id}/apps/#{app_id}/platforms/#{platform}/trains/#{train_version}/builds")
34
34
  handle_response(response)
35
35
  end
@@ -68,8 +68,8 @@ module Supply
68
68
 
69
69
  Google::Apis::ClientOptions.default.application_name = "fastlane - supply"
70
70
  Google::Apis::ClientOptions.default.application_version = Fastlane::VERSION
71
- Google::Apis::RequestOptions.default.timeout_sec = 300
72
- Google::Apis::RequestOptions.default.open_timeout_sec = 300
71
+ Google::Apis::ClientOptions.default.read_timeout_sec = 300
72
+ Google::Apis::ClientOptions.default.open_timeout_sec = 300
73
73
  Google::Apis::RequestOptions.default.retries = 5
74
74
 
75
75
  self.android_publisher = Androidpublisher::AndroidPublisherService.new
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.39.0
4
+ version: 2.39.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
@@ -15,7 +15,7 @@ authors:
15
15
  autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
- date: 2017-06-15 00:00:00.000000000 Z
18
+ date: 2017-06-16 00:00:00.000000000 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: slack-notifier
@@ -808,7 +808,6 @@ files:
808
808
  - deliver/lib/deliver/upload_price_tier.rb
809
809
  - deliver/lib/deliver/upload_screenshots.rb
810
810
  - fastlane/README.md
811
- - fastlane/lib/.DS_Store
812
811
  - fastlane/lib/assets/Actions.md.erb
813
812
  - fastlane/lib/assets/AppfileTemplate
814
813
  - fastlane/lib/assets/AppfileTemplateAndroid
@@ -825,7 +824,6 @@ files:
825
824
  - fastlane/lib/assets/s3_plist_template.erb
826
825
  - fastlane/lib/assets/s3_version_template.erb
827
826
  - fastlane/lib/fastlane.rb
828
- - fastlane/lib/fastlane/.DS_Store
829
827
  - fastlane/lib/fastlane/action.rb
830
828
  - fastlane/lib/fastlane/action_collector.rb
831
829
  - fastlane/lib/fastlane/actions/README.md
@@ -1084,6 +1082,7 @@ files:
1084
1082
  - fastlane_core/README.md
1085
1083
  - fastlane_core/lib/assets/XMLTemplate.xml.erb
1086
1084
  - fastlane_core/lib/fastlane_core.rb
1085
+ - fastlane_core/lib/fastlane_core/.DS_Store
1087
1086
  - fastlane_core/lib/fastlane_core/build_watcher.rb
1088
1087
  - fastlane_core/lib/fastlane_core/cert_checker.rb
1089
1088
  - fastlane_core/lib/fastlane_core/command_executor.rb
@@ -1147,19 +1146,15 @@ files:
1147
1146
  - frameit/lib/frameit/strings_parser.rb
1148
1147
  - frameit/lib/frameit/template_finder.rb
1149
1148
  - gym/README.md
1150
- - gym/lib/.DS_Store
1151
- - gym/lib/assets/.DS_Store
1152
1149
  - gym/lib/assets/GymfileTemplate
1153
1150
  - gym/lib/assets/package_application_patches/0001_codesign_args_patch.diff
1154
1151
  - gym/lib/assets/package_application_patches/0002_no_strict_parameter_patch.diff
1155
1152
  - gym/lib/assets/package_application_patches/PackageApplication_MD5
1156
1153
  - gym/lib/assets/wrap_xcodebuild/xcbuild-safe.sh
1157
1154
  - gym/lib/gym.rb
1158
- - gym/lib/gym/.DS_Store
1159
1155
  - gym/lib/gym/commands_generator.rb
1160
1156
  - gym/lib/gym/detect_values.rb
1161
1157
  - gym/lib/gym/error_handler.rb
1162
- - gym/lib/gym/generators/.DS_Store
1163
1158
  - gym/lib/gym/generators/README.md
1164
1159
  - gym/lib/gym/generators/build_command_generator.rb
1165
1160
  - gym/lib/gym/generators/package_command_generator.rb
@@ -1169,7 +1164,6 @@ files:
1169
1164
  - gym/lib/gym/options.rb
1170
1165
  - gym/lib/gym/runner.rb
1171
1166
  - gym/lib/gym/xcode.rb
1172
- - gym/lib/gym/xcodebuild_fixes/.DS_Store
1173
1167
  - gym/lib/gym/xcodebuild_fixes/README.md
1174
1168
  - gym/lib/gym/xcodebuild_fixes/generic_archive_fix.rb
1175
1169
  - gym/lib/gym/xcodebuild_fixes/package_application_fix.rb
@@ -1278,7 +1272,6 @@ files:
1278
1272
  - snapshot/lib/snapshot/test_command_generator.rb
1279
1273
  - snapshot/lib/snapshot/update.rb
1280
1274
  - spaceship/README.md
1281
- - spaceship/lib/.DS_Store
1282
1275
  - spaceship/lib/assets/languageMapping.json
1283
1276
  - spaceship/lib/assets/languageMappingReadable.json
1284
1277
  - spaceship/lib/spaceship.rb
@@ -1412,7 +1405,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1412
1405
  version: '0'
1413
1406
  requirements: []
1414
1407
  rubyforge_project:
1415
- rubygems_version: 2.6.10
1408
+ rubygems_version: 2.5.2
1416
1409
  signing_key:
1417
1410
  specification_version: 4
1418
1411
  summary: The easiest way to automate beta deployments and releases for your iOS and
Binary file
data/gym/lib/.DS_Store DELETED
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file