Skip to content

Commit

Permalink
[Style] Write UI messages in gerund
Browse files Browse the repository at this point in the history
  • Loading branch information
mrackwitz committed Dec 25, 2014
1 parent 7e5e4b3 commit 573e026
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -109,7 +109,7 @@ def add_pods_library
old_product_name = target.requires_frameworks? ? target.static_library_name : target.framework_name
old_product_ref = frameworks.files.find { |f| f.path == old_product_name }
if old_product_ref.present?
UI.message("Remove old Pod product reference #{old_product_name} from project.")
UI.message("Removing old Pod product reference #{old_product_name} from project.")
build_phase.remove_file_reference(old_product_ref)
frameworks.remove_reference(old_product_ref)
end
Expand Down Expand Up @@ -139,7 +139,7 @@ def add_embed_frameworks_script_phase
native_targets_to_integrate.each do |native_target|
embed_build_phase = native_target.shell_script_build_phases.find { |bp| bp.name == phase_name }
unless embed_build_phase.present?
UI.message("Add Build Phase '#{phase_name}' to project.")
UI.message("Adding Build Phase '#{phase_name}' to project.")
embed_build_phase = native_target.new_shell_script_build_phase(phase_name)
end
script_path = target.embed_frameworks_script_relative_path
Expand Down

0 comments on commit 573e026

Please sign in to comment.