xcodeproj 0.5.0 → 0.5.1
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 +7 -0
- data/README.md +2 -1
- data/lib/xcodeproj/command.rb +1 -1
- data/lib/xcodeproj/constants.rb +2 -2
- data/lib/xcodeproj.rb +1 -1
- metadata +6 -13
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 65b787db6f485f0404121ce0c59468d9c071a36e
|
|
4
|
+
data.tar.gz: 2cbd7259cc2157e1d4539e94efd4af27fa69cccf
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 92f413111a16c1748814acd8195ce47834b1bb6c04ce0985f8badf74ec3b6fc514a8eee195e9dc8bfd2cfa0c7826ff48e156eff0205edac7fff5fbcde9ed2e12
|
|
7
|
+
data.tar.gz: 46a1b9076e112059e30bc82afbc32149d5606342a95f38436149e43fb4fd3cbdab044ce4dcc3c8c2960c678c8b87047e166182d9a445c9519088346475501e1b
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Xcodeproj
|
|
2
2
|
|
|
3
|
-
[](https://travis-ci.org/CocoaPods/Xcodeproj)
|
|
4
4
|
|
|
5
5
|
Xcodeproj lets you create and modify Xcode projects from [Ruby][ruby].
|
|
6
6
|
Script boring management tasks or build Xcode-friendly libraries. Also includes
|
|
@@ -9,6 +9,7 @@ support for Xcode workspaces (.xcworkspace) and configuration files (.xcconfig).
|
|
|
9
9
|
It is used in [CocoaPods](https://github.com/CocoaPods/CocoaPods) to create a
|
|
10
10
|
static library from scratch, for both iOS and OSX.
|
|
11
11
|
|
|
12
|
+
The documentation can be found [here](http://docs.cocoapods.org/xcodeproj/index.html).
|
|
12
13
|
|
|
13
14
|
## Installing Xcodeproj
|
|
14
15
|
|
data/lib/xcodeproj/command.rb
CHANGED
data/lib/xcodeproj/constants.rb
CHANGED
|
@@ -107,8 +107,8 @@ module Xcodeproj
|
|
|
107
107
|
'COPY_PHASE_STRIP' => 'NO',
|
|
108
108
|
}.freeze,
|
|
109
109
|
:release => {
|
|
110
|
-
'OTHER_CFLAGS' => '-DNS_BLOCK_ASSERTIONS=1',
|
|
111
|
-
'OTHER_CPLUSPLUSFLAGS' => '-DNS_BLOCK_ASSERTIONS=1',
|
|
110
|
+
'OTHER_CFLAGS' => ['-DNS_BLOCK_ASSERTIONS=1', "$(inherited)"],
|
|
111
|
+
'OTHER_CPLUSPLUSFLAGS' => ['-DNS_BLOCK_ASSERTIONS=1', "$(inherited)"],
|
|
112
112
|
}.freeze,
|
|
113
113
|
:ios => {
|
|
114
114
|
'ARCHS' => "$(ARCHS_STANDARD_32_BIT)",
|
data/lib/xcodeproj.rb
CHANGED
metadata
CHANGED
|
@@ -1,20 +1,18 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: xcodeproj
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
5
|
-
prerelease:
|
|
4
|
+
version: 0.5.1
|
|
6
5
|
platform: ruby
|
|
7
6
|
authors:
|
|
8
7
|
- Eloy Duran
|
|
9
8
|
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date: 2013-02-
|
|
11
|
+
date: 2013-02-28 00:00:00.000000000 Z
|
|
13
12
|
dependencies:
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
|
15
14
|
name: activesupport
|
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
|
17
|
-
none: false
|
|
18
16
|
requirements:
|
|
19
17
|
- - ~>
|
|
20
18
|
- !ruby/object:Gem::Version
|
|
@@ -22,7 +20,6 @@ dependencies:
|
|
|
22
20
|
type: :runtime
|
|
23
21
|
prerelease: false
|
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
-
none: false
|
|
26
23
|
requirements:
|
|
27
24
|
- - ~>
|
|
28
25
|
- !ruby/object:Gem::Version
|
|
@@ -30,7 +27,6 @@ dependencies:
|
|
|
30
27
|
- !ruby/object:Gem::Dependency
|
|
31
28
|
name: colored
|
|
32
29
|
requirement: !ruby/object:Gem::Requirement
|
|
33
|
-
none: false
|
|
34
30
|
requirements:
|
|
35
31
|
- - ~>
|
|
36
32
|
- !ruby/object:Gem::Version
|
|
@@ -38,7 +34,6 @@ dependencies:
|
|
|
38
34
|
type: :runtime
|
|
39
35
|
prerelease: false
|
|
40
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
41
|
-
none: false
|
|
42
37
|
requirements:
|
|
43
38
|
- - ~>
|
|
44
39
|
- !ruby/object:Gem::Version
|
|
@@ -89,28 +84,26 @@ files:
|
|
|
89
84
|
homepage: https://github.com/cocoapods/xcodeproj
|
|
90
85
|
licenses:
|
|
91
86
|
- MIT
|
|
87
|
+
metadata: {}
|
|
92
88
|
post_install_message:
|
|
93
89
|
rdoc_options: []
|
|
94
90
|
require_paths:
|
|
95
91
|
- ext
|
|
96
92
|
- lib
|
|
97
93
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
98
|
-
none: false
|
|
99
94
|
requirements:
|
|
100
|
-
- -
|
|
95
|
+
- - '>='
|
|
101
96
|
- !ruby/object:Gem::Version
|
|
102
97
|
version: '0'
|
|
103
98
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
104
|
-
none: false
|
|
105
99
|
requirements:
|
|
106
|
-
- -
|
|
100
|
+
- - '>='
|
|
107
101
|
- !ruby/object:Gem::Version
|
|
108
102
|
version: '0'
|
|
109
103
|
requirements: []
|
|
110
104
|
rubyforge_project:
|
|
111
|
-
rubygems_version:
|
|
105
|
+
rubygems_version: 2.0.0
|
|
112
106
|
signing_key:
|
|
113
107
|
specification_version: 3
|
|
114
108
|
summary: Create and modify Xcode projects from Ruby.
|
|
115
109
|
test_files: []
|
|
116
|
-
has_rdoc:
|