fastlane 2.69.0 → 2.69.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: c84dc9589f4d0140988040aa2d7cc6eae54d513d
4
- data.tar.gz: cfaa220b540897f4162dc3efdd323cbb59128156
3
+ metadata.gz: caa6ba6abd091494d252122833a11014933f41bb
4
+ data.tar.gz: 7a32a5e01beaa117767e1201b1f22fbeda0d599b
5
5
  SHA512:
6
- metadata.gz: 760bf04a97de90d938554bcfa77249e2a91b232aabab01387b44d391ae96f64d9cf9a4a669dafe18aa960af77c6cf9d9e796e481882ca2b114a03d7dbf368bc8
7
- data.tar.gz: bd7e6d82a6d898db2bbeb67da7be6ce4db4b6d2dcfde8ab0d7e733cf0e916fa9ef18937565a43a55e74ae44b1487f98df94a76170c86255a1ee4aeed6c937cf0
6
+ metadata.gz: 2486591552f091203188ccc295b31c449c657961c94c3fb96c32d63d604ca3d23a42c3bb26b7402002032b6cac1865f23eac0ba796d6057a7db45971fb097fd8
7
+ data.tar.gz: 12992fee1408c78dc19b26351741f757764da984e618d003198ff77a8fb637329f242084de4a089b82f2d1bfa1e0f1bde5bffa1d3281677bab782e9bb2482d1f
Binary file
@@ -30,7 +30,7 @@ platform :ios do
30
30
  desc "Submit a new Beta Build to Apple TestFlight"
31
31
  desc "This will also make sure the profile is up to date"
32
32
  lane :beta do
33
- # match(type: "appstore") # more information: https://codesigning.guide
33
+ # sync_code_signing(type: "appstore") # more information: https://codesigning.guide
34
34
  build_app[[SCHEME]] # more options available
35
35
  upload_to_testflight
36
36
 
@@ -42,7 +42,7 @@ platform :ios do
42
42
  lane :release do
43
43
  # sync_code_signing(type: "appstore")
44
44
  capture_screenshots
45
- build_app[[SCHEME]] # Build your app - more options available
45
+ build_app[[SCHEME]] # more options available
46
46
  upload_to_app_store(force: true)
47
47
  # frame_screenshots
48
48
  end
@@ -24,27 +24,26 @@ class Fastfile: LaneFile {
24
24
 
25
25
  func testLane() {
26
26
  desc("Runs all the tests")
27
- scan()
27
+ runTests()
28
28
  }
29
29
 
30
30
  func betaLane() {
31
31
  desc("Submit a new Beta Build to Apple TestFlight. This will also make sure the profile is up to date")
32
32
 
33
- match(gitUrl: "gitUrl", appIdentifier: [appIdentifier], username: appleID)
34
- // Build your app - more options available
35
- gym([[SCHEME]])
36
- pilot(username: appleID)
33
+ // syncCodeSigning(gitUrl: "gitUrl", appIdentifier: [appIdentifier], username: appleID)
34
+ buildApp([[SCHEME]]) // more options available
35
+ uploadToTestflight(username: appleID)
37
36
  // You can also use other beta testing services here (run `fastlane actions`)
38
37
  }
39
38
 
40
39
  func releaseLane() {
41
40
  desc("Deploy a new version to the App Store")
42
41
 
43
- match(gitUrl: "gitUrl", type: "appstore", appIdentifier: [appIdentifier], username: appleID)
44
- snapshot()
45
- gym([[SCHEME]]) // Build your app - more options available
46
- deliver(username: appleID, app: appIdentifier, force: true)
47
- // frameit()
42
+ // syncCodeSigning(gitUrl: "gitUrl", type: "appstore", appIdentifier: [appIdentifier], username: appleID)
43
+ captureScreenshots()
44
+ buildApp([[SCHEME]]) // more options available
45
+ uploadToAppStore(username: appleID, app: appIdentifier, force: true)
46
+ // frameScreenshots()
48
47
  }
49
48
 
50
49
  // You can define as many lanes as you want
Binary file
@@ -84,7 +84,7 @@ module Fastlane
84
84
 
85
85
  def self.example_code
86
86
  [
87
- 'sync_code_signing(type: "appstore", app_identifier: "tools.fastlane.app")',
87
+ 'sync_code_signing(type: "appstore", app_identifier: ["tools.fastlane.app"])',
88
88
  'sync_code_signing(type: "development", readonly: true)',
89
89
  'sync_code_signing(app_identifier: ["tools.fastlane.app", "tools.fastlane.sleepy"])',
90
90
  'match # alias for "sync_code_signing"'
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
- VERSION = '2.69.0'.freeze
2
+ VERSION = '2.69.1'.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
Binary file
@@ -14,5 +14,5 @@ require "plist"
14
14
  [Array, Hash].each do |c|
15
15
  c.send :alias_method, :to_binary_plist, :to_plist
16
16
  c.send :remove_method, :to_plist
17
- c.include Plist::Emit
17
+ c.module_eval "include Plist::Emit"
18
18
  end
@@ -304,7 +304,7 @@ module FastlaneCore
304
304
  def initialize(user = nil, password = nil, use_shell_script = false, provider_short_name = nil)
305
305
  # Xcode 6.x doesn't have the same iTMSTransporter Java setup as later Xcode versions, so
306
306
  # we can't default to using the better direct Java invocation strategy for those versions.
307
- use_shell_script ||= Helper.is_mac? && Helper.xcode_version.start_with?('6.')
307
+ use_shell_script ||= Helper.xcode_version.start_with?('6.')
308
308
  use_shell_script ||= Feature.enabled?('FASTLANE_ITUNES_TRANSPORTER_USE_SHELL_SCRIPT')
309
309
 
310
310
  @user = user
@@ -22,7 +22,7 @@ module Gym
22
22
  # (e.g. coming from `provisioningProfiles` of the `export_options` or from previous match calls)
23
23
  # with the secondary hash we just created (or was provided as parameter).
24
24
  # Both might include information about what profile to use
25
- # This is important as it mght not be clear for the user that they have to call match for each app target
25
+ # This is important as it might not be clear for the user that they have to call match for each app target
26
26
  # before adding this code, we'd only either use whatever we get from match, or what's defined in the Xcode project
27
27
  # With the code below, we'll make sure to take the best of it:
28
28
  #
@@ -22,7 +22,7 @@ module Gym
22
22
 
23
23
  detect_scheme
24
24
  detect_platform # we can only do that *after* we have the scheme
25
- detect_selected_provisioning_profiles # we can only do that *aftet* we have the platform
25
+ detect_selected_provisioning_profiles # we can only do that *after* we have the platform
26
26
  detect_configuration
27
27
  detect_toolchain
28
28
 
@@ -5,6 +5,7 @@
5
5
  # `incompatible encoding regexp match (UTF-8 regexp with ASCII-8BIT string) (Encoding::CompatibilityError)`
6
6
 
7
7
  require 'tempfile'
8
+ require 'fastlane_core/core_ext/cfpropertylist'
8
9
 
9
10
  module Gym
10
11
  # Responsible for building the fully working xcodebuild command
@@ -159,8 +160,6 @@ module Gym
159
160
  end
160
161
 
161
162
  def config_content
162
- require 'plist'
163
-
164
163
  hash = read_export_options
165
164
 
166
165
  # Overrides export options if needed
@@ -185,7 +184,7 @@ module Gym
185
184
  if FastlaneCore::Globals.verbose?
186
185
  UI.message("This results in the following plist file:")
187
186
  UI.command_output("-----------------------------------------")
188
- UI.command_output(to_plist(hash))
187
+ UI.command_output(hash.to_plist)
189
188
  UI.command_output("-----------------------------------------")
190
189
  end
191
190
 
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.69.0
4
+ version: 2.69.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-12-12 00:00:00.000000000 Z
18
+ date: 2017-12-13 00:00:00.000000000 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: slack-notifier
@@ -829,6 +829,7 @@ files:
829
829
  - deliver/lib/deliver/upload_price_tier.rb
830
830
  - deliver/lib/deliver/upload_screenshots.rb
831
831
  - fastlane/README.md
832
+ - fastlane/lib/.DS_Store
832
833
  - fastlane/lib/assets/ActionDetails.md.erb
833
834
  - fastlane/lib/assets/Actions.md.erb
834
835
  - fastlane/lib/assets/AppfileTemplate
@@ -851,6 +852,7 @@ files:
851
852
  - fastlane/lib/fastlane/.DS_Store
852
853
  - fastlane/lib/fastlane/action.rb
853
854
  - fastlane/lib/fastlane/action_collector.rb
855
+ - fastlane/lib/fastlane/actions/.DS_Store
854
856
  - fastlane/lib/fastlane/actions/README.md
855
857
  - fastlane/lib/fastlane/actions/actions_helper.rb
856
858
  - fastlane/lib/fastlane/actions/adb.rb
@@ -1132,6 +1134,7 @@ files:
1132
1134
  - fastlane/lib/fastlane/fast_file.rb
1133
1135
  - fastlane/lib/fastlane/fastlane_require.rb
1134
1136
  - fastlane/lib/fastlane/features.rb
1137
+ - fastlane/lib/fastlane/helper/.DS_Store
1135
1138
  - fastlane/lib/fastlane/helper/README.md
1136
1139
  - fastlane/lib/fastlane/helper/adb_helper.rb
1137
1140
  - fastlane/lib/fastlane/helper/cocoapod_helper.rb
@@ -1201,8 +1204,10 @@ files:
1201
1204
  - fastlane/lib/fastlane/tools.rb
1202
1205
  - fastlane/lib/fastlane/version.rb
1203
1206
  - fastlane_core/README.md
1207
+ - fastlane_core/lib/.DS_Store
1204
1208
  - fastlane_core/lib/assets/XMLTemplate.xml.erb
1205
1209
  - fastlane_core/lib/fastlane_core.rb
1210
+ - fastlane_core/lib/fastlane_core/.DS_Store
1206
1211
  - fastlane_core/lib/fastlane_core/analytics/action_completion_context.rb
1207
1212
  - fastlane_core/lib/fastlane_core/analytics/action_launch_context.rb
1208
1213
  - fastlane_core/lib/fastlane_core/analytics/analytics_event_builder.rb
@@ -1329,7 +1334,6 @@ files:
1329
1334
  - pilot/lib/pilot/tester_manager.rb
1330
1335
  - pilot/lib/pilot/tester_util.rb
1331
1336
  - precheck/README.md
1332
- - precheck/lib/.DS_Store
1333
1337
  - precheck/lib/assets/PrecheckfileTemplate
1334
1338
  - precheck/lib/assets/PrecheckfileTemplate.swift
1335
1339
  - precheck/lib/precheck.rb
@@ -1575,7 +1579,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1575
1579
  version: '0'
1576
1580
  requirements: []
1577
1581
  rubyforge_project:
1578
- rubygems_version: 2.2.5
1582
+ rubygems_version: 2.6.8
1579
1583
  signing_key:
1580
1584
  specification_version: 4
1581
1585
  summary: The easiest way to automate beta deployments and releases for your iOS and