technekes/alchemy-api-rb

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

Summary

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

    def web_method
      "#{method_prefix}GetRankedConcepts"
    end

    private

    def indexer
      'concepts'
    end
  end
end