timers.gemspec in timers-1.1.0 vs timers.gemspec in timers-2.0.0
- old
+ new
@@ -4,17 +4,20 @@
Gem::Specification.new do |gem|
gem.authors = ["Tony Arcieri"]
gem.email = ["tony.arcieri@gmail.com"]
gem.description = "Pure Ruby one-shot and periodic timers"
gem.summary = "Schedule procs to run after a certain time, or at periodic intervals, using any API that accepts a timeout"
- gem.homepage = "https://github.com/tarcieri/timers"
+ gem.homepage = "https://github.com/celluloid/timers"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "timers"
gem.require_paths = ["lib"]
gem.version = Timers::VERSION
+ gem.licenses = ['MIT']
+
+ gem.add_runtime_dependency 'hitimes'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec'
end