xcodeproj 0.15.1 → 0.15.2

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: 4c7306b07a1e7f470077946696cc3bdc27d29dfd
4
- data.tar.gz: c8c3d148270e74a70dc519b314d4e845bd414a91
3
+ metadata.gz: 21b4141bae0cb1d07156b866de33668fea4fda0d
4
+ data.tar.gz: 95d2669323c5b9f3936722d6563c8e58d8814124
5
5
  SHA512:
6
- metadata.gz: dbf1f2db3c0f98c52a1615386043c16ca5c3d08757f732d7f5a2f996d3865f918299498d17b3039970a8f7b84d2d0ec61a9cae03380ed968451c9d81fd842f72
7
- data.tar.gz: 745ebf03c5fec70e73a41dbfee0e4df1eeebe9d010e43aa1a95ab2384ab765974d29587f43a0e99990d03c896089fad52a7bcfe6dc165238538467528b2329ba
6
+ metadata.gz: 9a14b389fca41f38d389d3b5aec60cc50f6aecbbe922cf019e4792b35f55b4f35775a96da786e4874641692c7d0604a466f4ea921b5b6dc610da39664a9d19a1
7
+ data.tar.gz: 82e745f302e06fec7ee22cd16e44062d914aae102f577945de04db3d02ffdd6620da3fcba911b4a7e9efbf61d682846359833d9b2c7e03851bd6cb1ee5ef5560
@@ -32,11 +32,15 @@ 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
35
+ # Fix Apple's mess. They built Ruby in a custom way that has lead to these
36
+ # options not containing the original commas anymore [1], which when combined
37
+ # with the change they made to clang (in Xcode 5.1) to error out on unrecognized
38
+ # options [2] leads to failing builds.
36
39
  #
37
- $ARCH_FLAG ||= ''
38
- $ARCH_FLAG << ' -Wno-error=unused-command-line-argument-hard-error-in-future'
39
-
40
+ # [1]: https://bugs.ruby-lang.org/issues/9624#note-11
41
+ # [2]: https://developer.apple.com/library/ios/releasenotes/DeveloperTools/RN-Xcode/Introduction/Introduction.html
42
+ $DLDFLAGS.sub!('-undefineddynamic_lookup', '-undefined dynamic_lookup')
43
+ $DLDFLAGS.sub!('-multiply_definedsuppress', '-multiply_defined suppress')
40
44
 
41
45
  unless have_framework('CoreFoundation')
42
46
  if have_library('CoreFoundation')
@@ -1,6 +1,6 @@
1
1
  module Xcodeproj
2
2
  # The version of the xcodeproj gem.
3
3
  #
4
- VERSION = '0.15.1' unless defined? Xcodeproj::VERSION
4
+ VERSION = '0.15.2' unless defined? Xcodeproj::VERSION
5
5
  end
6
6
 
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.15.1
4
+ version: 0.15.2
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.0'
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.0'
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
@@ -48,26 +48,19 @@ extensions:
48
48
  - ext/xcodeproj/Rakefile
49
49
  extra_rdoc_files: []
50
50
  files:
51
- - LICENSE
52
51
  - README.md
53
- - bin/xcodeproj
54
- - ext/xcodeproj/Rakefile
55
- - ext/xcodeproj/extconf.rb
56
- - ext/xcodeproj/xcodeproj_ext.c
57
- - lib/xcodeproj.rb
58
- - lib/xcodeproj/command.rb
52
+ - LICENSE
59
53
  - lib/xcodeproj/command/project_diff.rb
60
54
  - lib/xcodeproj/command/show.rb
61
55
  - lib/xcodeproj/command/sort.rb
62
56
  - lib/xcodeproj/command/target_diff.rb
57
+ - lib/xcodeproj/command.rb
63
58
  - lib/xcodeproj/config.rb
64
59
  - lib/xcodeproj/constants.rb
65
60
  - lib/xcodeproj/differ.rb
66
61
  - lib/xcodeproj/ext.rb
67
62
  - lib/xcodeproj/gem_version.rb
68
63
  - lib/xcodeproj/helper.rb
69
- - lib/xcodeproj/project.rb
70
- - lib/xcodeproj/project/object.rb
71
64
  - lib/xcodeproj/project/object/build_configuration.rb
72
65
  - lib/xcodeproj/project/object/build_file.rb
73
66
  - lib/xcodeproj/project/object/build_phase.rb
@@ -82,39 +75,46 @@ files:
82
75
  - lib/xcodeproj/project/object/reference_proxy.rb
83
76
  - lib/xcodeproj/project/object/root_object.rb
84
77
  - lib/xcodeproj/project/object/target_dependency.rb
78
+ - lib/xcodeproj/project/object.rb
85
79
  - lib/xcodeproj/project/object_attributes.rb
86
80
  - lib/xcodeproj/project/object_dictionary.rb
87
81
  - lib/xcodeproj/project/object_list.rb
88
82
  - lib/xcodeproj/project/project_helper.rb
89
83
  - lib/xcodeproj/project/xcproj_helper.rb
84
+ - lib/xcodeproj/project.rb
90
85
  - lib/xcodeproj/scheme.rb
91
86
  - lib/xcodeproj/user_interface.rb
92
87
  - lib/xcodeproj/workspace.rb
93
88
  - lib/xcodeproj/xcodebuild_helper.rb
89
+ - lib/xcodeproj.rb
90
+ - ext/xcodeproj/Rakefile
91
+ - ext/xcodeproj/extconf.rb
92
+ - ext/xcodeproj/xcodeproj_ext.c
93
+ - bin/xcodeproj
94
94
  homepage: https://github.com/cocoapods/xcodeproj
95
95
  licenses:
96
96
  - MIT
97
97
  metadata: {}
98
98
  post_install_message:
99
99
  rdoc_options:
100
- - "-x"
100
+ - -x
101
101
  - ext/.+\.(o|bundle)
102
102
  require_paths:
103
103
  - ext
104
104
  - lib
105
105
  required_ruby_version: !ruby/object:Gem::Requirement
106
106
  requirements:
107
- - - ">="
107
+ - - '>='
108
108
  - !ruby/object:Gem::Version
109
109
  version: '0'
110
110
  required_rubygems_version: !ruby/object:Gem::Requirement
111
111
  requirements:
112
- - - ">="
112
+ - - '>='
113
113
  - !ruby/object:Gem::Version
114
114
  version: '0'
115
115
  requirements: []
116
116
  rubyforge_project:
117
- rubygems_version: 2.2.2
117
+ rubygems_version: 2.0.3
118
118
  signing_key:
119
119
  specification_version: 3
120
120
  summary: Create and modify Xcode projects from Ruby.