Sha256: e8a7ee10eb76fed3df45f10bc9822a99ac4473d04c436e3ca613b078a0300ea8
Contents?: true
Size: 1.04 KB
Versions: 3
Compression:
Stored size: 1.04 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" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ztimer-0.2.0 | ztimer.gemspec |
ztimer-0.1.1 | ztimer.gemspec |
ztimer-0.1.0 | ztimer.gemspec |