timers.gemspec in timers-4.1.1 vs timers.gemspec in timers-4.1.2
- old
+ new
@@ -1,23 +1,26 @@
# -*- encoding: utf-8 -*-
-require File.expand_path('../lib/timers/version', __FILE__)
+# frozen_string_literal: true
+require File.expand_path("../lib/timers/version", __FILE__)
+
Gem::Specification.new do |gem|
+ gem.name = "timers"
+ gem.version = Timers::VERSION
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.email = ["bascule@gmail.com"]
+ gem.licenses = ["MIT"]
gem.homepage = "https://github.com/celluloid/timers"
+ gem.summary = "Pure Ruby one-shot and periodic timers"
+ gem.description = <<-DESCRIPTION.strip.gsub(/\s+/, " ")
+ Schedule procs to run after a certain time, or at periodic intervals,
+ using any API that accepts a timeout.
+ DESCRIPTION
- gem.files = `git ls-files`.split($\)
- gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
+ gem.files = `git ls-files`.split($OUTPUT_RECORD_SEPARATOR)
+ 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_runtime_dependency 'hitimes'
-
- gem.add_development_dependency 'rake'
- gem.add_development_dependency 'rspec', '~> 3.0.0'
+ gem.add_development_dependency "bundler"
end