Sha256: c12ae0088a6f28496b948d316a8f75a95cb474de862e7b6a4c116a2b9ecfa242
Contents?: true
Size: 874 Bytes
Versions: 3
Compression:
Stored size: 874 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.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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
otp-0.0.6 | otp.gemspec |
otp-0.0.5 | otp.gemspec |
otp-0.0.4 | otp.gemspec |