arcgis-opendata 0.0.6.3 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -5
  3. data/lib/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 213235c7452c6cd390d30d58e0c7c64b96267f3b
4
- data.tar.gz: f09f742bc7fb7523418077aab5a45e670318a85b
3
+ metadata.gz: 60138b05e27da6ae4b594f7e9163ec8948857c67
4
+ data.tar.gz: a2147ca4484465843d83571a59c37f8b44d9bdcd
5
5
  SHA512:
6
- metadata.gz: 82279638b7b0f8565dc794f5bd6891c94e3b5eb95f4239ef772d8fb8cd6c59153041e348daad84f4ad4e8a10b40841050d67a79fe55f3575d87547107ec90f12
7
- data.tar.gz: 43997ddac1798733d28826c58cd895428b4acbd82128fb429c419871b1684f08dbf62fb90e587b1888783bc33447947dda009d51fb2c4f457dd8bf976cb877f6
6
+ metadata.gz: 82ee6831e97d899add047a487b3a91526de3ecfbd85fe3989ef9b58aa7ef9a8a16224fdbf81aeed9b9534467e853f10c019749c2b2f9a63aa577b8f3d7e899e9
7
+ data.tar.gz: d621db0cc6fecaa626bf9e0a9d224d0b1da812a6efa289d526f14c5c1cc1be17b539cbd2710374e3111f65208782aec6cee97838888cc5df19a45ce55ea7f3ca
data/README.md CHANGED
@@ -5,6 +5,7 @@
5
5
  ## TODO
6
6
 
7
7
  - use webmock + vcr or some alternative strategy for mocking http calls
8
+ - add GET requests for groups, sites, organizations, and pages resources
8
9
 
9
10
  ## Installation
10
11
 
@@ -66,7 +67,6 @@ Parameters supported for `dataset_show`
66
67
  | include | String | comma-separate list of resources to 'side-load' | `client#dataset_list(include: 'organizations,sites')` |
67
68
  | fields | nested | allows the client to specify a subset of attributes to be returned by the API | `client#dataset_list(fields: { datasets: 'title,url'})` |
68
69
 
69
-
70
70
  Make queries for datasets
71
71
 
72
72
  ```ruby
@@ -88,9 +88,9 @@ response = client.dataset_show('4df13_11', include: 'organizations,groups')
88
88
 
89
89
  ### Learn how the parameters turn into request urls
90
90
 
91
- If you're curious about how urls are turned into API calls there are public methods that return the urls that would be created
92
- based on the parameters you pass in. I'm a fan of not completely abstracting the underlying API, and I also like urls a lot so
93
- we have these methods to allow developers to learn how urls are constructed.
91
+ If you're curious about how the parameters you pass to `dataset_list` and `dataset_show` are turned into API calls there are public methods that return the urls that
92
+ would be sent based on the parameters you pass in. I'm a fan of not completely obscuring the underlying web API so thera are built-in public methods to learn how
93
+ the parameters turn into request urls. Some examples are below.
94
94
 
95
95
  ```ruby
96
96
  client = Opendata.new('https://opendata.arcgis.com')
@@ -110,7 +110,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
110
110
 
111
111
  ## Contributing
112
112
 
113
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/opendata.
113
+ Bug reports and pull requests are welcome on GitHub at https://github.com/esridc/arcgis-opendata.rb.
114
114
 
115
115
 
116
116
  ## License
data/lib/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Opendata
2
- VERSION = '0.0.6.3'.freeze
2
+ VERSION = '0.0.7'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: arcgis-opendata
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6.3
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexander Harris