cocoapods-core 1.7.0.beta.1 → 1.7.0.beta.2

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: 6d6029877133203026dca0a0536818e5799bb22a
4
- data.tar.gz: 14c7457385e244d39a5fabff47257f702c6b5afe
3
+ metadata.gz: '087c374819d638cd923c6074cd0f543457793fa6'
4
+ data.tar.gz: 483a12c5da295f67bb00ce5df3ec1121664b0019
5
5
  SHA512:
6
- metadata.gz: b34c2e92c8d1125c7d30237ca3f8771195860817768873d4ca3c774a82d6d83cf2741e7ca81e21ec738ce6fdd3c14b442c4815dc11aab2260ae9416e9fdad437
7
- data.tar.gz: 1e4bc919ec36bd8f87a92dae0ce64755103d4bcd04b510443a6ef87078c22352ac084470d5e95c6f02c883b940cf7f68c9c31d1e71bb05ca21011b983a1e495d
6
+ metadata.gz: 537550a5122e557d8b687dce8372fdbbde62c5513a310dd31b266836621211fbb2cb00a2e3d076db4cb2dadb84ae597a40faceb8ded04c29e0481b30874d6ec4
7
+ data.tar.gz: 8edb24dd1f50880534d06501074ec978da966b4465805b7932c417fa1779881a68809b4ea21cb77f288f47deb079e64c8ac65ffca16b976fd8b84823ac080fef
@@ -1,5 +1,5 @@
1
1
  module Pod
2
2
  # The version of the cocoapods-core.
3
3
  #
4
- CORE_VERSION = '1.7.0.beta.1'.freeze unless defined? Pod::CORE_VERSION
4
+ CORE_VERSION = '1.7.0.beta.2'.freeze unless defined? Pod::CORE_VERSION
5
5
  end
@@ -399,13 +399,21 @@ module Pod
399
399
  # @option options [String] :shell_path
400
400
  # the shell path to use for this script phase, for example `/usr/bin/ruby` to use Ruby for this phase.
401
401
  #
402
- # @option options [Array<String>] :input_paths
403
- # the input paths to use for script. This is used by Xcode to determine whether to re-execute this
404
- # script phase if the input paths have changed or not.
402
+ # @option options [Array<String>] :input_files
403
+ # the input paths to use for this script phase. This is used by Xcode to determine whether to re-execute
404
+ # this script phase if the input paths have changed or not.
405
405
  #
406
- # @option options [Array<String>] :output_paths
407
- # the output paths to use for script. This is used by Xcode to avoid re-executing this script phase if
408
- # none of the output paths have changed.
406
+ # @option options [Array<String>] :output_files
407
+ # the output paths to use for this script phase. This is used by Xcode to avoid re-executing this script
408
+ # phase if none of the output paths have changed.
409
+ #
410
+ # @option options [Array<String>] :input_file_lists
411
+ # the input file lists to use for this script phase. This is used by Xcode to determine whether to
412
+ # re-execute this script phase if the input paths have changed or not.
413
+ #
414
+ # @option options [Array<String>] :output_file_lists
415
+ # the output file lists to use for this script phase. This is used by Xcode to avoid re-executing this
416
+ # script phase if none of the output paths have changed.
409
417
  #
410
418
  # @option options [Boolean] :show_env_vars_in_log
411
419
  # whether this script phase should output the environment variables during execution.
@@ -990,7 +990,8 @@ module Pod
990
990
 
991
991
  SCRIPT_PHASE_REQUIRED_KEYS = [:name, :script].freeze
992
992
 
993
- SCRIPT_PHASE_OPTIONAL_KEYS = [:shell_path, :input_files, :output_files, :show_env_vars_in_log, :execution_position].freeze
993
+ SCRIPT_PHASE_OPTIONAL_KEYS = [:shell_path, :input_files, :output_files, :input_file_lists, :output_file_lists,
994
+ :show_env_vars_in_log, :execution_position].freeze
994
995
 
995
996
  EXECUTION_POSITION_KEYS = [:before_compile, :after_compile, :any].freeze
996
997
 
@@ -1022,6 +1023,18 @@ module Pod
1022
1023
  #
1023
1024
  # @example
1024
1025
  #
1026
+ # spec.script_phase = { :name => 'Hello World', :script => 'echo "Hello World"',
1027
+ # :input_files => ['/path/to/input_file.txt'], :output_files => ['/path/to/output_file.txt']
1028
+ # }
1029
+ #
1030
+ # @example
1031
+ #
1032
+ # spec.script_phase = { :name => 'Hello World', :script => 'echo "Hello World"',
1033
+ # :input_file_lists => ['/path/to/input_files.xcfilelist'], :output_file_lists => ['/path/to/output_files.xcfilelist']
1034
+ # }
1035
+ #
1036
+ # @example
1037
+ #
1025
1038
  # spec.script_phases = [
1026
1039
  # { :name => 'Hello World', :script => 'echo "Hello World"' },
1027
1040
  # { :name => 'Hello Ruby World', :script => 'puts "Hello World"', :shell_path => '/usr/bin/ruby' },
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.0.beta.1
4
+ version: 1.7.0.beta.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eloy Duran
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-02-22 00:00:00.000000000 Z
12
+ date: 2019-03-08 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport