quill-api-client 0.1.0 → 0.1.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.
- data/lib/quill/client.rb +1 -2
- data/lib/quill/oauth.rb +1 -1
- metadata +4 -4
data/lib/quill/client.rb
CHANGED
|
@@ -7,7 +7,7 @@ module Quill
|
|
|
7
7
|
|
|
8
8
|
def initialize options = {}
|
|
9
9
|
@config = Configuration.new(options, api_url: 'http://api.quill.org/')
|
|
10
|
-
raise ArgumentError if config.access_token.blank?
|
|
10
|
+
# raise ArgumentError, 'Missing access_token' if config.access_token.blank?
|
|
11
11
|
end
|
|
12
12
|
|
|
13
13
|
def token
|
|
@@ -73,7 +73,6 @@ module Quill
|
|
|
73
73
|
end
|
|
74
74
|
|
|
75
75
|
def check_keys params
|
|
76
|
-
# raise @readonly_attributes.inspect
|
|
77
76
|
invalid_keys = params.stringify_keys.keys - @attributes - @readonly_attributes
|
|
78
77
|
raise InvalidKeys, "Endpoint ##{name} does not support key(s) #{invalid_keys.join(', ')}" unless invalid_keys.empty?
|
|
79
78
|
end
|
data/lib/quill/oauth.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: quill-api-client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,11 +9,11 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2014-02-
|
|
12
|
+
date: 2014-02-10 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: oauth2
|
|
16
|
-
requirement: &
|
|
16
|
+
requirement: &70291084941520 !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
19
19
|
- - ! '>'
|
|
@@ -21,7 +21,7 @@ dependencies:
|
|
|
21
21
|
version: '0'
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
|
-
version_requirements: *
|
|
24
|
+
version_requirements: *70291084941520
|
|
25
25
|
description: Wrapper to Quill API
|
|
26
26
|
email: quinn@tastehoneyco.com
|
|
27
27
|
executables: []
|