factual-api 1.3.7 → 1.3.8
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/CHANGELOG.md +3 -0
- data/README.md +4 -2
- data/lib/factual/api.rb +1 -1
- data/lib/factual/query/facets.rb +1 -1
- data/lib/factual/query/table.rb +1 -1
- metadata +2 -2
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -59,7 +59,7 @@ factual.table("places").select(:name, :website)
|
|
59
59
|
|
60
60
|
`````ruby
|
61
61
|
# Return highly rated U.S. restaurants in Los Angeles with WiFi
|
62
|
-
factual.table("restaurants
|
62
|
+
factual.table("restaurants")
|
63
63
|
.filters({"locality" => "los angeles", "rating" => {"$gte" => 4}, "wifi" => true}).rows
|
64
64
|
````
|
65
65
|
|
@@ -84,7 +84,7 @@ query.first
|
|
84
84
|
|
85
85
|
````ruby
|
86
86
|
# Returns georeferenced attributes generated by Factual
|
87
|
-
query = factual.geopulse(34.06021,-118.41828).select("
|
87
|
+
query = factual.geopulse(34.06021,-118.41828).select("area_statistics", "income", "housing")
|
88
88
|
query.first["income"]
|
89
89
|
````
|
90
90
|
|
@@ -135,6 +135,8 @@ query.total_count
|
|
135
135
|
|
136
136
|
# Where to Get Help
|
137
137
|
|
138
|
+
https://github.com/Factual/factual-ruby-driver/wiki/Debug-and-Support
|
139
|
+
|
138
140
|
If you think you've identified a specific bug in this driver, please file an issue in the github repo. Please be as specific as you can, including:
|
139
141
|
|
140
142
|
* What you did to surface the bug
|
data/lib/factual/api.rb
CHANGED
data/lib/factual/query/facets.rb
CHANGED
data/lib/factual/query/table.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: factual-api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.8
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2013-
|
13
|
+
date: 2013-05-10 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: oauth
|