openlibrary 0.0.4 → 0.0.5
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 +4 -1
- data/Rakefile +3 -0
- data/lib/openlibrary.rb +5 -0
- data/lib/openlibrary/version.rb +1 -1
- data/openlibrary.gemspec +2 -2
- data/spec/openlibrary_spec.rb +8 -0
- data/spec/spec_helper.rb +8 -0
- metadata +9 -6
data/README.rdoc
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
|
4
4
|
OPENLIBRARY is a simple wrapper for the Openlibrary REST-API.
|
5
5
|
|
6
|
-
For more information on the REST calls, you can view the api
|
6
|
+
For more information on the REST calls, you can view the api documentation at [here](http://openlibrary.org/developers/api).
|
7
7
|
|
8
8
|
|
9
9
|
== Installation
|
@@ -60,3 +60,6 @@ You can also retrieve a book's full metadata details.
|
|
60
60
|
# or an array of authors
|
61
61
|
book_view.authors
|
62
62
|
|
63
|
+
== TO DO
|
64
|
+
|
65
|
+
Write Tests
|
data/Rakefile
CHANGED
data/lib/openlibrary.rb
CHANGED
data/lib/openlibrary/version.rb
CHANGED
data/openlibrary.gemspec
CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |s|
|
|
8
8
|
s.authors = ["Jay Fajardo"]
|
9
9
|
s.email = ["jmrfajardo@gmail.com"]
|
10
10
|
s.homepage = "http://www.proudcloud.net"
|
11
|
-
s.summary = %q{Ruby Interface for the
|
12
|
-
s.description = %q{
|
11
|
+
s.summary = %q{Ruby Interface for the Openlibrary.org API}
|
12
|
+
s.description = %q{Openlibrary.oeg API Interface}
|
13
13
|
|
14
14
|
s.rubyforge_project = "openlibrary"
|
15
15
|
|
data/spec/spec_helper.rb
ADDED
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: openlibrary
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.0.
|
5
|
+
version: 0.0.5
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Jay Fajardo
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2011-09-
|
13
|
+
date: 2011-09-04 00:00:00 +08:00
|
14
14
|
default_executable:
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
@@ -46,7 +46,7 @@ dependencies:
|
|
46
46
|
version: "0"
|
47
47
|
type: :runtime
|
48
48
|
version_requirements: *id003
|
49
|
-
description:
|
49
|
+
description: Openlibrary.oeg API Interface
|
50
50
|
email:
|
51
51
|
- jmrfajardo@gmail.com
|
52
52
|
executables: []
|
@@ -66,6 +66,8 @@ files:
|
|
66
66
|
- lib/openlibrary/version.rb
|
67
67
|
- lib/openlibrary/view.rb
|
68
68
|
- openlibrary.gemspec
|
69
|
+
- spec/openlibrary_spec.rb
|
70
|
+
- spec/spec_helper.rb
|
69
71
|
has_rdoc: true
|
70
72
|
homepage: http://www.proudcloud.net
|
71
73
|
licenses: []
|
@@ -93,6 +95,7 @@ rubyforge_project: openlibrary
|
|
93
95
|
rubygems_version: 1.6.2
|
94
96
|
signing_key:
|
95
97
|
specification_version: 3
|
96
|
-
summary: Ruby Interface for the
|
97
|
-
test_files:
|
98
|
-
|
98
|
+
summary: Ruby Interface for the Openlibrary.org API
|
99
|
+
test_files:
|
100
|
+
- spec/openlibrary_spec.rb
|
101
|
+
- spec/spec_helper.rb
|