module Raev

Public Class Methods

article(body) click to toggle source
# File lib/raev.rb, line 12
def self.article body
  Raev::Article.new(body)
end
normalize_author(author_name) click to toggle source
# File lib/raev.rb, line 16
def self.normalize_author author_name
  Raev::Author.normalize_name(author_name)
end
url(url) click to toggle source
# File lib/raev.rb, line 8
def self.url url
  Raev::Url.new(url)
end