module Hatefreeweb

Constants

VERSION

Public Class Methods

api_key() click to toggle source

Get your API key from www.hatefreeweb.org

# File lib/hatefreeweb.rb, line 12
def self.api_key
  raise APIKeyNotSet if @api_key.nil?
  @api_key
end
api_key=(api_key) click to toggle source
# File lib/hatefreeweb.rb, line 17
def self.api_key=(api_key)
  @api_key = api_key
end