mtchavez/al_papi

View on GitHub
lib/al_papi/engines.rb

Summary

Maintainability
A
0 mins
Test Coverage
module AlPapi
  class Engines
    ##
    # Supported engines for Partner API.
    #
    # @return [Array] Supported engines.

    def self.all
      %w[google bing yahoo]
    end
  end
end