Sha256: 3a6bdadaa2064cb2ce07f66ab19d65cad0429ac498dd829ad2d493a280dbdd41

Contents?: true

Size: 855 Bytes

Versions: 2

Compression:

Stored size: 855 Bytes

Contents

$:.unshift(File.dirname(__FILE__)) unless
  $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))

require "jkl/rss_client"
require "jkl/rest_client"
require "jkl/calais_client"
require "jkl/text_client"

module Jkl
  class << self
    
    def links(feed)
      links = Jkl::Rss::links(Jkl::Rss::items(Jkl::get_xml_from(feed)))
      links.each do |link|
        yield link if block_given?
      end
    end
    
    def topix_links(keyphrase, url = "http://www.topix.net/rss/search/article?q=")
      links("#{url}#{keyphrase}")
    end
    
    def tags(key, link)
      text = Jkl::Text::sanitize(Jkl::get_from(link))
      Jkl::Extraction::tags(key, text)
    end

    def trends(url = "http://search.twitter.com/trends.json")
      JSON.parse(Jkl::get_from(url))["trends"].map{|t| t["name"]}
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
jakal-0.1.96 lib/jkl.rb
jakal-0.1.95 lib/jkl.rb