quickbase_client 1.0.10 → 1.0.11
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/README.rdoc +2 -0
- data/lib/QuickBaseClient.rb +1 -1
- metadata +3 -5
data/README.rdoc
CHANGED
|
@@ -29,6 +29,8 @@ More information about the QuickBase Client is available here -
|
|
|
29
29
|
|
|
30
30
|
== Change History
|
|
31
31
|
|
|
32
|
+
1.0.11 - 05/08/2011 - Fixed a problem with getFilteredRecords().
|
|
33
|
+
|
|
32
34
|
1.0.10 - 03/27/2011 - Can now use require 'quickbase_client' instead of require 'QuickBaseClient'.
|
|
33
35
|
|
|
34
36
|
1.0.9 - 03/26/2011 - Added aliases, getCSVForReport(), makeCSVFileForReport(), getCriteriaForQuery().
|
data/lib/QuickBaseClient.rb
CHANGED
|
@@ -3441,7 +3441,7 @@ class Client
|
|
|
3441
3441
|
# e.g. getFilteredRecords( "dhnju5y7", [{"Name" => "[A-E].+}","Address"] ) { |values| puts values["Name"], values["Address"] }
|
|
3442
3442
|
def getFilteredRecords( dbid, fieldNames, query = nil, qid = nil, qname = nil, clist = nil, slist = nil, fmt = "structured", options = nil )
|
|
3443
3443
|
filteredRecords = []
|
|
3444
|
-
iterateFilteredRecords(dbid, fieldNames, query, qid, qname, clist, slist, fmt
|
|
3444
|
+
iterateFilteredRecords(dbid, fieldNames, query, qid, qname, clist, slist, fmt, options){ |filteredRecord|
|
|
3445
3445
|
filteredRecords << filteredRecord
|
|
3446
3446
|
}
|
|
3447
3447
|
filteredRecords
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: quickbase_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.11
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,8 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2011-
|
|
13
|
-
default_executable:
|
|
12
|
+
date: 2011-05-08 00:00:00.000000000Z
|
|
14
13
|
dependencies: []
|
|
15
14
|
description: Wraps the QuickBase HTTP API and adds classes and methods to minimize
|
|
16
15
|
the amount of code need to get useful things done. This is a minimal subset of the
|
|
@@ -28,7 +27,6 @@ files:
|
|
|
28
27
|
- lib/quickbase_client.rb
|
|
29
28
|
- lib/QuickBaseClient.rb
|
|
30
29
|
- lib/QuickBaseMisc.rb
|
|
31
|
-
has_rdoc: true
|
|
32
30
|
homepage: https://code.intuit.com/sf/projects/ipp_dev_kits
|
|
33
31
|
licenses: []
|
|
34
32
|
post_install_message:
|
|
@@ -57,7 +55,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
57
55
|
version: '0'
|
|
58
56
|
requirements: []
|
|
59
57
|
rubyforge_project: orphans
|
|
60
|
-
rubygems_version: 1.
|
|
58
|
+
rubygems_version: 1.8.1
|
|
61
59
|
signing_key:
|
|
62
60
|
specification_version: 3
|
|
63
61
|
summary: Ruby wrapper for the QuickBase HTTP API. This is a minimal subset of the
|