-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve DESCRIPTION #47
Changes from all commits
23db73c
6b13eeb
2916b7a
ce84fd7
b377cc7
0fe2457
04bb245
cc1ba9f
f4f7beb
bb8123c
2da69f1
4ebbaf6
8c5a9be
5403fdb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,6 @@ RSocrata.Rcheck | |
^.*\.Rproj$ | ||
^\.Rproj\.user$ | ||
.DS_Store | ||
README.md | ||
^\.travis\.yml$ | ||
appveyor.yml | ||
CONTRIBUTING.md |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,6 @@ | |
/.README.md.html | ||
/.settings | ||
/DESCRIPTION.Rcheck | ||
/man | ||
/out | ||
/RCheck | ||
/RSocrata_*.tar.gz | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
Package: RSocrata | ||
Type: Package | ||
Title: Download 'Socrata' Data Sets as R Data Frames | ||
Description: Provides easier interaction with | ||
Socrata open data portals http://dev.socrata.com. | ||
|
@@ -8,18 +9,22 @@ Description: Provides easier interaction with | |
returns an R data frame. | ||
Converts dates to 'POSIX' format. | ||
Manages throttling by 'Socrata'. | ||
Version: 1.6.1-2 | ||
Date: 2015-6-5 | ||
URL: https://github.com/Chicago/RSocrata | ||
BugReports: https://github.com/Chicago/RSocrata/issues | ||
Imports: | ||
httr (>= 0.3), | ||
jsonlite (>= 0.9.14), | ||
mime (>= 0.2), | ||
Version: 1.6.2 | ||
Date: 2015-7-15 | ||
Authors@R: c( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We'll actually change this back to the old |
||
person("Hugh", "Devlin, Ph. D.", role = c("aut")), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Shouldn't we keep the URL and BugReports? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's a specious remove. The lines are "added" (i.e., kept) on lines 29 and 30 in the new file. |
||
person("Tom", "Schenk Jr.", role = c("aut", "cre"), email = "developers@cityofchicago.org"), | ||
person("John", "Malc", email = "cincenko@outlook.com", role = c("ctb"), comment = "@dmpe") | ||
) | ||
Depends: | ||
curl (>= 0.5) | ||
R (>= 3.0.0) | ||
Imports: | ||
httr (>= 1.0.0), | ||
jsonlite (>= 0.9.16), | ||
mime (>= 0.3) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. to check |
||
Suggests: | ||
RUnit | ||
Author: Hugh Devlin, Ph. D. and Tom Schenk, Jr. | ||
Maintainer: Tom Schenk Jr <developers@cityofchicago.org> | ||
testthat (>= 0.10.0), | ||
roxygen2 (>= 4.1.0) | ||
License: MIT + file LICENSE | ||
URL: https://github.com/Chicago/RSocrata | ||
BugReports: https://github.com/Chicago/RSocrata/issues |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,16 @@ | ||
# Generated by roxygen2 (4.1.1): do not edit by hand | ||
|
||
export(fieldName) | ||
export(isFourByFour) | ||
export(ls.socrata) | ||
export(posixify) | ||
export(read.socrata) | ||
export(ls.socrata) | ||
importFrom("httr", "parse_url", "build_url", "http_status", "stop_for_status", "GET", "content") | ||
importFrom("mime", "guess_type") | ||
importFrom("jsonlite", "fromJSON") | ||
import("curl") | ||
export(validateUrl) | ||
importFrom(httr,GET) | ||
importFrom(httr,build_url) | ||
importFrom(httr,content) | ||
importFrom(httr,http_status) | ||
importFrom(httr,parse_url) | ||
importFrom(httr,stop_for_status) | ||
importFrom(jsonlite,fromJSON) | ||
importFrom(mime,guess_type) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
### 1.1 | ||
Add check for valid Socrata resource URL. Add check for supported download file format. Add support for Socrata short dates. | ||
|
||
### 1.2 | ||
Use comma-separated file format for Socrata downloads. | ||
|
||
### 1.3 | ||
* Added support for human-readable URL. Users can now copy and paste URLs of Socrata-hosted datasets, which will be transformed into a valid SoDA API web query. | ||
|
||
* Added additional RUnit tests to validate new functionality. | ||
|
||
### 1.4 | ||
Add json file format for Socrata downloads. Switch to `RJSONIO` from `rjson`. | ||
|
||
### 1.5 Several changes: | ||
|
||
* Swapped to ```jsonlite``` from ```RJSONIO``` | ||
* Added handling for long and short dates | ||
* Added unit test for reading private datasets | ||
|
||
### 1.5.1 | ||
Deprecated ```httr::guess_media()``` and implemented ```mime::guess_type()``` | ||
|
||
### 1.6.0 Several changes: | ||
|
||
* New function, ```ls.socrata``` to list all datasets on a Socrata portal. | ||
* New optional argument, ```app_token```, which lets users supply an API token while using ```read.socrata()``` to minimize throttling. | ||
* Repairs a bug where ```read.socrata``` failed when reading in a date with a column, but there are null values in that column. | ||
* Minor changes to the DESCRIPTION documentation to point users to GitHub for issues and provides new contact information. | ||
|
||
### 1.6.1 Bug fixes: | ||
|
||
* Resolved potential [name collision issue](https://github.com/Chicago/RSocrata/issues/42) | ||
* Cleaned-up documentation with contributor instructions [#23](https://github.com/Chicago/RSocrata/issues/23) and [#28](https://github.com/Chicago/RSocrata/issues/28)) | ||
* Moved test coverage in `RUnit` to `testthat` and implemented code coverage monitoring ([#41](https://github.com/Chicago/RSocrata/issues/41)) | ||
* Clean-up DESCRIPTION ([#40](https://github.com/Chicago/RSocrata/issues/40)) | ||
* Add continuous integration for Windows ([#39](https://github.com/Chicago/RSocrata/issues/39)) | ||
* Migrate Travis-CI to "proper" R YAML ([#46](https://github.com/Chicago/RSocrata/issues/46)) | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is some clever stuff, even if it's no longer necessary