readernaut 0.1.1 → 0.1.2
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/Rakefile +1 -1
- data/VERSION +1 -1
- data/readernaut.gemspec +72 -0
- metadata +3 -2
data/Rakefile
CHANGED
@@ -6,7 +6,7 @@ begin
|
|
6
6
|
Jeweler::Tasks.new do |gem|
|
7
7
|
gem.name = "readernaut"
|
8
8
|
gem.summary = %Q{Wrapper for the Readernaut API}
|
9
|
-
gem.description = %Q{
|
9
|
+
gem.description = %Q{Wrapper for Readernaut, the best book social network around}
|
10
10
|
gem.email = "wynn.netherland@gmail.com"
|
11
11
|
gem.homepage = "http://github.com/pengwynn/readernaut"
|
12
12
|
gem.authors = ["Wynn Netherland"]
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.2
|
data/readernaut.gemspec
ADDED
@@ -0,0 +1,72 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{readernaut}
|
8
|
+
s.version = "0.1.2"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Wynn Netherland"]
|
12
|
+
s.date = %q{2009-11-14}
|
13
|
+
s.description = %q{Wrapper for Readernaut, the best book social network around}
|
14
|
+
s.email = %q{wynn.netherland@gmail.com}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE",
|
17
|
+
"README.rdoc"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".document",
|
21
|
+
".gitignore",
|
22
|
+
"LICENSE",
|
23
|
+
"README.rdoc",
|
24
|
+
"Rakefile",
|
25
|
+
"VERSION",
|
26
|
+
"lib/readernaut.rb",
|
27
|
+
"readernaut.gemspec",
|
28
|
+
"test/fixtures/books.json",
|
29
|
+
"test/fixtures/contacts.json",
|
30
|
+
"test/fixtures/notes.json",
|
31
|
+
"test/helper.rb",
|
32
|
+
"test/test_readernaut.rb"
|
33
|
+
]
|
34
|
+
s.homepage = %q{http://github.com/pengwynn/readernaut}
|
35
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
36
|
+
s.require_paths = ["lib"]
|
37
|
+
s.rubygems_version = %q{1.3.5}
|
38
|
+
s.summary = %q{Wrapper for the Readernaut API}
|
39
|
+
s.test_files = [
|
40
|
+
"test/helper.rb",
|
41
|
+
"test/test_readernaut.rb"
|
42
|
+
]
|
43
|
+
|
44
|
+
if s.respond_to? :specification_version then
|
45
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
46
|
+
s.specification_version = 3
|
47
|
+
|
48
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
49
|
+
s.add_runtime_dependency(%q<mash>, ["~> 0.0.3"])
|
50
|
+
s.add_runtime_dependency(%q<httparty>, ["~> 0.4.3"])
|
51
|
+
s.add_development_dependency(%q<shoulda>, [">= 2.10.1"])
|
52
|
+
s.add_development_dependency(%q<jnunemaker-matchy>, ["= 0.4.0"])
|
53
|
+
s.add_development_dependency(%q<mocha>, ["= 0.9.4"])
|
54
|
+
s.add_development_dependency(%q<fakeweb>, [">= 1.2.5"])
|
55
|
+
else
|
56
|
+
s.add_dependency(%q<mash>, ["~> 0.0.3"])
|
57
|
+
s.add_dependency(%q<httparty>, ["~> 0.4.3"])
|
58
|
+
s.add_dependency(%q<shoulda>, [">= 2.10.1"])
|
59
|
+
s.add_dependency(%q<jnunemaker-matchy>, ["= 0.4.0"])
|
60
|
+
s.add_dependency(%q<mocha>, ["= 0.9.4"])
|
61
|
+
s.add_dependency(%q<fakeweb>, [">= 1.2.5"])
|
62
|
+
end
|
63
|
+
else
|
64
|
+
s.add_dependency(%q<mash>, ["~> 0.0.3"])
|
65
|
+
s.add_dependency(%q<httparty>, ["~> 0.4.3"])
|
66
|
+
s.add_dependency(%q<shoulda>, [">= 2.10.1"])
|
67
|
+
s.add_dependency(%q<jnunemaker-matchy>, ["= 0.4.0"])
|
68
|
+
s.add_dependency(%q<mocha>, ["= 0.9.4"])
|
69
|
+
s.add_dependency(%q<fakeweb>, [">= 1.2.5"])
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: readernaut
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Wynn Netherland
|
@@ -72,7 +72,7 @@ dependencies:
|
|
72
72
|
- !ruby/object:Gem::Version
|
73
73
|
version: 1.2.5
|
74
74
|
version:
|
75
|
-
description:
|
75
|
+
description: Wrapper for Readernaut, the best book social network around
|
76
76
|
email: wynn.netherland@gmail.com
|
77
77
|
executables: []
|
78
78
|
|
@@ -89,6 +89,7 @@ files:
|
|
89
89
|
- Rakefile
|
90
90
|
- VERSION
|
91
91
|
- lib/readernaut.rb
|
92
|
+
- readernaut.gemspec
|
92
93
|
- test/fixtures/books.json
|
93
94
|
- test/fixtures/contacts.json
|
94
95
|
- test/fixtures/notes.json
|