Sha256: bb0303513ca949f8ca740517560e720c9e3705681e1f071ee51707b4b2bdc0fa
Contents?: true
Size: 1.88 KB
Versions: 1
Compression:
Stored size: 1.88 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'pansophy_authenticator/version' Gem::Specification.new do |spec| spec.name = 'pansophy_authenticator' spec.version = PansophyAuthenticator::VERSION spec.authors = ['Alessandro Berardi'] spec.email = ['berardialessandro@gmail.com'] spec.summary = 'Inter application authentication via central authority' spec.description = 'By configuring a set of applications authentication keys in a file'\ 'stored in an S3 bucket, applications can authenticate with each other'\ 'by submitting their authentication key, which the receiver can match'\ 'against the key stored in S3.'\ 'S3 becomes then a central authentication authority.' spec.homepage = 'https://github.com/sealink/pansophy_authenticator' 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.required_ruby_version = '>= 2.4' spec.add_dependency 'memoizable' spec.add_dependency 'anima' spec.add_dependency 'adamantium' spec.add_dependency 'pansophy' spec.add_dependency 'yamload' spec.add_development_dependency 'bundler' spec.add_development_dependency 'rake' spec.add_development_dependency 'rspec' spec.add_development_dependency 'timecop' spec.add_development_dependency 'coverage-kit' spec.add_development_dependency 'simplecov-rcov' spec.add_development_dependency 'coveralls' spec.add_development_dependency "rubocop", ">= 0.49.0" # CVE-2017-8418 spec.add_development_dependency 'travis' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pansophy_authenticator-0.5.0 | pansophy_authenticator.gemspec |