subscriptions: Subscriptions

Description Usage Arguments Examples

Description

Subscriptions

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
lio_subscriptions(key = NULL, ...)

lio_subscribed(platform, name, key = NULL, ...)

lio_subscribe(platform, name, include_prerelease = FALSE, key = NULL, ...)

lio_subscription_update(
  platform,
  name,
  include_prerelease = FALSE,
  key = NULL,
  ...
)

lio_subscription_delete(platform, name, key = NULL, ...)

Arguments

key

your Libraries.io API key. See Auth section in rbraries manual file. optional

...

curl options passed on to HttpClient

platform

(character) a platform. required

name

(character) a project name. required

include_prerelease

(logical) include prerelease? default: FALSE

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
## Not run: 
# authenticated user Libraries.io subscriptions
lio_subscriptions()

# check if you are subscribed to a project
lio_subscribed("rubygems", "webmock")

# subscribe to a project
lio_subscribe(platform = "rubygems", name = "webmock")

# update subscription to a project
lio_subscription_update("rubygems", "webmock")

# delete subscription to a project
lio_subscription_delete("rubygems", "webmock")

## End(Not run)

rbraries documentation built on March 18, 2020, 5:09 p.m.