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
d2435f24
Commit
d2435f24
authored
Apr 18, 2012
by
Fabio Pelosin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Pod::Source] Include spec authors in full search
parent
6b826e54
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
source.rb
lib/cocoapods/source.rb
+2
-2
No files found.
lib/cocoapods/source.rb
View file @
d2435f24
...
@@ -24,7 +24,7 @@ module Pod
...
@@ -24,7 +24,7 @@ module Pod
def
search_by_name
(
query
,
full_text_search
)
def
search_by_name
(
query
,
full_text_search
)
result
=
all
.
map
{
|
s
|
s
.
search_by_name
(
query
,
full_text_search
)
}.
flatten
result
=
all
.
map
{
|
s
|
s
.
search_by_name
(
query
,
full_text_search
)
}.
flatten
if
result
.
empty?
if
result
.
empty?
extra
=
", summary, or description"
if
full_text_search
extra
=
",
author,
summary, or description"
if
full_text_search
raise
(
Informative
,
"Unable to find a pod with name"
\
raise
(
Informative
,
"Unable to find a pod with name"
\
"
#{
extra
}
matching `
#{
query
}
'"
)
"
#{
extra
}
matching `
#{
query
}
'"
)
end
end
...
@@ -76,7 +76,7 @@ module Pod
...
@@ -76,7 +76,7 @@ module Pod
pod_sets
.
map
do
|
set
|
pod_sets
.
map
do
|
set
|
text
=
if
full_text_search
text
=
if
full_text_search
s
=
set
.
specification
s
=
set
.
specification
"
#{
s
.
name
}
#{
s
.
summary
}
#{
s
.
description
}
"
"
#{
s
.
name
}
#{
s
.
authors
}
#{
s
.
summary
}
#{
s
.
description
}
"
else
else
set
.
name
set
.
name
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