bin/pickpocket in pick-pocket-0.0.3 vs bin/pickpocket in pick-pocket-0.1.0

- old
+ new

@@ -29,8 +29,14 @@ 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)