xcodeproj 1.12.0 → 1.13.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: aa940904701915ca389aa029cd0461eb3e22961e3e1270352a73d2153254dd05
4
- data.tar.gz: d364a28dc939e3491bef4c5d15fa209ab61b760160a7fadae4fe94b500ae7b3b
3
+ metadata.gz: 935c76050e4379c9a8d243645b906017320dd0d74c79e68b474b9bd1147d378e
4
+ data.tar.gz: 87bed25d95253e5ee9af635b0582c86fa76c8859bb2fab625e57b9f6a178db22
5
5
  SHA512:
6
- metadata.gz: d5e998ccd7775c02480df2a62cb62251f1be370088c10271445c80af9d824bdfbd911d9d4d34e4c9b571966d5584d2f724fed62b6aa651959bf9d87bd1fcb00c
7
- data.tar.gz: 14dca20cc3e3032e8157f5722b02ccd8d99ede9219241061bda616646cd14cd2f6277b0ec533b5e0184f1a028406a6f120e192be459cb91aedd01ed452756421
6
+ metadata.gz: fad701838ce5ba4869348fb41e934a275d6442e2072baa3b02894ec4ad8f4b421532f79d543a8da817a74fa2b5fe6baab27a696b13afd3960029ac3fa799cbe5
7
+ data.tar.gz: 755f65c8c0e2589eb98ca78332df42a59d8ce031f3e3493f62a266e95933ef9cd835669929b8240bd0d541cac9939ddb0294c58c2c0e0cc67d4e3e40a2d9d873
@@ -157,6 +157,8 @@ module Xcodeproj
157
157
  end
158
158
  end
159
159
 
160
+ alias_method :to_h, :to_hash
161
+
160
162
  # @return [Set<String>] The list of the frameworks required by this
161
163
  # settings file.
162
164
  #
@@ -1,5 +1,5 @@
1
1
  module Xcodeproj
2
2
  # The version of the xcodeproj gem.
3
3
  #
4
- VERSION = '1.12.0'.freeze unless defined? Xcodeproj::VERSION
4
+ VERSION = '1.13.0'.freeze unless defined? Xcodeproj::VERSION
5
5
  end
@@ -301,6 +301,10 @@ module Xcodeproj
301
301
  #
302
302
  attribute :show_env_vars_in_log, String
303
303
 
304
+ # @return [String] the discovered dependency file to use.
305
+ #
306
+ attribute :dependency_file, String
307
+
304
308
  # @return [Hash{String => Hash}] A hash suitable to display the build
305
309
  # phase to the user.
306
310
  #
@@ -56,6 +56,13 @@ module Xcodeproj
56
56
  #
57
57
  attribute :output_files_compiler_flags, Array
58
58
 
59
+ # @return [String] whether the rule should be run once per architecture.
60
+ #
61
+ # @example
62
+ # `0`.
63
+ #
64
+ attribute :run_once_per_architecture, String
65
+
59
66
  # @return [String] the content of the script to use for the build rule.
60
67
  #
61
68
  # @note This attribute is present if the #{#compiler_spec} is
@@ -42,7 +42,7 @@ module Xcodeproj
42
42
 
43
43
  # @return [Array<String>] the list of known regions.
44
44
  #
45
- attribute :known_regions, Array, ['en']
45
+ attribute :known_regions, Array, %w(en Base)
46
46
 
47
47
  # @return [PBXGroup] the main group of the project. The one displayed
48
48
  # by Xcode in the Project Navigator.
@@ -30,6 +30,10 @@ module Xcodeproj
30
30
  #
31
31
  attribute :platform_filter, String
32
32
 
33
+ # @return [String] the product reference for this target dependency.
34
+ #
35
+ attribute :product_ref, String
36
+
33
37
  public
34
38
 
35
39
  # @!group AbstractObject Hooks
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xcodeproj
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.12.0
4
+ version: 1.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eloy Duran
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-08-02 00:00:00.000000000 Z
11
+ date: 2019-10-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: atomos
@@ -183,7 +183,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
183
183
  - !ruby/object:Gem::Version
184
184
  version: '0'
185
185
  requirements: []
186
- rubygems_version: 3.0.3
186
+ rubygems_version: 3.0.4
187
187
  signing_key:
188
188
  specification_version: 3
189
189
  summary: Create and modify Xcode projects from Ruby.