fastlane 1.14.0 → 1.14.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 13c2a6107e073776bcdc958e1c297aa184e2f429
|
4
|
+
data.tar.gz: b1f4e8ebec0401aa0099f3e8ff1dcd7634c4e5cb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a2d7913f3d6979b5795aefe71191b4a91ec0e5b4d305e47c156b1d7365097935b2ee1415878f571772de46dcb049f9d3ebf37a873e48148cd98fdb16c1c03106
|
7
|
+
data.tar.gz: 378b0fa6da5faa20b0f1050cf892751530e8b340c59853e9476a684df1023c454b2e338c7a09246f7c1bc4eb2c74a7e9184140603cda02074cab3c5f3c95127e
|
@@ -4,6 +4,12 @@ module Fastlane
|
|
4
4
|
[[NAME_UP]]_CUSTOM_VALUE = :[[NAME_UP]]_CUSTOM_VALUE
|
5
5
|
end
|
6
6
|
|
7
|
+
# To share this integration with the other fastlane users:
|
8
|
+
# - Fork https://github.com/KrauseFx/fastlane
|
9
|
+
# - Clone the forked repository
|
10
|
+
# - Move this integration into lib/fastlane/actions
|
11
|
+
# - Commit, push and submit the pull request
|
12
|
+
|
7
13
|
class [[NAME_CLASS]] < Action
|
8
14
|
def self.run(params)
|
9
15
|
# fastlane will take care of reading in the parameter and fetching the environment variable:
|
@@ -1,3 +1,3 @@
|
|
1
|
-
All
|
1
|
+
All built-in integrations are available in this directory. Use the `fastlane new_action` command to create a new action.
|
2
2
|
|
3
|
-
`fastlane` will automatically detect the files in this folder
|
3
|
+
`fastlane` will automatically detect the files in this folder
|
@@ -69,7 +69,7 @@ module Fastlane
|
|
69
69
|
Actions.sh("git add #{git_add_paths.map(&:shellescape).join(' ')}")
|
70
70
|
|
71
71
|
begin
|
72
|
-
build_number = lane_context[SharedValues::BUILD_NUMBER]
|
72
|
+
build_number = Actions.lane_context[Actions::SharedValues::BUILD_NUMBER]
|
73
73
|
|
74
74
|
params[:message] ||= (build_number ? "Version Bump to #{build_number}" : "Version Bump")
|
75
75
|
|
data/lib/fastlane/fast_file.rb
CHANGED
@@ -171,8 +171,11 @@ module Fastlane
|
|
171
171
|
end
|
172
172
|
|
173
173
|
raise "Could not find Fastfile at path '#{path}'".red unless File.exists?(path)
|
174
|
-
|
175
174
|
parse(File.read(path))
|
175
|
+
|
176
|
+
# Check if we can also import local actions which are in the same directory as the Fastfile
|
177
|
+
actions_path = File.join(File.expand_path("..", path), 'actions')
|
178
|
+
Fastlane::Actions.load_external_actions(actions_path) if File.directory?(actions_path)
|
176
179
|
end
|
177
180
|
|
178
181
|
#####################################################
|
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.14.
|
4
|
+
version: 1.14.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-08-
|
11
|
+
date: 2015-08-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: nokogiri
|