module AsdfDiscover
Namespace for the gem
Constants
- Found
A result that was found.
- TOOL_VERSIONS
- VERSION
Public Class Methods
add_searcher(*searchers)
click to toggle source
# File lib/asdf_discover.rb, line 14 def self.add_searcher(*searchers) @searchers ||= [] @searchers.concat(searchers) end
search()
click to toggle source
# File lib/asdf_discover.rb, line 19 def self.search found = @searchers .map(&:new) .map(&:call) .select(&:found?) SearchResult.new(found) end