Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
cocoapods
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gengmeiios
cocoapods
Commits
75bc9267
Commit
75bc9267
authored
May 27, 2013
by
Eloy Durán
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1071 from orta/master
Englisherizer - fix a single case of imperfect english
parents
6c568711
2672f3f9
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
user_project_integrator.rb
lib/cocoapods/installer/user_project_integrator.rb
+1
-1
user_project_integrator_spec.rb
spec/unit/installer/user_project_integrator_spec.rb
+1
-1
No files found.
lib/cocoapods/installer/user_project_integrator.rb
View file @
75bc9267
...
...
@@ -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 dependenc
y
."
UI
.
warn
"[!] The Podfile does not contain any dependenc
ies
."
end
end
...
...
spec/unit/installer/user_project_integrator_spec.rb
View file @
75bc9267
...
...
@@ -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 dependenc
y
'
)
UI
.
warnings
.
should
.
include?
(
'The Podfile does not contain any dependenc
ies
'
)
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment