Sha256: c2be897c6e72f5646ea705f9d8a21eb0001b673caa69f4593d03f089508caa7f
Contents?: true
Size: 1.09 KB
Versions: 4
Compression:
Stored size: 1.09 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'ztimer/version' Gem::Specification.new do |spec| spec.name = "ztimer" spec.version = Ztimer::VERSION spec.authors = ["Groza Sergiu"] spec.email = ["serioja90@gmail.com"] spec.summary = %q{An asyncrhonous timer} spec.description = %q{Ruby asyncrhonous timer that allows you to enqueue tasks to be executed asyncrhonously after a delay} spec.homepage = "https://github.com/serioja90/ztimer" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.11" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" spec.add_dependency "hitimes", "~> 1.2" spec.add_dependency "lounger", "~> 0.2" end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
ztimer-0.4.0 | ztimer.gemspec |
ztimer-0.3.2 | ztimer.gemspec |
ztimer-0.3.1 | ztimer.gemspec |
ztimer-0.3.0 | ztimer.gemspec |