Module: Pixiv

Defined in:
lib/pixiv.rb,
lib/pixiv/page.rb,
lib/pixiv/error.rb,
lib/pixiv/client.rb,
lib/pixiv/illust.rb,
lib/pixiv/member.rb,
lib/pixiv/version.rb,
lib/pixiv/work_list.rb,
lib/pixiv/illust_list.rb,
lib/pixiv/bookmark_list.rb,
lib/pixiv/page_collection.rb,
lib/pixiv/owned_illust_list.rb,
lib/pixiv/search_result_list.rb

Defined Under Namespace

Modules: PageCollection Classes: BookmarkList, Client, DownloadActionRegistry, Error, Illust, IllustList, Member, OwnedIllustList, Page, PrivateBookmarkList, SearchResultList, WorkList

Constant Summary collapse

ROOT_URL =
'http://www.pixiv.net'
VERSION =
"0.0.9"

Class Method Summary collapse

Class Method Details

.client(*args, &block) ⇒ Pixiv::Client

Returns:



28
29
30
# File 'lib/pixiv.rb', line 28

def self.client(*args, &block)
  Pixiv::Client.new(*args, &block)
end

.new(*args, &block) ⇒ Object

Deprecated.

Use client instead. Will be removed in 0.1.0.

Delegates to Pixiv::Client#initialize



22
23
24
# File 'lib/pixiv.rb', line 22

def self.new(*args, &block)
  Pixiv::Client.new(*args, &block)
end