xcodeproj 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/xcodeproj.rb +1 -1
- data/lib/xcodeproj/project/object/group.rb +2 -1
- metadata +13 -7
data/lib/xcodeproj.rb
CHANGED
@@ -105,9 +105,10 @@ module Xcodeproj
|
|
105
105
|
|
106
106
|
attribute :version_group_type
|
107
107
|
attribute :current_version
|
108
|
+
attribute :path
|
108
109
|
|
109
110
|
def self.new_xcdatamodel_group(project, xcdatamodel_path)
|
110
|
-
group = new(project, nil, 'versionGroupType' => 'wrapper.xcdatamodel')
|
111
|
+
group = new(project, nil, 'path' => xcdatamodel_path, 'versionGroupType' => 'wrapper.xcdatamodel')
|
111
112
|
file = group.files.new(
|
112
113
|
'path' => xcdatamodel_path.sub(/xcdatamodeld$/, 'xcdatamodel'),
|
113
114
|
'lastKnownFileType' => 'wrapper.xcdatamodel'
|
metadata
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: xcodeproj
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
hash: 17
|
5
|
+
prerelease:
|
5
6
|
segments:
|
6
7
|
- 0
|
7
8
|
- 3
|
8
|
-
-
|
9
|
-
version: 0.3.
|
9
|
+
- 1
|
10
|
+
version: 0.3.1
|
10
11
|
platform: ruby
|
11
12
|
authors:
|
12
13
|
- Eloy Duran
|
@@ -14,16 +15,17 @@ autorequire:
|
|
14
15
|
bindir: bin
|
15
16
|
cert_chain: []
|
16
17
|
|
17
|
-
date: 2012-07-
|
18
|
-
default_executable:
|
18
|
+
date: 2012-07-16 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: activesupport
|
22
22
|
prerelease: false
|
23
23
|
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
none: false
|
24
25
|
requirements:
|
25
26
|
- - ~>
|
26
27
|
- !ruby/object:Gem::Version
|
28
|
+
hash: 3
|
27
29
|
segments:
|
28
30
|
- 3
|
29
31
|
- 2
|
@@ -59,7 +61,6 @@ files:
|
|
59
61
|
- ext/xcodeproj/xcodeproj_ext.c
|
60
62
|
- README.md
|
61
63
|
- LICENSE
|
62
|
-
has_rdoc: true
|
63
64
|
homepage: https://github.com/cocoapods/xcodeproj
|
64
65
|
licenses:
|
65
66
|
- MIT
|
@@ -70,25 +71,30 @@ require_paths:
|
|
70
71
|
- ext
|
71
72
|
- lib
|
72
73
|
required_ruby_version: !ruby/object:Gem::Requirement
|
74
|
+
none: false
|
73
75
|
requirements:
|
74
76
|
- - ">="
|
75
77
|
- !ruby/object:Gem::Version
|
78
|
+
hash: 3
|
76
79
|
segments:
|
77
80
|
- 0
|
78
81
|
version: "0"
|
79
82
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
83
|
+
none: false
|
80
84
|
requirements:
|
81
85
|
- - ">="
|
82
86
|
- !ruby/object:Gem::Version
|
87
|
+
hash: 3
|
83
88
|
segments:
|
84
89
|
- 0
|
85
90
|
version: "0"
|
86
91
|
requirements: []
|
87
92
|
|
88
93
|
rubyforge_project:
|
89
|
-
rubygems_version: 1.
|
94
|
+
rubygems_version: 1.8.24
|
90
95
|
signing_key:
|
91
96
|
specification_version: 3
|
92
97
|
summary: Create and modify Xcode projects from Ruby.
|
93
98
|
test_files: []
|
94
99
|
|
100
|
+
has_rdoc:
|