Commit 35b9250d authored by Eloy Durán's avatar Eloy Durán

Small syntax cleanups.

parent abee9ea6
......@@ -46,7 +46,7 @@ module Pod
# @return [Xcodeproj::Config]
#
def generate
header_search_path_flags = target.sandbox.public_headers.search_paths.map {|path| '-isystem'+path}
header_search_path_flags = target.sandbox.public_headers.search_paths.map { |path| "-isystem #{path}" }
@xcconfig = Xcodeproj::Config.new({
'OTHER_LDFLAGS' => XCConfigHelper.default_ld_flags(target),
'HEADER_SEARCH_PATHS' => XCConfigHelper.quote(target.sandbox.public_headers.search_paths),
......@@ -56,7 +56,7 @@ module Pod
})
target.pod_targets.each do |pod_target|
next unless pod_target.include_in_build_config? @build_config
next unless pod_target.include_in_build_config?(@build_config)
pod_target.file_accessors.each do |file_accessor|
XCConfigHelper.add_spec_build_settings_to_xcconfig(file_accessor.spec_consumer, @xcconfig)
......
......@@ -62,7 +62,7 @@ module Pod
end
it 'adds the sandbox public headers search paths to the xcconfig, with quotes, as system headers' do
expected = "$(inherited) \"-isystem#{config.sandbox.public_headers.search_paths.join('" -isystem"')}\""
expected = "$(inherited) \"-isystem #{config.sandbox.public_headers.search_paths.join('" -isystem "')}\""
@xcconfig.to_hash['OTHER_CFLAGS'].should == expected
end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment