Sha256: 7d56387c4157c90b803295533f8e6651c00156282cf9dbd7e2fe19a323a56fab

Contents?: true

Size: 1.17 KB

Versions: 2

Compression:

Stored size: 1.17 KB

Contents

lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "human_size/version"

Gem::Specification.new do |spec|
  spec.name          = "human_size"
  spec.version       = HumanSize::VERSION
  spec.authors       = ["Tim Gurney aka Wolf"]
  spec.email         = ["wolf@tgwolf.com"]

  spec.summary       = %q{Human Size is a simple ruby gem to convert a number of bytes into a more human readable form.}
  spec.description   = %q{Human Size is a simple ruby gem to convert a number of bytes into a more human readable form.}
  spec.homepage      = "https://github.com/WolfSoftware/human_size"
  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_size-1.1.2 human_size.gemspec
human_size-1.1.1 human_size.gemspec