Module: Behance::Client::Wips
- Included in:
- Behance::Client
- Defined in:
- lib/behance/wips.rb
Instance Method Summary collapse
-
#wip(wip_id) ⇒ Object
Public: Get information about a work in progress.
-
#wip_revision(wip_id, revision_id) ⇒ Object
Public: Get information and contents of a revision of a work in progress.
-
#wip_revision_comments(wip_id, revision_id, options = {}) ⇒ Object
Public: Get comments on a revision of a work in progress.
-
#wips(options = {}) ⇒ Object
Public: Search for works-in-progress.
Instance Method Details
#wip(wip_id) ⇒ Object
Public: Get information about a work in progress.
wip_id - The ID (Integer) of a wip.
Examples
@client.wip(69)
Returns a wip in JSON format.
36 37 38 |
# File 'lib/behance/wips.rb', line 36 def wip(wip_id) request("wips/#{wip_id}")["wip"] end |
#wip_revision(wip_id, revision_id) ⇒ Object
Public: Get information and contents of a revision of a work in progress.
wip_id - The ID (Integer) from the work in progress to look for. revision_id - The ID (Integer) from the revision to look for.
Examples
@client.wip_revision(69, 133)
Returns a work-in-progress revision in JSON format.
51 52 53 |
# File 'lib/behance/wips.rb', line 51 def wip_revision(wip_id, revision_id) request("wips/#{wip_id}/#{revision_id}")["revision"] end |
#wip_revision_comments(wip_id, revision_id, options = {}) ⇒ Object
Public: Get comments on a revision of a work in progress.
wip_id - The ID (Integer) from the work in progress
to look for.
revision_id - The ID (Integer) from the revision to look
for.
options - The Hash with options that the API would expect:
:page - The page number of the results, always starting
with 1.
Examples
@client.wip_revision_comments(69, 133)
Returns a work-in-progress revision comments in JSON format.
70 71 72 |
# File 'lib/behance/wips.rb', line 70 def wip_revision_comments(wip_id, revision_id, ={}) request("wips/#{wip_id}/#{revision_id}/comments", )["comments"] end |
#wips(options = {}) ⇒ Object
Public: Search for works-in-progress.
options - The Hash with options that the API would expect:
:q - Free text query string.
:page - The page number of the results, always starting
with 1.
:sort - The order the results are returned in.
Possible values: comments (default), views,
last_item_added_date.
:time - Limits the search by time.
Possible values: all, today (default), week, month.
Examples
@client.wips
@client.wips(time: "today", page: 2)
Returns a Hash of wips in JSON format.
23 24 25 |
# File 'lib/behance/wips.rb', line 23 def wips(={}) request("wips", )["wips"] end |