xcodeproj 0.25.0 → 0.25.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3f8b59744123dd288ccf5eed2303ce6e9ff441b6
4
- data.tar.gz: e808faecace05daf138478734b8f737e648eda70
3
+ metadata.gz: 362652d47890e422884822cbddea7e111300f631
4
+ data.tar.gz: 530b5a22dc14ef0af7f4564f57be23cd850c3f4e
5
5
  SHA512:
6
- metadata.gz: 0ac442b8dd9088340357b5d30c1330a6aff37bb63922fe43e1e5d9ab6f8e7fe9fb8fa6766bdcd8494d6ccb310fa3c10afe4c40148a1791546523771468fb1e70
7
- data.tar.gz: dc0cd72c4c6c781c97e327837401b5ee0d66317a61ff7ed8c999a63fe34ea6c3cf77b0824a19a8d695345c16b9fa6c077587e182a96b6f5f5acf9a51c448b59d
6
+ metadata.gz: cb7de4876f0254a035c46d339f084c872a539c38d3dab4f491ad26fb2c2814c85ea997ba0fcb149dbab9b3bf693cfd06cefa99af7fb35337d9ac0eec397986e2
7
+ data.tar.gz: 10195a51baf29a6af0e4daba851e41b5c77a9ce8a452848d176332a1ccff63c723db828a58b3a4f9504328a738c8665daf005ebbb641b2c229d0d53d4c433d45
@@ -51,8 +51,8 @@ module Xcodeproj
51
51
  yaml = value.to_yaml
52
52
  yaml.gsub!(/^---$/, '')
53
53
  yaml.gsub!(/^-/, "\n-")
54
- section << yaml
55
- sections << section
54
+ yaml.prepend(section)
55
+ sections << yaml
56
56
  end
57
57
  puts sections * "\n\n"
58
58
  end
@@ -1,5 +1,5 @@
1
1
  module Xcodeproj
2
2
  # The version of the xcodeproj gem.
3
3
  #
4
- VERSION = '0.25.0' unless defined? Xcodeproj::VERSION
4
+ VERSION = '0.25.1' unless defined? Xcodeproj::VERSION
5
5
  end
@@ -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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xcodeproj
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.25.0
4
+ version: 0.25.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eloy Duran
@@ -14,28 +14,28 @@ dependencies:
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,12 +100,12 @@ 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: []