simple_throttle.gemspec in simple_throttle-1.0.1 vs simple_throttle.gemspec in simple_throttle-1.0.2

- old
+ new

@@ -1,25 +1,34 @@ -# coding: utf-8 -lib = File.expand_path('../lib', __FILE__) -$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) - Gem::Specification.new do |spec| - spec.name = "simple_throttle" - spec.version = File.read(File.expand_path("../VERSION", __FILE__)).chomp - spec.authors = ["We Heart It", "Brian Durand"] - spec.email = ["dev@weheartit.com", "bbdurand@gmail.com"] - spec.summary = "Simple redis backed throttling mechanism to limit access to a resource" - spec.description = "Simple redis backed throttling mechanism to limit access to a resource." - spec.homepage = "https://github.com/weheartit/simple_throttle" - spec.license = "MIT" + spec.name = "simple_throttle" + spec.version = File.read(File.expand_path("../VERSION", __FILE__)).strip + spec.authors = ["We Heart It", "Brian Durand"] + spec.email = ["dev@weheartit.com", "bbdurand@gmail.com"] - spec.files = `git ls-files`.split($/) - spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } - spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) + spec.summary = "Simple redis backed throttling mechanism to limit access to a resource" + spec.homepage = "https://github.com/weheartit/simple_throttle" + spec.license = "MIT" + + # Specify which files should be added to the gem when it is released. + # The `git ls-files -z` loads the files in the RubyGem that have been added into git. + ignore_files = %w[ + . + Appraisals + Gemfile + Gemfile.lock + Rakefile + bin/ + gemfiles/ + spec/ + ] + spec.files = Dir.chdir(File.expand_path("..", __FILE__)) do + `git ls-files -z`.split("\x0").reject { |f| ignore_files.any? { |path| f.start_with?(path) } } + end + spec.require_paths = ["lib"] - spec.add_dependency('redis') + spec.add_dependency "redis" - spec.add_development_dependency "bundler", "~> 1.3" - spec.add_development_dependency "rake" - spec.add_development_dependency "rspec" + spec.add_development_dependency "bundler" + + spec.required_ruby_version = ">= 2.5" end