Showing with 4 additions and 8 deletions.
  1. +2 −2 lib/xcodeproj.rb
  2. +2 −2 lib/xcodeproj/project.rb
  3. +0 −4 lib/xcodeproj/project/object/configuration.rb
@@ -1,6 +1,6 @@
module Xcodeproj
VERSION = '0.2.1'
VERSION = '0.2.2'

autoload :Config, 'xcodeproj/config'
autoload :Project, 'xcodeproj/project'
autoload :Workspace, 'xcodeproj/workspace'
@@ -180,8 +180,8 @@ def add_system_framework(name)
end
end

# @return [PBXObjectList<XCBuildConfiguration] A list of project wide
# build configurations.
# @return [PBXObjectList<XCBuildConfiguration>] A list of project wide
# build configurations.
def build_configurations
root_object.build_configuration_list.build_configurations
end
@@ -13,9 +13,6 @@ class XCBuildConfiguration < AbstractPBXObject
'ALWAYS_SEARCH_USER_PATHS' => 'NO',
'GCC_C_LANGUAGE_STANDARD' => 'gnu99',
'INSTALL_PATH' => "$(BUILT_PRODUCTS_DIR)",
'GCC_WARN_ABOUT_MISSING_PROTOTYPES' => 'YES',
'GCC_WARN_ABOUT_RETURN_TYPE' => 'YES',
'GCC_WARN_UNUSED_VARIABLE' => 'YES',
'OTHER_LDFLAGS' => '',
'COPY_PHASE_STRIP' => 'YES',
}.freeze,
@@ -35,7 +32,6 @@ class XCBuildConfiguration < AbstractPBXObject
:osx => {
'ARCHS' => "$(ARCHS_STANDARD_64_BIT)",
'GCC_ENABLE_OBJC_EXCEPTIONS' => 'YES',
'GCC_WARN_64_TO_32_BIT_CONVERSION' => 'YES',
'GCC_VERSION' => 'com.apple.compilers.llvm.clang.1_0',
'MACOSX_DEPLOYMENT_TARGET' => '10.7',
'SDKROOT' => 'macosx',