xcodeproj 0.24.2 → 0.24.3
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 +4 -4
- data/lib/xcodeproj/gem_version.rb +1 -1
- data/lib/xcodeproj/plist_helper.rb +5 -1
- metadata +9 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 45749514086eccfd41add94a597a28e8a2df422c
|
|
4
|
+
data.tar.gz: ef49f2cf25c13086e45ce900af380f55f1132c4d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2818dbb5919f5b147fc0f704b18841a83e57078e3232d293a9598b2b799cb92165ae2169becb20bdeb0d3b050bdeb99ce8590bca42152e133b26aa86e6d7eeab
|
|
7
|
+
data.tar.gz: 015dbf4161e72b8f33877035743dac4d59468584aa1e8081021e9a2f0e96201c745d334c3b309ffb83aa5509e740f588e951ba7fc41a9b18b38be8c8862950aa
|
|
@@ -642,10 +642,14 @@ module DevToolsCore
|
|
|
642
642
|
nil
|
|
643
643
|
end
|
|
644
644
|
|
|
645
|
+
# @note The IB frameworks only seem to be necessary on Xcode 7+
|
|
646
|
+
#
|
|
645
647
|
def self.load_xcode_frameworks
|
|
646
648
|
load_xcode_framework('SharedFrameworks/DVTFoundation.framework/DVTFoundation')
|
|
647
649
|
load_xcode_framework('SharedFrameworks/DVTSourceControl.framework/DVTSourceControl')
|
|
648
650
|
load_xcode_framework('SharedFrameworks/CSServiceClient.framework/CSServiceClient')
|
|
651
|
+
load_xcode_framework('Frameworks/IBFoundation.framework/IBFoundation')
|
|
652
|
+
load_xcode_framework('Frameworks/IBAutolayoutFoundation.framework/IBAutolayoutFoundation')
|
|
649
653
|
load_xcode_framework('Frameworks/IDEFoundation.framework/IDEFoundation')
|
|
650
654
|
load_xcode_framework('PlugIns/Xcode3Core.ideplugin/Contents/MacOS/Xcode3Core')
|
|
651
655
|
end
|
|
@@ -699,7 +703,7 @@ module DevToolsCore
|
|
|
699
703
|
def initialize(path)
|
|
700
704
|
DevToolsCore.silence_stderr do
|
|
701
705
|
CoreFoundation.IDEInitialize(1, CoreFoundation::NULL)
|
|
702
|
-
CoreFoundation.XCInitializeCoreIfNeeded(
|
|
706
|
+
CoreFoundation.XCInitializeCoreIfNeeded(0)
|
|
703
707
|
end
|
|
704
708
|
|
|
705
709
|
selector = 'projectWithFile:'
|
metadata
CHANGED
|
@@ -1,41 +1,41 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: xcodeproj
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.24.
|
|
4
|
+
version: 0.24.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eloy Duran
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-06-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- -
|
|
17
|
+
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: '3'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- -
|
|
24
|
+
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '3'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: colored
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
|
-
- - ~>
|
|
31
|
+
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
33
|
version: '1.2'
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
|
-
- - ~>
|
|
38
|
+
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '1.2'
|
|
41
41
|
description: Xcodeproj lets you create and modify Xcode projects from Ruby. Script
|
|
@@ -100,17 +100,17 @@ require_paths:
|
|
|
100
100
|
- lib
|
|
101
101
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
102
102
|
requirements:
|
|
103
|
-
- -
|
|
103
|
+
- - ">="
|
|
104
104
|
- !ruby/object:Gem::Version
|
|
105
105
|
version: 2.0.0
|
|
106
106
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
107
107
|
requirements:
|
|
108
|
-
- -
|
|
108
|
+
- - ">="
|
|
109
109
|
- !ruby/object:Gem::Version
|
|
110
110
|
version: '0'
|
|
111
111
|
requirements: []
|
|
112
112
|
rubyforge_project:
|
|
113
|
-
rubygems_version: 2.4.
|
|
113
|
+
rubygems_version: 2.4.8
|
|
114
114
|
signing_key:
|
|
115
115
|
specification_version: 3
|
|
116
116
|
summary: Create and modify Xcode projects from Ruby.
|