redis_snippets.gemspec in redis_snippets-0.0.6 vs redis_snippets.gemspec in redis_snippets-0.0.7

- old
+ new

@@ -1,53 +1,25 @@ -# Generated by jeweler -# DO NOT EDIT THIS FILE DIRECTLY -# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec' -# -*- encoding: utf-8 -*- +lib = File.expand_path('../lib', __FILE__) +$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) +require 'redis_snippets/version' -Gem::Specification.new do |s| - s.name = "redis_snippets" - s.version = "0.0.6" +Gem::Specification.new do |spec| + spec.name = "redis_snippets" + spec.version = RedisSnippets::VERSION + spec.authors = ["Martin Moen Wulffeld"] + spec.email = ["martin@wulffeld.org"] + spec.description = %q{Storing snippets of whatever in Redis.} + spec.summary = %q{Storing snippets of whatever in Redis.} + spec.homepage = "http://www.wulffeld.org/" + spec.license = "MIT" - s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= - s.authors = ["Martin Moen Wulffeld"] - s.date = "2013-01-09" - s.description = "" - s.email = "martin@wulffeld.org" - s.extra_rdoc_files = [ - "README.md" - ] - s.files = [ - "README.md", - "Rakefile", - "VERSION", - "app/assets/redis_snippets/redis_snippets.sass", - "app/controllers/redis_snippets/snippets_controller.rb", - "app/helpers/redis_snippets/snippets_helper.rb", - "app/models/redis_snippets/snippets.rb", - "app/views/redis_snippets/snippets/show.html.erb", - "config/routes.rb", - "lib/redis_snippets.rb", - "lib/redis_snippets/engine.rb", - "lib/redis_snippets/help.rb", - "lib/redis_snippets/redis.rb", - "redis_snippets.gemspec" - ] - s.require_paths = ["lib"] - s.rubygems_version = "1.8.16" - s.summary = "View snippets held in Redis storage." + spec.files = `git ls-files`.split($/) + spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } + spec.test_files = spec.files.grep(%r{^(spec)/}) + spec.require_paths = ["lib"] - if s.respond_to? :specification_version then - s.specification_version = 3 + spec.add_development_dependency "bundler", ">= 1.3.2" + spec.add_development_dependency "rake" - if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then - s.add_runtime_dependency(%q<redis>, [">= 0"]) - s.add_runtime_dependency(%q<redis-namespace>, [">= 0"]) - else - s.add_dependency(%q<redis>, [">= 0"]) - s.add_dependency(%q<redis-namespace>, [">= 0"]) - end - else - s.add_dependency(%q<redis>, [">= 0"]) - s.add_dependency(%q<redis-namespace>, [">= 0"]) - end + spec.add_dependency "redis", ">= 2.0.0" + spec.add_dependency "redis-namespace", ">= 1.2.1" end -