technekes/alchemy-api-rb

View on GitHub
lib/alchemy-api/keyword_extraction.rb

Summary

Maintainability
A
0 mins
Test Coverage
module AlchemyAPI
  class KeywordExtraction < Base
    Config.add_mode :keyword_extraction, self

    def web_method
      "#{method_prefix}GetRankedKeywords"
    end

    private

    def indexer
      'keywords'
    end
  end
end