Commit ace2bea0 authored by Samuel E. Giddins's avatar Samuel E. Giddins

[RuboCop] Single quotes

parent 8cf537a9
...@@ -42,7 +42,7 @@ module Pod ...@@ -42,7 +42,7 @@ module Pod
# @return [String] # @return [String]
# #
def generate def generate
module_declaration_qualifier = target.requires_frameworks? ? "framework " : "" module_declaration_qualifier = target.requires_frameworks? ? 'framework ' : ''
result = <<-eos.strip_heredoc result = <<-eos.strip_heredoc
#{module_declaration_qualifier}module #{target.product_module_name} { #{module_declaration_qualifier}module #{target.product_module_name} {
umbrella header "#{target.umbrella_header_path.basename}" umbrella header "#{target.umbrella_header_path.basename}"
......
...@@ -192,7 +192,7 @@ module Pod ...@@ -192,7 +192,7 @@ module Pod
def link_module_map def link_module_map
return if target.requires_frameworks? && target.should_build? return if target.requires_frameworks? && target.should_build?
sandbox.public_headers.add_file(target.name, target.module_map_path, "module.modulemap", target.platform) sandbox.public_headers.add_file(target.name, target.module_map_path, 'module.modulemap', target.platform)
end end
# Links a an umbrella header to Public headers. # Links a an umbrella header to Public headers.
......
...@@ -325,7 +325,6 @@ module Pod ...@@ -325,7 +325,6 @@ module Pod
settings['DYLIB_COMPATIBILITY_VERSION'].should == '0.1.2' settings['DYLIB_COMPATIBILITY_VERSION'].should == '0.1.2'
end end
end end
end end
end end
end 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