Sha256: 7e971e66002973c409bbf95daf71b89e86b0d8aca71e7c5633c997509d5b3768
Contents?: true
Size: 1.71 KB
Versions: 2
Compression:
Stored size: 1.71 KB
Contents
lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'yoti/version' Gem::Specification.new do |spec| spec.name = 'yoti' spec.version = Yoti::VERSION spec.authors = ['Yoti'] spec.email = ['websdk@yoti.com'] spec.summary = 'Yoti Ruby SDK for back-end integration.' spec.description = <<-DESC This gem contains the tools you need to quickly integrate your Ruby back-end with Yoti, so that your users can share their identity details with your application in a secure and trusted way. DESC spec.homepage = 'https://github.com/getyoti/yoti-ruby-sdk' spec.license = 'MIT' exclude_patterns = [ '^(test|spec|features|examples|docs|.github)/', '^.gitignore$', '^.pre-commit-config.yaml$', '^sonar-project.properties$', '^.dependabot/config.yml$', '^.travis.yml$', '^CONTRIBUTING.md$', '^Guardfile$', '^Rakefile$', '^yardstick.yml$', '^rubocop.yml$' ] spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(/#{exclude_patterns.join('|')}/) } spec.require_paths = ['lib'] spec.required_ruby_version = '>= 2.4' spec.add_dependency 'google-protobuf', '~> 3.7' spec.add_development_dependency 'bundler', '~> 2.0' spec.add_development_dependency 'dotenv', '~> 2.2' spec.add_development_dependency 'generator_spec', '~> 0.9' spec.add_development_dependency 'rake', '~> 13.0' spec.add_development_dependency 'rspec', '~> 3.5' spec.add_development_dependency 'simplecov', '~> 0.17.1' spec.add_development_dependency 'webmock', '~> 3.3' spec.add_development_dependency 'yard', '~> 0.9' spec.add_development_dependency 'yardstick', '~> 0.9' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
yoti-1.10.0 | yoti.gemspec |
yoti-1.9.0 | yoti.gemspec |