Sha256: 7f08ccaac23573849ee3c7ad3fabba68aeee32460999b746e112583d721a57a4

Contents?: true

Size: 681 Bytes

Versions: 3

Compression:

Stored size: 681 Bytes

Contents

require 'instapaper/configuration'
require 'instapaper/client'

module Instapaper
  extend Configuration

  # Alias for Instapaper::Client.new
  #
  # @return [Instapaper::Client]
  def self.client(options={})
    Instapaper::Client.new(options)
  end

  # Delegate to Instapaper::Client
  def self.method_missing(method, *args, &block)
    return super unless client.respond_to?(method)
    client.send(method, *args, &block)
  end

  def self.respond_to?(method, include_private = false)
    client.respond_to?(method, include_private) || super(method, include_private)
  end

  # Custom error class for rescuing from all Instapaper errors
  class Error < StandardError; end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
instapaper-0.3.0 lib/instapaper.rb
instapaper-0.2.1 lib/instapaper.rb
instapaper-0.2.0 lib/instapaper.rb