Sha256: 7cb56037f4b7b2e03e333c94351796a76846012562071c12908f90c456a34326
Contents?: true
Size: 1.16 KB
Versions: 1
Compression:
Stored size: 1.16 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'notifications/client/version' Gem::Specification.new do |spec| spec.name = "notifications-ruby-client" spec.version = Notifications::Client::VERSION spec.authors = [ "Government Digital Service" ] spec.email = ["notify@digital.cabinet-office.gov.uk"] spec.summary = "Ruby client for GOV.UK Notifications API" spec.homepage = "https://github.com/alphagov/notifications-ruby-client" 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.add_runtime_dependency "jwt", "~> 2.1" spec.add_development_dependency "bundler", "~> 1.13" spec.add_development_dependency "rake", "~> 12.3" spec.add_development_dependency "rspec", "~> 3.7" spec.add_development_dependency "webmock", "~> 3.1" spec.add_development_dependency "factory_bot", "~> 4.8" spec.add_development_dependency "govuk-lint", "~> 3.3" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
notifications-ruby-client-2.5.0 | notifications-ruby-client.gemspec |