papercallio 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0ac872bcd47cc72bc1cc35fdb471dca636bdff1e
4
- data.tar.gz: c0ddb6b1af1fdde6ec7be22bae833428bec7c99f
3
+ metadata.gz: 811972d90041a003df40a660b0dfcb7fc70f3ef6
4
+ data.tar.gz: 5f034b96f11ce571efafa31a02850595c5f2d14c
5
5
  SHA512:
6
- metadata.gz: cc21ad37f445c71498ab232fcb9c9e5ef1cb8015072b30a64ec8767943eae7fd84aaf70f2426d2c4c0ac7df85bde06bfc59bf489f1fb43936dea499ea94ea868
7
- data.tar.gz: 729fc51950a698c56b7dab5e85391a58bdb81f0c22c5bd3302ae2ccaa1c3b5ab05075091b1e1bc10f6a9c422ef15522f3638dd41e1149e26e663604fad021090
6
+ metadata.gz: 6883343b853a23d6124324313db5cb0549ac571a8dfb63f7d06807349b4ca50a2dc22f71e17ac2a4fc12500bca5549bcaabd48203d227adb283c3b1826318e41
7
+ data.tar.gz: 6e8052acc1f84bc5a4b36d55410454c057444c385b6d0f235cc5a7e8459800b41b9904060a1bc781f313164ee07adcbbe28864890d27f2fe02c477dd5522b297
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- papercallio (0.2.0)
4
+ papercallio (0.2.1)
5
5
  gli (= 2.16.0)
6
6
  httparty (~> 0.15)
7
7
 
data/bin/papercallio CHANGED
@@ -20,7 +20,6 @@ program_desc %(Command line interface for the papercall.io API
20
20
  version Papercallio::VERSION
21
21
 
22
22
  api_token = ENV['PAPERCALL_API_TOKEN']
23
- raise 'must set `export PAPERCALL_API_TOKEN=abcdefghijklmnopqrstuvwxyz1234567890` to call the API. See help.' if api_token.nil?
24
23
 
25
24
  subcommand_option_handling :normal
26
25
  arguments :strict
@@ -5,6 +5,7 @@ class PaperCallClient
5
5
  base_uri 'www.papercall.io'
6
6
 
7
7
  def initialize(api_token, query_options)
8
+ raise 'must set `export PAPERCALL_API_TOKEN=abcdefghijklmnopqrstuvwxyz1234567890` to call the API. See help.' if api_token.nil?
8
9
  @query = {
9
10
  # page: page,
10
11
  # TODO: for first iteration, just going to hardcode to 9999
@@ -1,3 +1,3 @@
1
1
  module Papercallio
2
- VERSION = '0.2.0'
2
+ VERSION = '0.2.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: papercallio
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - aaronblythe