Sha256: c4c32237f301d59ba1967c086802dc3b8bf6500d70bc244c324e79c0a54b0db0
Contents?: true
Size: 1.2 KB
Versions: 2
Compression:
Stored size: 1.2 KB
Contents
lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "human_duration/version" Gem::Specification.new do |spec| spec.name = "human_duration" spec.version = HumanDuration::VERSION spec.authors = ["Tim Gurney aka Wolf"] spec.email = ["wolf@tgwolf.com"] spec.summary = %q{Human Durartion is a simple ruby gem to convert a number of seconds into a more human readable form.} spec.description = %q{Human Durartion is a simple ruby gem to convert a number of seconds into a more human readable form.} spec.homepage = "https://github.com/WolfSoftware/human_duration" spec.license = "MIT" spec.files = `git ls-files`.split($/) #spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do # `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } #end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler", ">= 1.17", "< 3.0" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
human_duration-2.0.2 | human_duration.gemspec |
human_duration-2.0.1 | human_duration.gemspec |