archivist-client 0.1.2 → 0.1.3
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.
- checksums.yaml +8 -8
- data/README.md +16 -15
- data/lib/archivist-client.rb +2 -0
- data/lib/{archivist.rb → archivist/client.rb} +2 -1
- data/lib/archivist/client/base.rb +1 -1
- data/lib/archivist/client/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
MzY4Y2RkMTIyYjllODFiM2I1MzM2OTQ4NzY4M2VmMGQ2NzcwMTM4MQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ZTAxZTNmNDlkODgwNDZjNzViYjlmNWRlNWUwYjkyODVhYjEwZjJlYw==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
OGM4NmFhN2YyOWJkZDEyOWU2NWJiZDU4YTEzMTUwOTA3YWQ5Zjc1NmE5MWI0
|
|
10
|
+
OGE1ZTAxODJhMmM4MGYyOWExYWM0NDJkYmVhYmUxNDNlMDRkNmY3ZDhjZmMw
|
|
11
|
+
OWNhZDdkMmI0NWNmN2JmMTA1NWU5Mzc5YWZjMDc3ZDQ0ZThiZTE=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZDg4NjEzMDQ3YmI0NmJjYjQzN2NjNWVjYzU0MjRiNmFkMjE3MjAwNzQzZWUw
|
|
14
|
+
NjQwNTZmOTM5ZDU5NGJjYWFlOGFhNzk3MzIzMDhhM2E5NGNlOTU1MjFmNjkw
|
|
15
|
+
MGQ4NjIzNjQ2N2M3MmEwNzljZWUzNWU0NzkyYWVjN2U0MTY0ZDE=
|
data/README.md
CHANGED
|
@@ -5,16 +5,16 @@ an *archive.org* Ruby client
|
|
|
5
5
|
|
|
6
6
|
| Project | Archive::Client |
|
|
7
7
|
|------------------------ | ----------------- |
|
|
8
|
-
| gem name |
|
|
8
|
+
| gem name | archivist-client |
|
|
9
9
|
| license | MIT |
|
|
10
|
-
| moldiness | [](http://stillmaintained.com/wordtreefoundation/archivist-client) |
|
|
11
|
+
| version | [](http://badge.fury.io/rb/archivist-client) |
|
|
12
|
+
| dependencies | [](https://gemnasium.com/wordtreefoundation/archivist-client) |
|
|
13
|
+
| code quality | [](https://codeclimate.com/github/wordtreefoundation/archivist-client) |
|
|
14
|
+
| continuous integration | [](https://travis-ci.org/wordtreefoundation/archivist-client) |
|
|
15
|
+
| test coverage | [](https://coveralls.io/r/wordtreefoundation/archivist-client) |
|
|
16
|
+
| homepage | [https://github.com/wordtreefoundation/archivist-client][homepage] |
|
|
17
|
+
| documentation | [http://rdoc.info/github/wordtreefoundation/archivist-client/frames][documentation] |
|
|
18
18
|
| authors | [Duane Johnson](https://coderbits.com/canadaduane) [](http://coderwall.com/canadaduane) |
|
|
19
19
|
| | [Peter Boling](https://coderbits.com/pboling) [](http://coderwall.com/pboling) |
|
|
20
20
|
|
|
@@ -23,7 +23,7 @@ Getting Started
|
|
|
23
23
|
---------------
|
|
24
24
|
|
|
25
25
|
```ruby
|
|
26
|
-
require '
|
|
26
|
+
require 'archivist/client'
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
Create an Archivist client:
|
|
@@ -45,7 +45,7 @@ end
|
|
|
45
45
|
|
|
46
46
|
## Contributors
|
|
47
47
|
|
|
48
|
-
See the [Network View](https://github.com/wordtreefoundation/
|
|
48
|
+
See the [Network View](https://github.com/wordtreefoundation/archivist-client/network) and the [CHANGELOG](https://github.com/wordtreefoundation/archivist-client/blob/master/CHANGELOG.md)
|
|
49
49
|
|
|
50
50
|
## How you can help!
|
|
51
51
|
|
|
@@ -90,8 +90,9 @@ For example:
|
|
|
90
90
|
|
|
91
91
|
## References
|
|
92
92
|
|
|
93
|
-
* [Source Code](http://github.com/wordtreefoundation/
|
|
93
|
+
* [Source Code](http://github.com/wordtreefoundation/archivist-client)
|
|
94
94
|
* [Release Announcement](http://www.textual-analysis.org/2013/11/archivist/)
|
|
95
|
+
* [The Archivist::Client Blog](http://www.textual-analysis.org/category/archivist/)
|
|
95
96
|
|
|
96
97
|
## Legal
|
|
97
98
|
|
|
@@ -100,8 +101,8 @@ For example:
|
|
|
100
101
|
|
|
101
102
|
[semver]: http://semver.org/
|
|
102
103
|
[pvc]: http://docs.rubygems.org/read/chapter/16#page74
|
|
103
|
-
[documentation]: http://rdoc.info/github/wordtreefoundation/
|
|
104
|
-
[homepage]: https://github.com/wordtreefoundation/
|
|
104
|
+
[documentation]: http://rdoc.info/github/wordtreefoundation/archivist-client/frames
|
|
105
|
+
[homepage]: https://github.com/wordtreefoundation/archivist-client
|
|
105
106
|
|
|
106
|
-
[](https://bitdeli.com/free "Bitdeli Badge")
|
|
107
108
|
|
|
@@ -7,7 +7,7 @@ module Archivist
|
|
|
7
7
|
module Client
|
|
8
8
|
# This is the primary interface of the gem.
|
|
9
9
|
# Example Usage:
|
|
10
|
-
# require '
|
|
10
|
+
# require 'archivist/client'
|
|
11
11
|
# # Create an Archivist client:
|
|
12
12
|
# client = Archivist::Client::Base.new
|
|
13
13
|
# # Search for the books you're interested in:
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: archivist-client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Duane Johnson
|
|
@@ -207,6 +207,7 @@ files:
|
|
|
207
207
|
- lib/archivist/client/base.rb
|
|
208
208
|
- lib/archivist/client/filters.rb
|
|
209
209
|
- lib/archivist/client/version.rb
|
|
210
|
+
- lib/archivist/client.rb
|
|
210
211
|
- lib/archivist/models/body.rb
|
|
211
212
|
- lib/archivist/models/document.rb
|
|
212
213
|
- lib/archivist/models/file_format.rb
|
|
@@ -223,7 +224,7 @@ files:
|
|
|
223
224
|
- lib/archivist/representations/parameters.rb
|
|
224
225
|
- lib/archivist/representations/query_response.rb
|
|
225
226
|
- lib/archivist/representations.rb
|
|
226
|
-
- lib/archivist.rb
|
|
227
|
+
- lib/archivist-client.rb
|
|
227
228
|
- spec/client_spec.rb
|
|
228
229
|
- spec/fixtures/document.json
|
|
229
230
|
- spec/fixtures/download_files.xml
|