Sha256: a049e278f3f8d4766fbb14885d77da0fd539cb21bf5b6cade3608fabbe16dbc2

Contents?: true

Size: 449 Bytes

Versions: 1

Compression:

Stored size: 449 Bytes

Contents

# frozen_string_literal: true

module RubyInstagram
  # Wrapper for the Instagram REST API
  #
  # @note All methods have been separated into modules and follow the same grouping used in https://developers.facebook.com/docs/instagram-basic-display-api/reference
  # @see http://instagram.com/developer/
  class Client < API
    Dir[File.expand_path('client/*.rb', __dir__)].each { |f| require f }

    include RubyInstagram::Client::Users
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ruby_instagram-0.1.0 lib/ruby_instagram/client.rb