fastlane 1.89.0 → 1.90.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 +4 -4
- data/README.md +0 -2
- data/lib/fastlane/actions/actions_helper.rb +1 -1
- data/lib/fastlane/actions/carthage.rb +23 -2
- data/lib/fastlane/actions/commit_version_bump.rb +1 -1
- data/lib/fastlane/actions/copy_artifacts.rb +1 -1
- data/lib/fastlane/actions/ensure_git_status_clean.rb +1 -1
- data/lib/fastlane/actions/hg_ensure_clean_status.rb +1 -1
- data/lib/fastlane/actions/jira.rb +1 -1
- data/lib/fastlane/actions/pod_lib_lint.rb +24 -3
- data/lib/fastlane/actions/reset_git_repo.rb +1 -1
- data/lib/fastlane/actions/setup_jenkins.rb +3 -1
- data/lib/fastlane/actions/update_urban_airship_configuration.rb +1 -1
- data/lib/fastlane/actions/update_url_schemes.rb +3 -3
- data/lib/fastlane/actions/xcake.rb +8 -1
- data/lib/fastlane/actions/xcode_install.rb +0 -1
- data/lib/fastlane/actions/xcversion.rb +39 -0
- data/lib/fastlane/commands_generator.rb +0 -16
- data/lib/fastlane/configuration_helper.rb +1 -1
- data/lib/fastlane/helper/xcversion_helper.rb +25 -0
- data/lib/fastlane/lane_manager.rb +1 -1
- data/lib/fastlane/version.rb +1 -1
- metadata +33 -17
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8641fae7b2c42130def7ea0c062c43e18d9431e4
|
|
4
|
+
data.tar.gz: 6549fa570b5193cfdc0d792b96157dd7e25e4f14
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 52c36be3502ed5d8e3c9a9e24f43b81ed7b00df6c064c6e83292a5a22843c2bc2a0a324c9b1dceae7badf48602c4cdf6586d1d51643d4a9c3f8a4c903d9c1fc9
|
|
7
|
+
data.tar.gz: 0917e2ce54a1436831ee23e9c3993a95d6d99af6f240ad08a3b5baa6f11c8faba25aa7367c00a8004ae1f063ca77e3f6e0dfac2d4051ecfceea8998601ee8fc9
|
data/README.md
CHANGED
|
@@ -173,8 +173,6 @@ See how [Wikipedia](https://github.com/fastlane/examples#wikipedia-by-wikimedia-
|
|
|
173
173
|
|
|
174
174
|
You can easily opt-out by adding `opt_out_usage` to your `Fastfile` or by setting the environment variable `FASTLANE_OPT_OUT_USAGE`. To also disable update checks, set the `FASTLANE_SKIP_UPDATE_CHECK` variable.
|
|
175
175
|
|
|
176
|
-
You can optionally submit crash reports, run `fastlane enable_crash_reporting` to get started. This makes resolving issues much easier and helps improve fastlane. [More information](https://github.com/fastlane/fastlane/releases/tag/1.33.3)
|
|
177
|
-
|
|
178
176
|
## Credentials
|
|
179
177
|
A detailed description about how `fastlane` stores your credentials is available on a [separate repo](https://github.com/fastlane/fastlane/tree/master/credentials_manager).
|
|
180
178
|
|
|
@@ -87,7 +87,7 @@ module Fastlane
|
|
|
87
87
|
class_ref = Fastlane::Actions.const_get(class_name)
|
|
88
88
|
|
|
89
89
|
if class_ref.respond_to?(:run)
|
|
90
|
-
UI.success "Successfully loaded custom action '#{file}'."
|
|
90
|
+
UI.success "Successfully loaded custom action '#{file}'." if $verbose
|
|
91
91
|
else
|
|
92
92
|
UI.error "Could not find method 'run' in class #{class_name}."
|
|
93
93
|
UI.error 'For more information, check out the docs: https://github.com/fastlane/fastlane/tree/master/fastlane'
|
|
@@ -12,18 +12,24 @@ module Fastlane
|
|
|
12
12
|
cmd << "--no-skip-current" if params[:no_skip_current] == true
|
|
13
13
|
cmd << "--verbose" if params[:verbose] == true
|
|
14
14
|
cmd << "--platform #{params[:platform]}" if params[:platform]
|
|
15
|
+
cmd << "--configuration #{params[:configuration]}" if params[:configuration]
|
|
16
|
+
cmd << "--derived-data #{params[:derived_data].shellescape}" if params[:derived_data]
|
|
15
17
|
|
|
16
18
|
Actions.sh(cmd.join(' '))
|
|
17
19
|
end
|
|
18
20
|
|
|
19
21
|
def self.description
|
|
20
|
-
"Runs `carthage
|
|
22
|
+
"Runs `carthage` for your project"
|
|
21
23
|
end
|
|
22
24
|
|
|
23
25
|
def self.available_commands
|
|
24
26
|
%w(build bootstrap update archive)
|
|
25
27
|
end
|
|
26
28
|
|
|
29
|
+
def self.available_platforms
|
|
30
|
+
%w(all iOS Mac tvOS watchOS)
|
|
31
|
+
end
|
|
32
|
+
|
|
27
33
|
def self.available_options
|
|
28
34
|
[
|
|
29
35
|
FastlaneCore::ConfigItem.new(key: :command,
|
|
@@ -73,6 +79,10 @@ module Fastlane
|
|
|
73
79
|
verify_block: proc do |value|
|
|
74
80
|
UI.user_error!("Please pass a valid value for no_skip_current. Use one of the following: true, false") unless value.kind_of?(TrueClass) || value.kind_of?(FalseClass)
|
|
75
81
|
end),
|
|
82
|
+
FastlaneCore::ConfigItem.new(key: :derived_data,
|
|
83
|
+
env_name: "FL_CARTHAGE_DERIVED_DATA",
|
|
84
|
+
description: "Use derived data folder at path",
|
|
85
|
+
optional: true),
|
|
76
86
|
FastlaneCore::ConfigItem.new(key: :verbose,
|
|
77
87
|
env_name: "FL_CARTHAGE_VERBOSE",
|
|
78
88
|
description: "Print xcodebuild output inline",
|
|
@@ -86,7 +96,18 @@ module Fastlane
|
|
|
86
96
|
description: "Define which platform to build for",
|
|
87
97
|
optional: true,
|
|
88
98
|
verify_block: proc do |value|
|
|
89
|
-
|
|
99
|
+
value.split(',').each do |platform|
|
|
100
|
+
UI.user_error!("Please pass a valid platform. Use one of the following: #{available_platforms.join(', ')}") unless available_platforms.include? platform
|
|
101
|
+
end
|
|
102
|
+
end),
|
|
103
|
+
FastlaneCore::ConfigItem.new(key: :configuration,
|
|
104
|
+
env_name: "FL_CARTHAGE_CONFIGURATION",
|
|
105
|
+
description: "Define which build configuration to use when building",
|
|
106
|
+
optional: true,
|
|
107
|
+
verify_block: proc do |value|
|
|
108
|
+
if value.chomp(' ').empty?
|
|
109
|
+
UI.user_error!("Please pass a valid build configuration. You can review the list of configurations for this project using the command: xcodebuild -list")
|
|
110
|
+
end
|
|
90
111
|
end)
|
|
91
112
|
]
|
|
92
113
|
end
|
|
@@ -79,7 +79,7 @@ module Fastlane
|
|
|
79
79
|
"working directory while your lane is running. You can also use the :force option to bypass this ",
|
|
80
80
|
"check, and always commit a version bump regardless of the state of the working directory."
|
|
81
81
|
].join("\n")
|
|
82
|
-
|
|
82
|
+
UI.user_error!(error)
|
|
83
83
|
end
|
|
84
84
|
end
|
|
85
85
|
|
|
@@ -13,7 +13,7 @@ module Fastlane
|
|
|
13
13
|
UI.success('Git status is clean, all good! 💪')
|
|
14
14
|
Actions.lane_context[SharedValues::GIT_REPO_WAS_CLEAN_ON_START] = true
|
|
15
15
|
else
|
|
16
|
-
|
|
16
|
+
UI.user_error!("Git repository is dirty! Please ensure the repo is in a clean state by commiting/stashing/discarding all changes first.")
|
|
17
17
|
end
|
|
18
18
|
end
|
|
19
19
|
|
|
@@ -12,7 +12,7 @@ module Fastlane
|
|
|
12
12
|
UI.success('Mercurial status is clean, all good! 😎')
|
|
13
13
|
Actions.lane_context[SharedValues::HG_REPO_WAS_CLEAN_ON_START] = true
|
|
14
14
|
else
|
|
15
|
-
|
|
15
|
+
UI.user_error!('Mercurial repository is dirty! Please ensure the repo is in a clean state by commiting/stashing/discarding all changes first.')
|
|
16
16
|
end
|
|
17
17
|
end
|
|
18
18
|
|
|
@@ -23,8 +23,13 @@ module Fastlane
|
|
|
23
23
|
command << "--allow-warnings"
|
|
24
24
|
end
|
|
25
25
|
|
|
26
|
+
command << "--use-libraries" if params[:use_libraries]
|
|
27
|
+
command << "--fail-fast" if params[:fail_fast]
|
|
28
|
+
command << "--private" if params[:private]
|
|
29
|
+
command << "--quick" if params[:quick]
|
|
30
|
+
|
|
26
31
|
result = Actions.sh(command.join(' '))
|
|
27
|
-
|
|
32
|
+
UI.success("Pod lib lint Successfully ⬆️ ")
|
|
28
33
|
return result
|
|
29
34
|
end
|
|
30
35
|
|
|
@@ -59,8 +64,24 @@ module Fastlane
|
|
|
59
64
|
optional: true,
|
|
60
65
|
is_string: false,
|
|
61
66
|
verify_block: proc do |value|
|
|
62
|
-
|
|
63
|
-
end)
|
|
67
|
+
UI.user_error!("Sources must be an array.") unless value.kind_of?(Array)
|
|
68
|
+
end),
|
|
69
|
+
FastlaneCore::ConfigItem.new(key: :use_libraries,
|
|
70
|
+
description: "Lint uses static libraries to install the spec",
|
|
71
|
+
is_string: false,
|
|
72
|
+
default_value: false),
|
|
73
|
+
FastlaneCore::ConfigItem.new(key: :fail_fast,
|
|
74
|
+
description: "Lint stops on the first failing platform or subspec",
|
|
75
|
+
is_string: false,
|
|
76
|
+
default_value: false),
|
|
77
|
+
FastlaneCore::ConfigItem.new(key: :private,
|
|
78
|
+
description: "Lint skips checks that apply only to public specs",
|
|
79
|
+
is_string: false,
|
|
80
|
+
default_value: false),
|
|
81
|
+
FastlaneCore::ConfigItem.new(key: :quick,
|
|
82
|
+
description: "Lint skips checks that would require to download and build the spec",
|
|
83
|
+
is_string: false,
|
|
84
|
+
default_value: false)
|
|
64
85
|
]
|
|
65
86
|
end
|
|
66
87
|
|
|
@@ -36,7 +36,7 @@ module Fastlane
|
|
|
36
36
|
UI.success("Git cleaned up #{paths.count} files.")
|
|
37
37
|
end
|
|
38
38
|
else
|
|
39
|
-
|
|
39
|
+
UI.user_error!('This is a destructive and potentially dangerous action. To protect from data loss, please add the `ensure_git_status_clean` action to the beginning of your lane, or if you\'re absolutely sure of what you\'re doing then call this action with the :force option.')
|
|
40
40
|
end
|
|
41
41
|
end
|
|
42
42
|
|
|
@@ -4,6 +4,7 @@ module Fastlane
|
|
|
4
4
|
USED_ENV_NAMES = [
|
|
5
5
|
"BACKUP_XCARCHIVE_DESTINATION",
|
|
6
6
|
"DERIVED_DATA_PATH",
|
|
7
|
+
"FL_CARTHAGE_DERIVED_DATA",
|
|
7
8
|
"GYM_BUILD_PATH",
|
|
8
9
|
"GYM_CODE_SIGNING_IDENTITY",
|
|
9
10
|
"GYM_DERIVED_DATA_PATH",
|
|
@@ -65,6 +66,7 @@ module Fastlane
|
|
|
65
66
|
ENV['XCODE_DERIVED_DATA_PATH'] = derived_data_path
|
|
66
67
|
ENV['GYM_DERIVED_DATA_PATH'] = derived_data_path
|
|
67
68
|
ENV['SCAN_DERIVED_DATA_PATH'] = derived_data_path
|
|
69
|
+
ENV['FL_CARTHAGE_DERIVED_DATA'] = derived_data_path
|
|
68
70
|
end
|
|
69
71
|
|
|
70
72
|
# Set result bundle
|
|
@@ -88,7 +90,7 @@ module Fastlane
|
|
|
88
90
|
"- Adds and unlocks keychains from Jenkins 'Keychains and Provisioning Profiles Plugin'",
|
|
89
91
|
"- Sets code signing identity from Jenkins 'Keychains and Provisioning Profiles Plugin'",
|
|
90
92
|
"- Sets output directory to './output' (gym, scan and backup_xcarchive).",
|
|
91
|
-
"- Sets derived data path to './derivedData' (xcodebuild, gym, scan and clear_derived_data).",
|
|
93
|
+
"- Sets derived data path to './derivedData' (xcodebuild, gym, scan and clear_derived_data, carthage).",
|
|
92
94
|
"- Produce result bundle (gym and scan)."
|
|
93
95
|
].join("\n")
|
|
94
96
|
end
|
|
@@ -34,7 +34,7 @@ module Fastlane
|
|
|
34
34
|
env_name: "URBAN_AIRSHIP_PLIST_PATH",
|
|
35
35
|
description: "Path to Urban Airship configuration Plist",
|
|
36
36
|
verify_block: proc do |value|
|
|
37
|
-
|
|
37
|
+
UI.user_errror!("Could not find Urban Airship plist file") unless File.exist?(value)
|
|
38
38
|
end),
|
|
39
39
|
FastlaneCore::ConfigItem.new(key: :development_app_key,
|
|
40
40
|
optional: true,
|
|
@@ -36,11 +36,11 @@ module Fastlane
|
|
|
36
36
|
is_string: false,
|
|
37
37
|
optional: false,
|
|
38
38
|
verify_block: proc do |url_schemes|
|
|
39
|
-
string = "The URL schemes must be an array of strings, got '#{url_schemes}'."
|
|
40
|
-
|
|
39
|
+
string = "The URL schemes must be an array of strings, got '#{url_schemes}'."
|
|
40
|
+
UI.user_error!(string) unless url_schemes.kind_of?(Array)
|
|
41
41
|
|
|
42
42
|
url_schemes.each do |url_scheme|
|
|
43
|
-
|
|
43
|
+
UI.user_error!(string) unless url_scheme.kind_of?(String)
|
|
44
44
|
end
|
|
45
45
|
end
|
|
46
46
|
)
|
|
@@ -4,7 +4,14 @@ module Fastlane
|
|
|
4
4
|
def self.run(params)
|
|
5
5
|
Actions.verify_gem!('xcake')
|
|
6
6
|
require 'xcake'
|
|
7
|
-
|
|
7
|
+
|
|
8
|
+
if defined? Xcake::Command::Make
|
|
9
|
+
# New `xcake make` command
|
|
10
|
+
Xcake::Command::Make.run
|
|
11
|
+
else
|
|
12
|
+
# Legacy `xcake` command
|
|
13
|
+
Xcake::Command.run
|
|
14
|
+
end
|
|
8
15
|
end
|
|
9
16
|
|
|
10
17
|
def self.description
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
module Fastlane
|
|
2
|
+
module Actions
|
|
3
|
+
class XcversionAction < Action
|
|
4
|
+
def self.run(params)
|
|
5
|
+
version = params[:version]
|
|
6
|
+
xcode = Helper::XcversionHelper.find_xcode(version)
|
|
7
|
+
UI.user_error!("Cannot find an installed Xcode satisfying '#{version}'") if xcode.nil?
|
|
8
|
+
|
|
9
|
+
UI.verbose("Found Xcode version #{xcode.version} at #{xcode.path} satisfying requirement #{version}")
|
|
10
|
+
UI.message("Setting Xcode version to #{xcode.path} for all build steps")
|
|
11
|
+
|
|
12
|
+
ENV["DEVELOPER_DIR"] = File.join(xcode.path, "/Contents/Developer")
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
def self.description
|
|
16
|
+
"Select an Xcode to use by version specifier"
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
def self.author
|
|
20
|
+
"oysta"
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
def self.available_options
|
|
24
|
+
[
|
|
25
|
+
FastlaneCore::ConfigItem.new(key: :version,
|
|
26
|
+
env_name: "FL_XCODE_VERSION",
|
|
27
|
+
description: "The version of Xcode to select specified as a Gem::Version requirement string (e.g. '~> 7.1.0')",
|
|
28
|
+
optional: false,
|
|
29
|
+
verify_block: Helper::XcversionHelper::Verify.method(:requirement)
|
|
30
|
+
)
|
|
31
|
+
]
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
def self.is_supported?(platform)
|
|
35
|
+
[:ios, :mac].include? platform
|
|
36
|
+
end
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
end
|
|
@@ -144,22 +144,6 @@ module Fastlane
|
|
|
144
144
|
end
|
|
145
145
|
end
|
|
146
146
|
|
|
147
|
-
command :enable_crash_reporting do |c|
|
|
148
|
-
c.syntax = 'fastlane enable_crash_reporting'
|
|
149
|
-
c.description = 'Enable crash reporting to improve fastlane'
|
|
150
|
-
c.action do |args, options|
|
|
151
|
-
FastlaneCore::CrashReporting.enable
|
|
152
|
-
end
|
|
153
|
-
end
|
|
154
|
-
|
|
155
|
-
command :disable_crash_reporting do |c|
|
|
156
|
-
c.syntax = 'fastlane disable_crash_reporting'
|
|
157
|
-
c.description = 'Disable crash reporting'
|
|
158
|
-
c.action do |args, options|
|
|
159
|
-
FastlaneCore::CrashReporting.disable
|
|
160
|
-
end
|
|
161
|
-
end
|
|
162
|
-
|
|
163
147
|
command :enable_auto_complete do |c|
|
|
164
148
|
c.syntax = 'fastlane enable_auto_complete'
|
|
165
149
|
c.description = 'Enable tab auto completion'
|
|
@@ -8,7 +8,7 @@ module Fastlane
|
|
|
8
8
|
return FastlaneCore::Configuration.create(action.available_options, params)
|
|
9
9
|
|
|
10
10
|
elsif first_element
|
|
11
|
-
|
|
11
|
+
UI.error("Old configuration format for action '#{action}'") if Helper.is_test?
|
|
12
12
|
return params
|
|
13
13
|
else
|
|
14
14
|
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
module Fastlane
|
|
2
|
+
module Helper
|
|
3
|
+
class XcversionHelper
|
|
4
|
+
def self.find_xcode(req)
|
|
5
|
+
req = Gem::Requirement.new(req.to_s)
|
|
6
|
+
|
|
7
|
+
require 'xcode/install'
|
|
8
|
+
installer = XcodeInstall::Installer.new
|
|
9
|
+
installed = installer.installed_versions.reverse
|
|
10
|
+
installed.detect do |xcode|
|
|
11
|
+
req.satisfied_by? Gem::Version.new(xcode.version)
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
module Verify
|
|
16
|
+
def self.requirement(req)
|
|
17
|
+
UI.user_error!("Version must be specified") if req.nil? || req.to_s.strip.size == 0
|
|
18
|
+
Gem::Requirement.new(req.to_s)
|
|
19
|
+
rescue Gem::Requirement::BadRequirementError
|
|
20
|
+
UI.user_error!("The requirement '#{req}' is not a valid RubyGems style requirement")
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
|
@@ -103,7 +103,7 @@ module Fastlane
|
|
|
103
103
|
# Lane chooser if user didn't provide a lane
|
|
104
104
|
# @param platform: is probably nil, but user might have called `fastlane android`, and only wants to list those actions
|
|
105
105
|
def self.choose_lane(ff, platform)
|
|
106
|
-
available = ff.runner.lanes[platform].to_a
|
|
106
|
+
available = ff.runner.lanes[platform].to_a.reject { |lane| lane.last.is_private }
|
|
107
107
|
if available.empty?
|
|
108
108
|
UI.user_error! "It looks like you don't have any lanes to run just yet. Check out how to get started here: https://github.com/fastlane/fastlane 🚀"
|
|
109
109
|
end
|
data/lib/fastlane/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.90.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Felix Krause
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-05-
|
|
11
|
+
date: 2016-05-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: krausefx-shenzhen
|
|
@@ -142,13 +142,27 @@ dependencies:
|
|
|
142
142
|
- - "~>"
|
|
143
143
|
- !ruby/object:Gem::Version
|
|
144
144
|
version: 2.0.0
|
|
145
|
+
- !ruby/object:Gem::Dependency
|
|
146
|
+
name: xcode-install
|
|
147
|
+
requirement: !ruby/object:Gem::Requirement
|
|
148
|
+
requirements:
|
|
149
|
+
- - "~>"
|
|
150
|
+
- !ruby/object:Gem::Version
|
|
151
|
+
version: 1.4.0
|
|
152
|
+
type: :runtime
|
|
153
|
+
prerelease: false
|
|
154
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
155
|
+
requirements:
|
|
156
|
+
- - "~>"
|
|
157
|
+
- !ruby/object:Gem::Version
|
|
158
|
+
version: 1.4.0
|
|
145
159
|
- !ruby/object:Gem::Dependency
|
|
146
160
|
name: fastlane_core
|
|
147
161
|
requirement: !ruby/object:Gem::Requirement
|
|
148
162
|
requirements:
|
|
149
163
|
- - ">="
|
|
150
164
|
- !ruby/object:Gem::Version
|
|
151
|
-
version: 0.
|
|
165
|
+
version: 0.44.0
|
|
152
166
|
- - "<"
|
|
153
167
|
- !ruby/object:Gem::Version
|
|
154
168
|
version: 1.0.0
|
|
@@ -158,7 +172,7 @@ dependencies:
|
|
|
158
172
|
requirements:
|
|
159
173
|
- - ">="
|
|
160
174
|
- !ruby/object:Gem::Version
|
|
161
|
-
version: 0.
|
|
175
|
+
version: 0.44.0
|
|
162
176
|
- - "<"
|
|
163
177
|
- !ruby/object:Gem::Version
|
|
164
178
|
version: 1.0.0
|
|
@@ -188,7 +202,7 @@ dependencies:
|
|
|
188
202
|
requirements:
|
|
189
203
|
- - ">="
|
|
190
204
|
- !ruby/object:Gem::Version
|
|
191
|
-
version: 0.
|
|
205
|
+
version: 0.27.1
|
|
192
206
|
- - "<"
|
|
193
207
|
- !ruby/object:Gem::Version
|
|
194
208
|
version: 1.0.0
|
|
@@ -198,7 +212,7 @@ dependencies:
|
|
|
198
212
|
requirements:
|
|
199
213
|
- - ">="
|
|
200
214
|
- !ruby/object:Gem::Version
|
|
201
|
-
version: 0.
|
|
215
|
+
version: 0.27.1
|
|
202
216
|
- - "<"
|
|
203
217
|
- !ruby/object:Gem::Version
|
|
204
218
|
version: 1.0.0
|
|
@@ -208,7 +222,7 @@ dependencies:
|
|
|
208
222
|
requirements:
|
|
209
223
|
- - ">="
|
|
210
224
|
- !ruby/object:Gem::Version
|
|
211
|
-
version: 1.11.
|
|
225
|
+
version: 1.11.3
|
|
212
226
|
- - "<"
|
|
213
227
|
- !ruby/object:Gem::Version
|
|
214
228
|
version: 2.0.0
|
|
@@ -218,7 +232,7 @@ dependencies:
|
|
|
218
232
|
requirements:
|
|
219
233
|
- - ">="
|
|
220
234
|
- !ruby/object:Gem::Version
|
|
221
|
-
version: 1.11.
|
|
235
|
+
version: 1.11.3
|
|
222
236
|
- - "<"
|
|
223
237
|
- !ruby/object:Gem::Version
|
|
224
238
|
version: 2.0.0
|
|
@@ -368,7 +382,7 @@ dependencies:
|
|
|
368
382
|
requirements:
|
|
369
383
|
- - ">="
|
|
370
384
|
- !ruby/object:Gem::Version
|
|
371
|
-
version: 1.
|
|
385
|
+
version: 1.6.0
|
|
372
386
|
- - "<"
|
|
373
387
|
- !ruby/object:Gem::Version
|
|
374
388
|
version: 2.0.0
|
|
@@ -378,7 +392,7 @@ dependencies:
|
|
|
378
392
|
requirements:
|
|
379
393
|
- - ">="
|
|
380
394
|
- !ruby/object:Gem::Version
|
|
381
|
-
version: 1.
|
|
395
|
+
version: 1.6.0
|
|
382
396
|
- - "<"
|
|
383
397
|
- !ruby/object:Gem::Version
|
|
384
398
|
version: 2.0.0
|
|
@@ -388,7 +402,7 @@ dependencies:
|
|
|
388
402
|
requirements:
|
|
389
403
|
- - ">="
|
|
390
404
|
- !ruby/object:Gem::Version
|
|
391
|
-
version: 0.
|
|
405
|
+
version: 0.7.0
|
|
392
406
|
- - "<"
|
|
393
407
|
- !ruby/object:Gem::Version
|
|
394
408
|
version: 1.0.0
|
|
@@ -398,7 +412,7 @@ dependencies:
|
|
|
398
412
|
requirements:
|
|
399
413
|
- - ">="
|
|
400
414
|
- !ruby/object:Gem::Version
|
|
401
|
-
version: 0.
|
|
415
|
+
version: 0.7.0
|
|
402
416
|
- - "<"
|
|
403
417
|
- !ruby/object:Gem::Version
|
|
404
418
|
version: 1.0.0
|
|
@@ -408,7 +422,7 @@ dependencies:
|
|
|
408
422
|
requirements:
|
|
409
423
|
- - ">="
|
|
410
424
|
- !ruby/object:Gem::Version
|
|
411
|
-
version: 0.
|
|
425
|
+
version: 0.7.0
|
|
412
426
|
- - "<"
|
|
413
427
|
- !ruby/object:Gem::Version
|
|
414
428
|
version: 1.0.0
|
|
@@ -418,7 +432,7 @@ dependencies:
|
|
|
418
432
|
requirements:
|
|
419
433
|
- - ">="
|
|
420
434
|
- !ruby/object:Gem::Version
|
|
421
|
-
version: 0.
|
|
435
|
+
version: 0.7.0
|
|
422
436
|
- - "<"
|
|
423
437
|
- !ruby/object:Gem::Version
|
|
424
438
|
version: 1.0.0
|
|
@@ -428,7 +442,7 @@ dependencies:
|
|
|
428
442
|
requirements:
|
|
429
443
|
- - ">="
|
|
430
444
|
- !ruby/object:Gem::Version
|
|
431
|
-
version: 0.
|
|
445
|
+
version: 0.6.0
|
|
432
446
|
- - "<"
|
|
433
447
|
- !ruby/object:Gem::Version
|
|
434
448
|
version: 1.0.0
|
|
@@ -438,7 +452,7 @@ dependencies:
|
|
|
438
452
|
requirements:
|
|
439
453
|
- - ">="
|
|
440
454
|
- !ruby/object:Gem::Version
|
|
441
|
-
version: 0.
|
|
455
|
+
version: 0.6.0
|
|
442
456
|
- - "<"
|
|
443
457
|
- !ruby/object:Gem::Version
|
|
444
458
|
version: 1.0.0
|
|
@@ -854,6 +868,7 @@ files:
|
|
|
854
868
|
- lib/fastlane/actions/xcodebuild.rb
|
|
855
869
|
- lib/fastlane/actions/xcov.rb
|
|
856
870
|
- lib/fastlane/actions/xctool.rb
|
|
871
|
+
- lib/fastlane/actions/xcversion.rb
|
|
857
872
|
- lib/fastlane/actions/zip.rb
|
|
858
873
|
- lib/fastlane/auto_complete.rb
|
|
859
874
|
- lib/fastlane/cli_tools_distributor.rb
|
|
@@ -874,6 +889,7 @@ files:
|
|
|
874
889
|
- lib/fastlane/helper/gradle_helper.rb
|
|
875
890
|
- lib/fastlane/helper/podspec_helper.rb
|
|
876
891
|
- lib/fastlane/helper/sh_helper.rb
|
|
892
|
+
- lib/fastlane/helper/xcversion_helper.rb
|
|
877
893
|
- lib/fastlane/junit_generator.rb
|
|
878
894
|
- lib/fastlane/lane.rb
|
|
879
895
|
- lib/fastlane/lane_list.rb
|
|
@@ -908,7 +924,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
908
924
|
version: '0'
|
|
909
925
|
requirements: []
|
|
910
926
|
rubyforge_project:
|
|
911
|
-
rubygems_version: 2.
|
|
927
|
+
rubygems_version: 2.4.0
|
|
912
928
|
signing_key:
|
|
913
929
|
specification_version: 4
|
|
914
930
|
summary: The easiest way to automate building and releasing your iOS and Android apps
|