Sha256: 187bc565ab5d463cd6fac77864c4185184d987e06be29beff8e20a2786941b7f

Contents?: true

Size: 1011 Bytes

Versions: 1

Compression:

Stored size: 1011 Bytes

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "passwd"
  spec.version       = Passwd::VERSION
  spec.authors       = ["i2bskn"]
  spec.email         = ["i2bskn@gmail.com"]

  spec.description   = %q{Passwd is provide hashed password creation and authentication.}
  spec.summary       = %q{Passwd is provide hashed password creation and authentication.}
  spec.homepage      = "https://github.com/i2bskn/passwd"
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0").reject do |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"
  spec.add_development_dependency "rake"
  spec.add_development_dependency "minitest", "~> 5.0"
  spec.add_development_dependency "pry"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
passwd-0.3.0 passwd.gemspec