Sha256: a9cfa9b5520841cfc7229b8a84531564b7426b40e93cb226d732ba1473b112e9

Contents?: true

Size: 874 Bytes

Versions: 3

Compression:

Stored size: 874 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 = YAML::load_file('config/config.yml')['topix']
      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 = YAML::load_file('config/config.yml')['twitter']
      JSON.parse(Jkl::get_from(url))["trends"].map{|t| t["name"]}
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
jakal-0.1.9 lib/jkl.rb
jakal-0.1.8 lib/jkl.rb
jakal-0.1.7 lib/jkl.rb