Sha256: 98e8c53d82f095aa618cf65194c10bc14d3828e07e7d2f257cd8e0d43c21b8a2
Contents?: true
Size: 1.09 KB
Versions: 1
Compression:
Stored size: 1.09 KB
Contents
# frozen_string_literal: true require_relative 'lib/webmention/verification/version' Gem::Specification.new do |spec| spec.required_ruby_version = '>= 2.6', '< 4' 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['lib/**/*'].reject { |f| File.directory?(f) } spec.files += %w[LICENSE CHANGELOG.md CONTRIBUTING.md README.md] spec.files += %w[webmention-verification.gemspec] spec.require_paths = ['lib'] spec.metadata = { 'bug_tracker_uri' => "#{spec.homepage}/issues", 'changelog_uri' => "#{spec.homepage}/blob/v#{spec.version}/CHANGELOG.md", 'rubygems_mfa_required' => 'true' } spec.add_runtime_dependency 'http', '~> 5.0' spec.add_runtime_dependency 'nokogiri', '~> 1.13' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
webmention-verification-6.0.0 | webmention-verification.gemspec |