Sha256: 94ec1a5db61b12f1bf855d570993d03d31e78331fef588b0a0b0b2326788f3be
Contents?: true
Size: 1.04 KB
Versions: 1
Compression:
Stored size: 1.04 KB
Contents
#!/usr/bin/env ruby require 'pickpocket' require 'thor' class PickpocketCLI < Thor package_name 'Pickpocket' desc 'oauth', '1st authorization step: ask Pocket to allow Pickpocket app' def oauth oauth = Pickpocket::Authentication::Oauth.new oauth.request_authorization end desc 'authorize', '2nd authorization step: allow Pickpocket read/write access to your library' def authorize oauth = Pickpocket::Authentication::Oauth.new oauth.authorize end desc 'pick', 'Picks a random article from your library (marking it as read)' def pick library = Pickpocket::Articles::Library.new library.pick end desc 'renew', 'Syncs your local library with your Pocket. It will delete read articles and download new articles from your library' def renew library = Pickpocket::Articles::Library.new library.renew end desc 'stats', 'Show the number of read/unread articles you have on your local library' def stats library = Pickpocket::Articles::Library.new library.stats end end PickpocketCLI.start(ARGV)
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pick-pocket-0.1.2 | bin/pickpocket |