Commit d60ec07b authored by Samuel Giddins's avatar Samuel Giddins

[RuboCop] USe single-quoted strings

parent d1c57291
...@@ -414,7 +414,7 @@ module Pod ...@@ -414,7 +414,7 @@ module Pod
'My Awesome Configuration', :release) 'My Awesome Configuration', :release)
settings = configuration.build_settings settings = configuration.build_settings
settings['GCC_PREPROCESSOR_DEFINITIONS'].should == settings['GCC_PREPROCESSOR_DEFINITIONS'].should ==
['POD_CONFIGURATION_MY_AWESOME_CONFIGURATION=1', "$(inherited)"] ['POD_CONFIGURATION_MY_AWESOME_CONFIGURATION=1', '$(inherited)']
end end
it 'transforms camel-cased configuration names to snake case' do it 'transforms camel-cased configuration names to snake case' do
...@@ -422,7 +422,7 @@ module Pod ...@@ -422,7 +422,7 @@ module Pod
'MyAwesomeConfiguration', :release) 'MyAwesomeConfiguration', :release)
settings = configuration.build_settings settings = configuration.build_settings
settings['GCC_PREPROCESSOR_DEFINITIONS'].should == settings['GCC_PREPROCESSOR_DEFINITIONS'].should ==
['POD_CONFIGURATION_MY_AWESOME_CONFIGURATION=1', "$(inherited)"] ['POD_CONFIGURATION_MY_AWESOME_CONFIGURATION=1', '$(inherited)']
end end
it 'adds DEBUG for configurations based upon :debug' do it 'adds DEBUG for configurations based upon :debug' do
...@@ -430,7 +430,7 @@ module Pod ...@@ -430,7 +430,7 @@ module Pod
'Config', :debug) 'Config', :debug)
settings = configuration.build_settings settings = configuration.build_settings
settings['GCC_PREPROCESSOR_DEFINITIONS'].should == settings['GCC_PREPROCESSOR_DEFINITIONS'].should ==
["POD_CONFIGURATION_CONFIG=1", "DEBUG=1", "$(inherited)"] ['POD_CONFIGURATION_CONFIG=1', 'DEBUG=1', '$(inherited)']
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