xcodeproj 0.4.0.rc8 → 0.4.0.rc9
Sign up to get free protection for your applications and to get access to all the features.
data/lib/xcodeproj.rb
CHANGED
@@ -90,6 +90,12 @@ module Xcodeproj
|
|
90
90
|
#
|
91
91
|
attribute :line_ending, String
|
92
92
|
|
93
|
+
# @return [String] Comments associated with this file.
|
94
|
+
#
|
95
|
+
# This is apperantly no longer used by Xcode.
|
96
|
+
#
|
97
|
+
attribute :comments, String
|
98
|
+
|
93
99
|
## CONVENIENCE METHODS #################################################
|
94
100
|
|
95
101
|
# @!group Convenience methods
|
@@ -12,11 +12,19 @@ module Xcodeproj
|
|
12
12
|
has_one :target, AbstractTarget
|
13
13
|
|
14
14
|
# @return [PBXContainerItemProxy] a proxy for the target that needs to
|
15
|
-
# be built.
|
16
|
-
#
|
15
|
+
# be built.
|
16
|
+
#
|
17
|
+
# Apparently to support targets in other projects of the same
|
18
|
+
# workspace.
|
17
19
|
#
|
18
20
|
has_one :targetProxy, PBXContainerItemProxy
|
19
21
|
|
22
|
+
# @return [String] the name of the target.
|
23
|
+
#
|
24
|
+
# This seems only to be used when the target dependency is a target
|
25
|
+
# from a nested Xcode project.
|
26
|
+
#
|
27
|
+
attribute :name, String
|
20
28
|
end
|
21
29
|
end
|
22
30
|
end
|
metadata
CHANGED
@@ -1,64 +1,58 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: xcodeproj
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.4.0.rc9
|
5
5
|
prerelease: 6
|
6
|
-
segments:
|
7
|
-
- 0
|
8
|
-
- 4
|
9
|
-
- 0
|
10
|
-
- rc
|
11
|
-
- 8
|
12
|
-
version: 0.4.0.rc8
|
13
6
|
platform: ruby
|
14
|
-
authors:
|
7
|
+
authors:
|
15
8
|
- Eloy Duran
|
16
9
|
autorequire:
|
17
10
|
bindir: bin
|
18
11
|
cert_chain: []
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
- !ruby/object:Gem::Dependency
|
12
|
+
date: 2012-11-06 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
23
15
|
name: activesupport
|
24
|
-
|
25
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
26
17
|
none: false
|
27
|
-
requirements:
|
18
|
+
requirements:
|
28
19
|
- - ~>
|
29
|
-
- !ruby/object:Gem::Version
|
30
|
-
hash: 3
|
31
|
-
segments:
|
32
|
-
- 3
|
33
|
-
- 2
|
34
|
-
- 6
|
20
|
+
- !ruby/object:Gem::Version
|
35
21
|
version: 3.2.6
|
36
22
|
type: :runtime
|
37
|
-
version_requirements: *id001
|
38
|
-
- !ruby/object:Gem::Dependency
|
39
|
-
name: colored
|
40
23
|
prerelease: false
|
41
|
-
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
42
25
|
none: false
|
43
|
-
requirements:
|
26
|
+
requirements:
|
44
27
|
- - ~>
|
45
|
-
- !ruby/object:Gem::Version
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 3.2.6
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: colored
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ~>
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '1.2'
|
51
38
|
type: :runtime
|
52
|
-
|
53
|
-
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ~>
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '1.2'
|
46
|
+
description: Xcodeproj lets you create and modify Xcode projects from Ruby. Script
|
47
|
+
boring management tasks or build Xcode-friendly libraries. Also includes support
|
48
|
+
for Xcode workspaces (.xcworkspace) and configuration files (.xcconfig).
|
54
49
|
email: eloy.de.enige@gmail.com
|
55
|
-
executables:
|
50
|
+
executables:
|
56
51
|
- xcodeproj
|
57
|
-
extensions:
|
52
|
+
extensions:
|
58
53
|
- ext/xcodeproj/extconf.rb
|
59
54
|
extra_rdoc_files: []
|
60
|
-
|
61
|
-
files:
|
55
|
+
files:
|
62
56
|
- lib/xcodeproj/command/project_diff.rb
|
63
57
|
- lib/xcodeproj/command/show.rb
|
64
58
|
- lib/xcodeproj/command/target_diff.rb
|
@@ -93,39 +87,30 @@ files:
|
|
93
87
|
- LICENSE
|
94
88
|
- bin/xcodeproj
|
95
89
|
homepage: https://github.com/cocoapods/xcodeproj
|
96
|
-
licenses:
|
90
|
+
licenses:
|
97
91
|
- MIT
|
98
92
|
post_install_message:
|
99
93
|
rdoc_options: []
|
100
|
-
|
101
|
-
require_paths:
|
94
|
+
require_paths:
|
102
95
|
- ext
|
103
96
|
- lib
|
104
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
97
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
105
98
|
none: false
|
106
|
-
requirements:
|
107
|
-
- -
|
108
|
-
- !ruby/object:Gem::Version
|
109
|
-
|
110
|
-
|
111
|
-
- 0
|
112
|
-
version: "0"
|
113
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - ! '>='
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: '0'
|
103
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
114
104
|
none: false
|
115
|
-
requirements:
|
116
|
-
- -
|
117
|
-
- !ruby/object:Gem::Version
|
118
|
-
|
119
|
-
segments:
|
120
|
-
- 0
|
121
|
-
version: "0"
|
105
|
+
requirements:
|
106
|
+
- - ! '>='
|
107
|
+
- !ruby/object:Gem::Version
|
108
|
+
version: '0'
|
122
109
|
requirements: []
|
123
|
-
|
124
110
|
rubyforge_project:
|
125
|
-
rubygems_version: 1.8.
|
111
|
+
rubygems_version: 1.8.23
|
126
112
|
signing_key:
|
127
113
|
specification_version: 3
|
128
114
|
summary: Create and modify Xcode projects from Ruby.
|
129
115
|
test_files: []
|
130
|
-
|
131
116
|
has_rdoc:
|