Sha256: 395fcba4a19e36f6b039cfb20185e5b7d672920e358f541f253908a8dabdc917

Contents?: true

Size: 915 Bytes

Versions: 5

Compression:

Stored size: 915 Bytes

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "otp"
  spec.version       = OTP::VERSION
  spec.authors       = ["Yuuzou Gotou"]
  spec.email         = ["gotoyuzo@notwork.org"]
  spec.summary       = %q{One-Time Password Library}
  spec.description   = %q{An implementation of HOTP (RFC4226) and TOTP (RFC6238).}
  spec.homepage      = "https://github.com/gotoyuzo/otp"
  spec.license       = "MIT"

  spec.required_ruby_version = '>= 2.0'

  spec.files         = `git ls-files -z`.split("\x0")
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.6"
  spec.add_development_dependency "rake"
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
otp-0.0.11 otp.gemspec
otp-0.0.10 otp.gemspec
otp-0.0.9 otp.gemspec
otp-0.0.8 otp.gemspec
otp-0.0.7 otp.gemspec