Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update gemspec
  • Loading branch information
Tony Arcieri committed Dec 7, 2010
1 parent 7180949 commit 783f986
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions stash.gemspec
Expand Up @@ -5,11 +5,11 @@

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

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Tony Arcieri"]
s.date = %q{2010-11-30}
s.date = %q{2010-12-07}
s.description = %q{Stash maps the facilities provided by data structures servers onto classes which mimic Ruby's built-in types}
s.email = %q{tony@medioh.com}
s.extra_rdoc_files = [
Expand All @@ -32,7 +32,8 @@ Gem::Specification.new do |s|
"spec/list_spec.rb",
"spec/spec.opts",
"spec/spec_helper.rb",
"spec/string_spec.rb"
"spec/string_spec.rb",
"stash.gemspec"
]
s.homepage = %q{http://github.com/tarcieri/stash}
s.require_paths = ["lib"]
Expand All @@ -52,16 +53,16 @@ Gem::Specification.new do |s|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<redis>, ["~> 2.1.0"])
s.add_runtime_dependency(%q<redis-namespace>, ["~> 0.10.0"])
s.add_development_dependency(%q<rspec>, ["~> 2.1.0"])
s.add_development_dependency(%q<rspec>, [">= 2.2.0"])
else
s.add_dependency(%q<redis>, ["~> 2.1.0"])
s.add_dependency(%q<redis-namespace>, ["~> 0.10.0"])
s.add_dependency(%q<rspec>, ["~> 2.1.0"])
s.add_dependency(%q<rspec>, [">= 2.2.0"])
end
else
s.add_dependency(%q<redis>, ["~> 2.1.0"])
s.add_dependency(%q<redis-namespace>, ["~> 0.10.0"])
s.add_dependency(%q<rspec>, ["~> 2.1.0"])
s.add_dependency(%q<rspec>, [">= 2.2.0"])
end
end

0 comments on commit 783f986

Please sign in to comment.