xcodeproj 0.2.1 → 0.2.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.
data/lib/xcodeproj.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  module Xcodeproj
2
- VERSION = '0.2.1'
3
-
2
+ VERSION = '0.2.2'
3
+
4
4
  autoload :Config, 'xcodeproj/config'
5
5
  autoload :Project, 'xcodeproj/project'
6
6
  autoload :Workspace, 'xcodeproj/workspace'
@@ -180,8 +180,8 @@ module Xcodeproj
180
180
  end
181
181
  end
182
182
 
183
- # @return [PBXObjectList<XCBuildConfiguration] A list of project wide
184
- # build configurations.
183
+ # @return [PBXObjectList<XCBuildConfiguration>] A list of project wide
184
+ # build configurations.
185
185
  def build_configurations
186
186
  root_object.build_configuration_list.build_configurations
187
187
  end
@@ -13,9 +13,6 @@ module Xcodeproj
13
13
  'ALWAYS_SEARCH_USER_PATHS' => 'NO',
14
14
  'GCC_C_LANGUAGE_STANDARD' => 'gnu99',
15
15
  'INSTALL_PATH' => "$(BUILT_PRODUCTS_DIR)",
16
- 'GCC_WARN_ABOUT_MISSING_PROTOTYPES' => 'YES',
17
- 'GCC_WARN_ABOUT_RETURN_TYPE' => 'YES',
18
- 'GCC_WARN_UNUSED_VARIABLE' => 'YES',
19
16
  'OTHER_LDFLAGS' => '',
20
17
  'COPY_PHASE_STRIP' => 'YES',
21
18
  }.freeze,
@@ -35,7 +32,6 @@ module Xcodeproj
35
32
  :osx => {
36
33
  'ARCHS' => "$(ARCHS_STANDARD_64_BIT)",
37
34
  'GCC_ENABLE_OBJC_EXCEPTIONS' => 'YES',
38
- 'GCC_WARN_64_TO_32_BIT_CONVERSION' => 'YES',
39
35
  'GCC_VERSION' => 'com.apple.compilers.llvm.clang.1_0',
40
36
  'MACOSX_DEPLOYMENT_TARGET' => '10.7',
41
37
  'SDKROOT' => 'macosx',
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.2.1
4
+ version: 0.2.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-07-02 00:00:00.000000000 Z
12
+ date: 2012-07-06 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: Xcodeproj lets you create and modify Xcode projects from Ruby. Script
15
15
  boring management tasks or build Xcode-friendly libraries. Also includes support
@@ -54,6 +54,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
54
54
  - - ! '>='
55
55
  - !ruby/object:Gem::Version
56
56
  version: '0'
57
+ segments:
58
+ - 0
59
+ hash: -1098454866419318314
57
60
  required_rubygems_version: !ruby/object:Gem::Requirement
58
61
  none: false
59
62
  requirements:
@@ -62,7 +65,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
62
65
  version: '0'
63
66
  requirements: []
64
67
  rubyforge_project:
65
- rubygems_version: 1.8.23
68
+ rubygems_version: 1.8.24
66
69
  signing_key:
67
70
  specification_version: 3
68
71
  summary: Create and modify Xcode projects from Ruby.