xcodeproj 0.15.0 → 0.15.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/ext/xcodeproj/extconf.rb +6 -0
- data/lib/xcodeproj/constants.rb +1 -0
- data/lib/xcodeproj/gem_version.rb +1 -1
- metadata +3 -18
- data/ext/xcodeproj/prebuilt/universal-darwin12.0-1.8.7/xcodeproj_ext.bundle +0 -0
- data/ext/xcodeproj/prebuilt/universal.x86_64-darwin13-2.0.0/xcodeproj_ext.bundle +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4c7306b07a1e7f470077946696cc3bdc27d29dfd
|
4
|
+
data.tar.gz: c8c3d148270e74a70dc519b314d4e845bd414a91
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dbf1f2db3c0f98c52a1615386043c16ca5c3d08757f732d7f5a2f996d3865f918299498d17b3039970a8f7b84d2d0ec61a9cae03380ed968451c9d81fd842f72
|
7
|
+
data.tar.gz: 745ebf03c5fec70e73a41dbfee0e4df1eeebe9d010e43aa1a95ab2384ab765974d29587f43a0e99990d03c896089fad52a7bcfe6dc165238538467528b2329ba
|
data/README.md
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
# Xcodeproj
|
2
2
|
|
3
3
|
[![Build Status](https://travis-ci.org/CocoaPods/Xcodeproj.svg?branch=master)](https://travis-ci.org/CocoaPods/Xcodeproj)
|
4
|
-
[![Coverage Status](
|
5
|
-
[![Code Climate](
|
4
|
+
[![Coverage Status](https://img.shields.io/coveralls/CocoaPods/Xcodeproj.svg)](https://coveralls.io/r/CocoaPods/Xcodeproj)
|
5
|
+
[![Code Climate](https://img.shields.io/codeclimate/github/CocoaPods/Xcodeproj.svg)](https://codeclimate.com/github/CocoaPods/Xcodeproj)
|
6
6
|
|
7
7
|
Xcodeproj lets you create and modify Xcode projects from [Ruby][ruby].
|
8
8
|
Script boring management tasks or build Xcode-friendly libraries. Also includes
|
data/ext/xcodeproj/extconf.rb
CHANGED
@@ -32,6 +32,12 @@ end
|
|
32
32
|
# in the running system, which is our use case.
|
33
33
|
$LDFLAGS.gsub!(/\s-Z\s/,' ')
|
34
34
|
|
35
|
+
# See https://github.com/CocoaPods/Xcodeproj/issues/137
|
36
|
+
#
|
37
|
+
$ARCH_FLAG ||= ''
|
38
|
+
$ARCH_FLAG << ' -Wno-error=unused-command-line-argument-hard-error-in-future'
|
39
|
+
|
40
|
+
|
35
41
|
unless have_framework('CoreFoundation')
|
36
42
|
if have_library('CoreFoundation')
|
37
43
|
# this is needed for opencflite, assume it's on linux
|
data/lib/xcodeproj/constants.rb
CHANGED
metadata
CHANGED
@@ -1,29 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: xcodeproj
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.15.
|
4
|
+
version: 0.15.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eloy Duran
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-03-
|
11
|
+
date: 2014-03-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
-
- !ruby/object:Gem::Dependency
|
14
|
-
name: rake
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - ">="
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '0'
|
20
|
-
type: :runtime
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
24
|
-
- - ">="
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: '0'
|
27
13
|
- !ruby/object:Gem::Dependency
|
28
14
|
name: activesupport
|
29
15
|
requirement: !ruby/object:Gem::Requirement
|
@@ -67,8 +53,6 @@ files:
|
|
67
53
|
- bin/xcodeproj
|
68
54
|
- ext/xcodeproj/Rakefile
|
69
55
|
- ext/xcodeproj/extconf.rb
|
70
|
-
- ext/xcodeproj/prebuilt/universal-darwin12.0-1.8.7/xcodeproj_ext.bundle
|
71
|
-
- ext/xcodeproj/prebuilt/universal.x86_64-darwin13-2.0.0/xcodeproj_ext.bundle
|
72
56
|
- ext/xcodeproj/xcodeproj_ext.c
|
73
57
|
- lib/xcodeproj.rb
|
74
58
|
- lib/xcodeproj/command.rb
|
@@ -135,3 +119,4 @@ signing_key:
|
|
135
119
|
specification_version: 3
|
136
120
|
summary: Create and modify Xcode projects from Ruby.
|
137
121
|
test_files: []
|
122
|
+
has_rdoc:
|
Binary file
|
Binary file
|