Sha256: d3d580a49dc91469213779d66f19743937fd57355b2796c564bd6d55a9e84602
Contents?: true
Size: 1.01 KB
Versions: 1
Compression:
Stored size: 1.01 KB
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) Gem::Specification.new do |spec| spec.name = "duration-human" spec.version = "0.0.1" spec.authors = ["JamesJJ"] spec.email = ["jj@fcg.fyi"] spec.summary = %q{Extend Numeric with method to provide duration as a human readable string} #spec.description = %q{TODO: Write a longer description or delete this line.} spec.homepage = "https://github.com/JamesJJ/ruby-duration-human" spec.license = "MIT" test_files, files = `git ls-files -z`.split("\x0").partition do |f| f.match(%r{^(test|spec|features)/}) end spec.files = files spec.executables = files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = test_files spec.require_paths = ["lib"] spec.required_ruby_version = '>= 2.3.0' spec.add_development_dependency "bundler", "~> 1.14" spec.add_development_dependency "rake", "~> 12.0" spec.add_development_dependency "test-unit", "~> 3.0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
duration-human-0.0.1 | duration-human.gemspec |