fastlane 1.14.0 → 1.14.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c87bbcf201fb11443eedd9d73437b944f674917b
4
- data.tar.gz: bdc4b534d0d3f5c98214678ecf6f7ccd3ebf42b2
3
+ metadata.gz: 13c2a6107e073776bcdc958e1c297aa184e2f429
4
+ data.tar.gz: b1f4e8ebec0401aa0099f3e8ff1dcd7634c4e5cb
5
5
  SHA512:
6
- metadata.gz: cd520940eca1463919bce6ee5f43b09deaf38f8e1a880203b460a35f75bc7c54f3c4dddabc323db11dc0c0181784268262236a5042879859b36c3c2a1d79c625
7
- data.tar.gz: ff74ca81e2bd27cbf9927a2346028090a0c9bcefd9079b2d4000c8c4f936382cb0107c0cbb3731ca33c685a3328990638dc636c032c4afffa42e724d4635cd23
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 the methods, available for the lanes should be created here.
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
 
@@ -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
  #####################################################
@@ -1,3 +1,3 @@
1
1
  module Fastlane
2
- VERSION = '1.14.0'
2
+ VERSION = '1.14.1'
3
3
  end
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.0
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-01 00:00:00.000000000 Z
11
+ date: 2015-08-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri