maddox-newzcache 0.1.0 → 0.1.1
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 +3 -2
- data/VERSION +1 -1
- data/newzcache.gemspec +6 -3
- metadata +15 -4
data/Rakefile
CHANGED
|
@@ -5,12 +5,13 @@ begin
|
|
|
5
5
|
require 'jeweler'
|
|
6
6
|
Jeweler::Tasks.new do |gem|
|
|
7
7
|
gem.name = "newzcache"
|
|
8
|
-
gem.summary = %Q{
|
|
9
|
-
gem.description = %Q{
|
|
8
|
+
gem.summary = %Q{The Newzcache gem lets you talk to Newzcache}
|
|
9
|
+
gem.description = %Q{The Newzcache gem lets you talk to Newzcache}
|
|
10
10
|
gem.email = "jon@jonsthoughtsoneverything.com"
|
|
11
11
|
gem.homepage = "http://github.com/maddox/newzcache"
|
|
12
12
|
gem.authors = ["Jon Maddox"]
|
|
13
13
|
gem.add_development_dependency "thoughtbot-shoulda"
|
|
14
|
+
gem.add_dependency('httparty', '>= 0.4.4')
|
|
14
15
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
|
15
16
|
end
|
|
16
17
|
rescue LoadError
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
data/newzcache.gemspec
CHANGED
|
@@ -5,12 +5,12 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{newzcache}
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.1"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Jon Maddox"]
|
|
12
12
|
s.date = %q{2009-08-28}
|
|
13
|
-
s.description = %q{
|
|
13
|
+
s.description = %q{The Newzcache gem lets you talk to Newzcache}
|
|
14
14
|
s.email = %q{jon@jonsthoughtsoneverything.com}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
16
16
|
"LICENSE",
|
|
@@ -37,7 +37,7 @@ Gem::Specification.new do |s|
|
|
|
37
37
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
38
38
|
s.require_paths = ["lib"]
|
|
39
39
|
s.rubygems_version = %q{1.3.1}
|
|
40
|
-
s.summary = %q{
|
|
40
|
+
s.summary = %q{The Newzcache gem lets you talk to Newzcache}
|
|
41
41
|
s.test_files = [
|
|
42
42
|
"test/newzcache_test.rb",
|
|
43
43
|
"test/test_helper.rb"
|
|
@@ -49,10 +49,13 @@ Gem::Specification.new do |s|
|
|
|
49
49
|
|
|
50
50
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
51
51
|
s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
52
|
+
s.add_runtime_dependency(%q<httparty>, [">= 0.4.4"])
|
|
52
53
|
else
|
|
53
54
|
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
55
|
+
s.add_dependency(%q<httparty>, [">= 0.4.4"])
|
|
54
56
|
end
|
|
55
57
|
else
|
|
56
58
|
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
|
59
|
+
s.add_dependency(%q<httparty>, [">= 0.4.4"])
|
|
57
60
|
end
|
|
58
61
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: maddox-newzcache
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jon Maddox
|
|
@@ -22,7 +22,17 @@ dependencies:
|
|
|
22
22
|
- !ruby/object:Gem::Version
|
|
23
23
|
version: "0"
|
|
24
24
|
version:
|
|
25
|
-
|
|
25
|
+
- !ruby/object:Gem::Dependency
|
|
26
|
+
name: httparty
|
|
27
|
+
type: :runtime
|
|
28
|
+
version_requirement:
|
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: 0.4.4
|
|
34
|
+
version:
|
|
35
|
+
description: The Newzcache gem lets you talk to Newzcache
|
|
26
36
|
email: jon@jonsthoughtsoneverything.com
|
|
27
37
|
executables: []
|
|
28
38
|
|
|
@@ -48,6 +58,7 @@ files:
|
|
|
48
58
|
- test/test_helper.rb
|
|
49
59
|
has_rdoc: true
|
|
50
60
|
homepage: http://github.com/maddox/newzcache
|
|
61
|
+
licenses:
|
|
51
62
|
post_install_message:
|
|
52
63
|
rdoc_options:
|
|
53
64
|
- --charset=UTF-8
|
|
@@ -68,10 +79,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
68
79
|
requirements: []
|
|
69
80
|
|
|
70
81
|
rubyforge_project:
|
|
71
|
-
rubygems_version: 1.
|
|
82
|
+
rubygems_version: 1.3.5
|
|
72
83
|
signing_key:
|
|
73
84
|
specification_version: 2
|
|
74
|
-
summary:
|
|
85
|
+
summary: The Newzcache gem lets you talk to Newzcache
|
|
75
86
|
test_files:
|
|
76
87
|
- test/newzcache_test.rb
|
|
77
88
|
- test/test_helper.rb
|