fastlane 2.70.0.beta.20171213010003 → 2.70.0.beta.20171214010003

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: e2522b08e35e323064b5ad29e7281eb2b1af9f01
4
- data.tar.gz: d70ce40e03108561fb779f5ab825595cefc39c91
3
+ metadata.gz: 51f8198e7fb06c3f69fcabe65541c601da9a358b
4
+ data.tar.gz: b19ce78468611f4eccfc5c90cfd435f5a6632560
5
5
  SHA512:
6
- metadata.gz: ec36f4166b82bf5178a7353a15900e48362f71cd9852e00dc522d1a914a7c1f59082fda364ff044f881e7e71c0bdcc73930bd71052437f024b2d1aa5f8f8730a
7
- data.tar.gz: 3acf38db2351ff73a7cdab7d7fecc4b4e0f4c319c9a3b1ad102901f28244292c33d4b1e76ff25956d93786d67cd0a0c4e05e97a2de8e7a4315a15ae9693c3926
6
+ metadata.gz: fd28428cf03bc1e23b6691419e239b4f913a123dbeaf19f71d3f52c769caf4c8a684d9b0301551bbaeb5ca648082a1cadfc8c01cd433813f36c1ff172f02a7c3
7
+ data.tar.gz: a1bf84d8a643d9681299ffac5e223f51e7072496e7dbbfac4731421697e15ba4f1c1caa4c1ae26ed6f0b238a74827485ffef20bfa3380b378dc87a27c17178a1
@@ -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
@@ -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.70.0.beta.20171213010003'.freeze
2
+ VERSION = '2.70.0.beta.20171214010003'.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
@@ -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
@@ -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
 
@@ -33,7 +33,8 @@ module Match
33
33
  env_name: "MATCH_APP_IDENTIFIER",
34
34
  description: "The bundle identifier(s) of your app (comma-separated)",
35
35
  is_string: false,
36
- type: Array,
36
+ type: Array, # we actually allow String and Array here
37
+ skip_type_validation: true,
37
38
  default_value: CredentialsManager::AppfileConfig.try_fetch_value(:app_identifier)),
38
39
  FastlaneCore::ConfigItem.new(key: :username,
39
40
  short_option: "-u",
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.70.0.beta.20171213010003
4
+ version: 2.70.0.beta.20171214010003
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-13 00:00:00.000000000 Z
18
+ date: 2017-12-14 00:00:00.000000000 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: slack-notifier