Class: YARD::Server::Commands::SearchCommand
- Inherits:
-
LibraryCommand
- Object
- Base
- LibraryCommand
- YARD::Server::Commands::SearchCommand
- Defined in:
- lib/yard/server/commands/search_command.rb
Overview
Instance Attribute Summary (collapse)
-
- (Object) query
Returns the value of attribute query.
-
- (Object) results
Returns the value of attribute results.
Attributes inherited from LibraryCommand
#incremental, #library, #options, #serializer, #single_library
Attributes inherited from Base
#adapter, #body, #caching, #command_options, #headers, #path, #request, #status
Instance Method Summary (collapse)
Methods inherited from LibraryCommand
Methods inherited from Base
#cache, #call, #initialize, #not_found, #redirect, #render
Constructor Details
This class inherits a constructor from YARD::Server::Commands::LibraryCommand
Instance Attribute Details
- (Object) query
Returns the value of attribute query
5 6 7 |
# File 'lib/yard/server/commands/search_command.rb', line 5 def query @query end |
- (Object) results
Returns the value of attribute results
5 6 7 |
# File 'lib/yard/server/commands/search_command.rb', line 5 def results @results end |
Instance Method Details
- (Object) run
7 8 9 10 11 12 13 14 15 16 |
# File 'lib/yard/server/commands/search_command.rb', line 7 def run Registry.load_all self.query = request.query['q'] redirect("/#{adapter.router.docs_prefix}/#{single_library ? library : ''}") if query =~ /\A\s*\Z/ if found = Registry.at(query) redirect(serializer.serialized_path(found)) end search_for_object request.xhr? ? serve_xhr : serve_normal end |
- (Object) visible_results
18 19 20 |
# File 'lib/yard/server/commands/search_command.rb', line 18 def visible_results results[0, 10] end |