Sha256: 0d8dc0c7b80967b8995b6ab25e4659c4f9d55a6eb6ec5ea19f606bc40b365aad
Contents?: true
Size: 843 Bytes
Versions: 2
Compression:
Stored size: 843 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 = "" spec.license = "MIT" 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
otp-0.0.3 | otp.gemspec |
otp-0.0.2 | otp.gemspec |