Sha256: c86ab19058e8d6f4cc9c74287e1c5c9cb1a5d41f91a160c48a4ad791f7405ac8

Contents?: true

Size: 1.42 KB

Versions: 1

Compression:

Stored size: 1.42 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'xkpassword/version'

Gem::Specification.new do |spec|
  spec.name          = "xkpassword"
  spec.version       = XKPassword::VERSION
  spec.authors       = ["Ziyan Junaideen"]
  spec.email         = ["ziyan@jdeen.com"]

  spec.summary       = %q{Hard to crack - XKPassword Generator for Ruby}
  spec.description   = """
  Passwords are hard to remember, specially when they are hard to crack. I'd spend countless hours
  every year resetting passwords and eventually running out of options that I can remember. I found
  an interesting concept among a comic XKCD, it is to generate passwords using words and thus easier
  to remember. Here is XKPassword, a lib which you can install to our Ruby app or run independently
  in the command line.

  Wish you a safer future.

  Ziyan
  """
  spec.homepage      = "https://github.com/jdeen/xkpassword"
  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_dependency "artii", "~> 2.1"
  spec.add_development_dependency "bundler",  "~> 2.2"
  spec.add_development_dependency "rake",     "~> 13.0"
  spec.add_development_dependency "rspec",    "~> 3.10"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
xkpassword-0.3.3 xkpassword.gemspec