Sha256: 5025cb65e9ff373d7edd3a21cb812a5e1a3f21df03707c2b9a0a8a78ee66a885
Contents?: true
Size: 1.03 KB
Versions: 1
Compression:
Stored size: 1.03 KB
Contents
require_relative 'lib/webmention/verification/version' Gem::Specification.new do |spec| spec.required_ruby_version = Gem::Requirement.new('>= 2.5', '< 2.8') spec.name = 'webmention-verification' spec.version = Webmention::Verification::VERSION spec.authors = ['Jason Garber'] spec.email = ['jason@sixtwothree.org'] spec.summary = 'Verify a received webmention.' spec.description = spec.summary spec.homepage = 'https://github.com/jgarber623/webmention-verification-ruby' spec.license = 'MIT' spec.files = Dir.chdir(File.expand_path(__dir__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(bin|spec)/}) } end spec.require_paths = ['lib'] spec.metadata['bug_tracker_uri'] = "#{spec.homepage}/issues" spec.metadata['changelog_uri'] = "#{spec.homepage}/blob/v#{spec.version}/CHANGELOG.md" spec.add_runtime_dependency 'addressable', '~> 2.7' spec.add_runtime_dependency 'http', '~> 4.4' spec.add_runtime_dependency 'nokogiri', '~> 1.10' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
webmention-verification-4.0.0 | webmention-verification.gemspec |