micropub-endpoint.gemspec in micropub-endpoint-1.0.3 vs micropub-endpoint.gemspec in micropub-endpoint-1.0.4

- old
+ new

@@ -9,28 +9,40 @@ spec.name = 'micropub-endpoint' spec.version = Micropub::Endpoint::VERSION spec.authors = ['Jason Garber'] spec.email = ['jason@sixtwothree.org'] - spec.summary = 'Discover a URL’s Micropub endpoint.' + spec.summary = 'Deprecated in favor of indieweb-endpoints from 2019-04-24. Discover a URL’s Micropub endpoint.' spec.description = spec.summary spec.homepage = 'https://github.com/jgarber623/micropub-endpoint-ruby' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(bin|spec)/}) } spec.require_paths = ['lib'] - spec.add_development_dependency 'bundler', '~> 1.17' + spec.post_install_message = <<NOTICE + + +----------------------------------------------------+ + | | + | micropub-endpoint is deprecated from 2019-04-24. | + | | + | Please use the indieweb-endpoints gem instead. | + | | + +----------------------------------------------------+ + +NOTICE + spec.add_development_dependency 'rake', '~> 12.3' spec.add_development_dependency 'rspec', '~> 3.8' - spec.add_development_dependency 'rubocop', '~> 0.62.0' + spec.add_development_dependency 'rubocop', '~> 0.67.2' + spec.add_development_dependency 'rubocop-performance', '~> 1.0' spec.add_development_dependency 'rubocop-rspec', '~> 1.31' spec.add_development_dependency 'simplecov', '~> 0.16.1' spec.add_development_dependency 'simplecov-console', '~> 0.4.2' - spec.add_development_dependency 'webmock', '~> 3.4' + spec.add_development_dependency 'webmock', '~> 3.5' spec.add_runtime_dependency 'absolutely', '~> 1.1' - spec.add_runtime_dependency 'addressable', '~> 2.5' - spec.add_runtime_dependency 'http', '~> 4.0' - spec.add_runtime_dependency 'nokogiri', '~> 1.8' + spec.add_runtime_dependency 'addressable', '~> 2.6' + spec.add_runtime_dependency 'http', '~> 4.1' + spec.add_runtime_dependency 'nokogiri', '~> 1.10' end