⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 technorati.rb

📁 用ruby on rails写的一个博客程序,还不错..ruby on rails的确是个好框架
💻 RB
字号:
require 'open-uri'require 'time'require 'rexml/document'class Technorati  include REXML  def choose(num)    return cosmos unless cosmos.size > num    bag = []    set = cosmos.dup    num.times {|x| bag << set.delete_at(rand(set.size))}    bag  end  attr_accessor :url, :link, :title, :cosmos  # This object holds given information of a picture  class Inbound < Struct.new(:link, :title)    def to_s; title end  end  def initialize(url, refresh = true)    self.cosmos  = []    self.url    = url    self.refresh if refresh  end  # This method lets you refresh the tasks int the tasks array  # useful if you keep the object cached in memory and  def refresh    open(@url) do |http|      parse(http.read)    end  endprivate  def parse(body)    xml = Document.new(body)    self.cosmos        = []    XPath.each(xml, "//item/") do |elem|      inbound = Inbound.new      inbound.title       = XPath.match(elem, "title/text()").to_s      inbound.link        = XPath.match(elem, "link/text()").to_s      cosmos << inbound    end  endend

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -