Sha256: 16a08daef5c9e3b3e37c977e884ff7ca0d4f42d718f2cffbffeaab1d43e2a588

Contents?: true

Size: 416 Bytes

Versions: 2

Compression:

Stored size: 416 Bytes

Contents

require "hackernews_api/version"
require 'rest_client'

module HackernewsApi
  API_URL = "https://hacker-news.firebaseio.com"
  API_VERSION = "v0"

  autoload :Client, 'hackernews_api/client'
  autoload :Story,  'hackernews_api/story'
  autoload :Comment,  'hackernews_api/comment'
  autoload :Poll,  'hackernews_api/poll'
  autoload :PollOpt,  'hackernews_api/poll_opt'
  autoload :User,  'hackernews_api/user'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
hackernews_api-0.0.2 lib/hackernews_api.rb
hackernews_api-0.0.1 lib/hackernews_api.rb