Commit 9b4a7761 authored by Orta Therox's avatar Orta Therox

english fix for 'Podfile does not contain any dependency'

parent e45d24e2
......@@ -128,7 +128,7 @@ module Pod
#
def warn_about_empty_podfile
if podfile.target_definitions.values.all?{ |td| td.empty? }
UI.warn "[!] The Podfile does not contain any dependency."
UI.warn "[!] The Podfile does not contain any dependencies."
end
end
......
......@@ -47,7 +47,7 @@ module Pod
it "warns if the podfile does not contain any dependency" do
Podfile::TargetDefinition.any_instance.stubs(:empty?).returns(true)
@integrator.integrate!
UI.warnings.should.include?('The Podfile does not contain any dependency')
UI.warnings.should.include?('The Podfile does not contain any dependencies')
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