cocoapods-core 1.7.0.beta.1 → 1.7.0.beta.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/cocoapods-core/gem_version.rb +1 -1
- data/lib/cocoapods-core/podfile/dsl.rb +14 -6
- data/lib/cocoapods-core/specification/dsl.rb +14 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '087c374819d638cd923c6074cd0f543457793fa6'
|
4
|
+
data.tar.gz: 483a12c5da295f67bb00ce5df3ec1121664b0019
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 537550a5122e557d8b687dce8372fdbbde62c5513a310dd31b266836621211fbb2cb00a2e3d076db4cb2dadb84ae597a40faceb8ded04c29e0481b30874d6ec4
|
7
|
+
data.tar.gz: 8edb24dd1f50880534d06501074ec978da966b4465805b7932c417fa1779881a68809b4ea21cb77f288f47deb079e64c8ac65ffca16b976fd8b84823ac080fef
|
@@ -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>] :
|
403
|
-
# the input paths to use for script. This is used by Xcode to determine whether to re-execute
|
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>] :
|
407
|
-
# the output paths to use for script. This is used by Xcode to avoid re-executing this script
|
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, :
|
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.
|
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-
|
12
|
+
date: 2019-03-08 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|