roda-proxy/roda-proxy.gemspec

38 lines
1.4 KiB
Ruby
Raw Normal View History

2020-03-12 16:37:13 +00:00
# frozen_string_literal: true
2020-03-12 10:14:54 +00:00
require_relative 'lib/roda/proxy/version'
Gem::Specification.new do |spec|
2020-03-12 16:37:13 +00:00
spec.name = 'roda-proxy'
2020-03-12 10:14:54 +00:00
spec.version = Roda::Proxy::VERSION
2020-03-12 16:37:13 +00:00
spec.authors = ['Nigel Brookes-Thomas']
spec.email = ['nigel@brookes-thomas.co.uk']
2020-03-12 10:14:54 +00:00
2020-03-13 09:51:04 +00:00
spec.summary = 'Reverse proxy plugin for Roda'
spec.description = 'A very simple reverse proxy for Roda'
spec.homepage = 'https://github.com/BillyRuffian/roda-proxy'
2020-03-12 16:37:13 +00:00
spec.license = 'MIT'
spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
2020-03-12 10:14:54 +00:00
2020-03-13 09:51:04 +00:00
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
2020-03-12 10:14:54 +00:00
2020-03-12 16:37:13 +00:00
spec.metadata['homepage_uri'] = spec.homepage
2020-03-13 09:51:04 +00:00
spec.metadata['source_code_uri'] = 'https://github.com/BillyRuffian/roda-proxy'
spec.metadata['changelog_uri'] = 'https://github.com/BillyRuffian/roda-proxy'
2020-03-12 10:14:54 +00:00
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
2020-03-12 16:37:13 +00:00
spec.files = Dir.chdir(File.expand_path(__dir__)) do
2020-03-12 10:14:54 +00:00
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
end
2020-03-12 16:37:13 +00:00
spec.bindir = 'exe'
2020-03-12 10:14:54 +00:00
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
2020-03-12 16:37:13 +00:00
spec.require_paths = ['lib']
2020-03-12 10:14:54 +00:00
spec.add_dependency 'faraday', '~> 1.0'
spec.add_dependency 'roda', '~> 3.0'
spec.add_development_dependency 'rerun', '~> 0.13'
2020-03-12 16:37:13 +00:00
spec.add_development_dependency 'rubocop', '~> 0.80'
2020-03-12 10:14:54 +00:00
end