Commit bec926fa authored by Fabio Pelosin's avatar Fabio Pelosin

Minor fixes.

parent 6d4d8127
...@@ -35,7 +35,7 @@ module Pod ...@@ -35,7 +35,7 @@ module Pod
# #
# @return [void] # @return [void]
# #
def install def install!
add_target add_target
add_build_files_to_target add_build_files_to_target
add_file_reference_for_support_files add_file_reference_for_support_files
......
...@@ -76,7 +76,7 @@ module Bacon ...@@ -76,7 +76,7 @@ module Bacon
# #
module TestUnitOutput module TestUnitOutput
def handle_specification(name) def handle_specification(name)
print ':' print Bacon.color(nil, ':')
yield yield
end end
......
...@@ -49,7 +49,7 @@ describe TargetInstaller = Pod::Installer::TargetInstaller do ...@@ -49,7 +49,7 @@ describe TargetInstaller = Pod::Installer::TargetInstaller do
# Prevent raise for missing dummy project. # Prevent raise for missing dummy project.
Pathname.any_instance.stubs(:exist?).returns(true) Pathname.any_instance.stubs(:exist?).returns(true)
@pod.add_file_references_to_project(@project) @pod.add_file_references_to_project(@project)
@installer.install @installer.install!
end end
it 'adds a new static library target to the project' do it 'adds a new static library target to the project' do
......
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