xcodeproj 0.3.1 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- data/ext/xcodeproj/extconf.rb +1 -1
- data/ext/xcodeproj/xcodeproj_ext.c +2 -0
- data/lib/xcodeproj.rb +1 -1
- metadata +35 -50
data/ext/xcodeproj/extconf.rb
CHANGED
@@ -37,7 +37,7 @@ end
|
|
37
37
|
have_header 'CoreFoundation/CoreFoundation.h'
|
38
38
|
have_header 'CoreFoundation/CFStream.h'
|
39
39
|
have_header 'CoreFoundation/CFPropertyList.h'
|
40
|
-
have_header 'ruby/st.h'
|
40
|
+
have_header 'ruby/st.h' or have_header 'st.h' or abort 'xcodeproj currently requires the (ruby/)st.h header'
|
41
41
|
|
42
42
|
create_header
|
43
43
|
create_makefile 'xcodeproj_ext'
|
data/lib/xcodeproj.rb
CHANGED
metadata
CHANGED
@@ -1,47 +1,41 @@
|
|
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.3.2
|
5
5
|
prerelease:
|
6
|
-
segments:
|
7
|
-
- 0
|
8
|
-
- 3
|
9
|
-
- 1
|
10
|
-
version: 0.3.1
|
11
6
|
platform: ruby
|
12
|
-
authors:
|
7
|
+
authors:
|
13
8
|
- Eloy Duran
|
14
9
|
autorequire:
|
15
10
|
bindir: bin
|
16
11
|
cert_chain: []
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
- !ruby/object:Gem::Dependency
|
12
|
+
date: 2012-08-22 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
21
15
|
name: activesupport
|
22
|
-
|
23
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
24
17
|
none: false
|
25
|
-
requirements:
|
18
|
+
requirements:
|
26
19
|
- - ~>
|
27
|
-
- !ruby/object:Gem::Version
|
28
|
-
hash: 3
|
29
|
-
segments:
|
30
|
-
- 3
|
31
|
-
- 2
|
32
|
-
- 6
|
20
|
+
- !ruby/object:Gem::Version
|
33
21
|
version: 3.2.6
|
34
22
|
type: :runtime
|
35
|
-
|
36
|
-
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 3.2.6
|
30
|
+
description: Xcodeproj lets you create and modify Xcode projects from Ruby. Script
|
31
|
+
boring management tasks or build Xcode-friendly libraries. Also includes support
|
32
|
+
for Xcode workspaces (.xcworkspace) and configuration files (.xcconfig).
|
37
33
|
email: eloy.de.enige@gmail.com
|
38
34
|
executables: []
|
39
|
-
|
40
|
-
extensions:
|
35
|
+
extensions:
|
41
36
|
- ext/xcodeproj/extconf.rb
|
42
37
|
extra_rdoc_files: []
|
43
|
-
|
44
|
-
files:
|
38
|
+
files:
|
45
39
|
- lib/xcodeproj/config.rb
|
46
40
|
- lib/xcodeproj/project/association/has_many.rb
|
47
41
|
- lib/xcodeproj/project/association/has_one.rb
|
@@ -62,39 +56,30 @@ files:
|
|
62
56
|
- README.md
|
63
57
|
- LICENSE
|
64
58
|
homepage: https://github.com/cocoapods/xcodeproj
|
65
|
-
licenses:
|
59
|
+
licenses:
|
66
60
|
- MIT
|
67
61
|
post_install_message:
|
68
62
|
rdoc_options: []
|
69
|
-
|
70
|
-
require_paths:
|
63
|
+
require_paths:
|
71
64
|
- ext
|
72
65
|
- lib
|
73
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
66
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
74
67
|
none: false
|
75
|
-
requirements:
|
76
|
-
- -
|
77
|
-
- !ruby/object:Gem::Version
|
78
|
-
|
79
|
-
|
80
|
-
- 0
|
81
|
-
version: "0"
|
82
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
68
|
+
requirements:
|
69
|
+
- - ! '>='
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
version: '0'
|
72
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
83
73
|
none: false
|
84
|
-
requirements:
|
85
|
-
- -
|
86
|
-
- !ruby/object:Gem::Version
|
87
|
-
|
88
|
-
segments:
|
89
|
-
- 0
|
90
|
-
version: "0"
|
74
|
+
requirements:
|
75
|
+
- - ! '>='
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '0'
|
91
78
|
requirements: []
|
92
|
-
|
93
79
|
rubyforge_project:
|
94
|
-
rubygems_version: 1.8.
|
80
|
+
rubygems_version: 1.8.23
|
95
81
|
signing_key:
|
96
82
|
specification_version: 3
|
97
83
|
summary: Create and modify Xcode projects from Ruby.
|
98
84
|
test_files: []
|
99
|
-
|
100
85
|
has_rdoc:
|