Skip to content

Commit

Permalink
update gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
hungryblank committed May 26, 2010
1 parent 3e926b6 commit cfd3da9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -10,7 +10,7 @@ begin
gem.email = "hungryblank@gmail.com"
gem.homepage = "http://github.com/hungryblank/rrbayes"
gem.authors = ["hungryblank"]
gem.add_dependency "redis", ">= 0"
gem.add_dependency "redis", ">= 2.0.0"
gem.add_development_dependency "riot", ">= 0"
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
end
Expand Down
10 changes: 5 additions & 5 deletions rrbayes.gemspec
Expand Up @@ -5,11 +5,11 @@

Gem::Specification.new do |s|
s.name = %q{rrbayes}
s.version = "0.0.2"
s.version = "1.0.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["hungryblank"]
s.date = %q{2009-12-22}
s.date = %q{2010-05-26}
s.description = %q{Implementation of a naive Bayes classifier with a Redis backend}
s.email = %q{hungryblank@gmail.com}
s.extra_rdoc_files = [
Expand All @@ -27,7 +27,7 @@ Gem::Specification.new do |s|
"lib/rrbayes/category.rb",
"lib/rrbayes/rrbayes.rb",
"rrbayes.gemspec",
"test/rrbayes_test.rb",
"test/classifier_test.rb",
"test/teststrap.rb"
]
s.homepage = %q{http://github.com/hungryblank/rrbayes}
Expand All @@ -37,7 +37,7 @@ Gem::Specification.new do |s|
s.summary = %q{Rrbayes: Ruby Redis Bayes}
s.test_files = [
"test/teststrap.rb",
"test/rrbayes_test.rb"
"test/classifier_test.rb"
]

if s.respond_to? :specification_version then
Expand All @@ -48,7 +48,7 @@ Gem::Specification.new do |s|
s.add_runtime_dependency(%q<redis>, [">= 2.0.0"])
s.add_development_dependency(%q<riot>, [">= 0"])
else
s.add_dependency(%q<redis>, [">= 0"])
s.add_dependency(%q<redis>, [">= 2.0.0"])
s.add_dependency(%q<riot>, [">= 0"])
end
else
Expand Down

0 comments on commit cfd3da9

Please sign in to comment.