xcodeproj 1.23.0 → 1.24.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: 9280a3358b3ab5cb87a7d2a8823d1b2959cb63d7dd01c1af2cd7f2f603a4fc90
4
- data.tar.gz: b902495ad29630ab972e83717ef522f868d28678b519cb5477deff6d94db5b53
3
+ metadata.gz: 1b00b2ee1d752f42e42b42ce2eee72ed67d51d876460d11989d3c10d4d9db7ce
4
+ data.tar.gz: bee25d68cd15f01f8f3d7740e3096d3d3023fed20ad2c14e78fd83cd1c56a3dc
5
5
  SHA512:
6
- metadata.gz: 6058d88e97109756e60077277e1a67eb22f26578987b1666aaede1bbb8222a712e509ce22d4834801e034a3dc733201c7c4eaa1b72b5bc36482f1dab71caee15
7
- data.tar.gz: d87165c6807a48f37bdf045a2d7159410e6c8acc2be39c13db586266110912bce271b0f7f32f8d6e0c27619e60529c1a38a4d1707c40c7efb5327f3bfdcc5af3
6
+ metadata.gz: c26d07901fd197b9bcf2f74aa922316404c9f77f2dc08c78a9ad97d4e2259ef56e38a2e06a25ccb16df9779c55750b23ccf8e6284548cb0ccb461327967cc0bd
7
+ data.tar.gz: 353a4b09236f26a4f5e3f72e5a39e28cf5221beac0bad081a0947169edc7c0a474be8d92083a4c39a8b92663386bc8b4840fc834beab9ec8f5fc5108539cd9e4
@@ -1,5 +1,5 @@
1
1
  module Xcodeproj
2
2
  # The version of the xcodeproj gem.
3
3
  #
4
- VERSION = '1.23.0'.freeze unless defined? Xcodeproj::VERSION
4
+ VERSION = '1.24.0'.freeze unless defined? Xcodeproj::VERSION
5
5
  end
@@ -107,6 +107,14 @@ module Xcodeproj
107
107
  #
108
108
  attribute :line_ending, String
109
109
 
110
+ # @return [String] a string that specifies the signature of an external
111
+ # framework.
112
+ #
113
+ # @example
114
+ # `AppleDeveloperProgram:TEAM0ID1:Team name`
115
+ #
116
+ attribute :expected_signature, String
117
+
110
118
  # @return [String] Comments associated with this file.
111
119
  #
112
120
  # @note This is apparently no longer used by Xcode.
@@ -18,7 +18,7 @@ module Xcodeproj
18
18
  #--------------------------------------#
19
19
 
20
20
  def ascii_plist_annotation
21
- " #{isa} \"#{File.basename(display_name)}\" "
21
+ " #{isa} \"#{File.basename(display_name, '.git')}\" "
22
22
  end
23
23
 
24
24
  # @return [String] the name of the remote Swift package reference.
@@ -80,7 +80,7 @@ module Xcodeproj
80
80
  hash = {}
81
81
  hash['displayName'] = display_name
82
82
  hash['isa'] = isa
83
- hash['targetProxy'] = target_proxy.to_tree_hash
83
+ hash['targetProxy'] = target_proxy.to_tree_hash if target_proxy
84
84
  hash
85
85
  end
86
86
 
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.23.0
4
+ version: 1.24.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: 2023-09-22 00:00:00.000000000 Z
11
+ date: 2024-01-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: atomos
@@ -202,7 +202,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
202
202
  - !ruby/object:Gem::Version
203
203
  version: '0'
204
204
  requirements: []
205
- rubygems_version: 3.1.6
205
+ rubygems_version: 3.2.3
206
206
  signing_key:
207
207
  specification_version: 3
208
208
  summary: Create and modify Xcode projects from Ruby.