This repository has been archived by the owner on Apr 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
micropub-endpoint.gemspec
48 lines (37 loc) · 1.88 KB
/
micropub-endpoint.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'micropub/endpoint/version'
Gem::Specification.new do |spec|
spec.required_ruby_version = ['>= 2.4', '< 2.7']
spec.name = 'micropub-endpoint'
spec.version = Micropub::Endpoint::VERSION
spec.authors = ['Jason Garber']
spec.email = ['jason@sixtwothree.org']
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.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.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.5'
spec.add_runtime_dependency 'absolutely', '~> 1.1'
spec.add_runtime_dependency 'addressable', '~> 2.6'
spec.add_runtime_dependency 'http', '~> 4.1'
spec.add_runtime_dependency 'nokogiri', '~> 1.10'
end