advantage_quickbase 0.6.8 → 0.7.0
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/quickbase.rb +2 -2
- metadata +10 -6
data/lib/quickbase.rb
CHANGED
|
@@ -17,6 +17,7 @@ module AdvantageQuickbase
|
|
|
17
17
|
|
|
18
18
|
def initialize( domain, username, password, app_token=nil, ticket=nil)
|
|
19
19
|
@domain = domain
|
|
20
|
+
@app_token = app_token if app_token
|
|
20
21
|
|
|
21
22
|
if username && password #authenticate with username/password
|
|
22
23
|
data = {
|
|
@@ -26,8 +27,7 @@ module AdvantageQuickbase
|
|
|
26
27
|
}
|
|
27
28
|
else #authenticate with existing ticket
|
|
28
29
|
@ticket = ticket if ticket
|
|
29
|
-
|
|
30
|
-
|
|
30
|
+
|
|
31
31
|
data = {}
|
|
32
32
|
end
|
|
33
33
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: advantage_quickbase
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.7.0
|
|
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-
|
|
12
|
+
date: 2014-07-07 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: nokogiri
|
|
16
|
-
requirement:
|
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
19
19
|
- - ! '>='
|
|
@@ -21,7 +21,12 @@ dependencies:
|
|
|
21
21
|
version: '0'
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
|
-
version_requirements:
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
26
|
+
requirements:
|
|
27
|
+
- - ! '>='
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '0'
|
|
25
30
|
description: Fast, concise implementation of select Quickbase API functions
|
|
26
31
|
email: liquid.ise@gmail.com
|
|
27
32
|
executables: []
|
|
@@ -52,9 +57,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
52
57
|
version: '0'
|
|
53
58
|
requirements: []
|
|
54
59
|
rubyforge_project:
|
|
55
|
-
rubygems_version: 1.8.
|
|
60
|
+
rubygems_version: 1.8.25
|
|
56
61
|
signing_key:
|
|
57
62
|
specification_version: 3
|
|
58
63
|
summary: Quickbase API gem
|
|
59
64
|
test_files: []
|
|
60
|
-
has_rdoc:
|