-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathae_reverse_proxy.gemspec
More file actions
23 lines (19 loc) · 987 Bytes
/
ae_reverse_proxy.gemspec
File metadata and controls
23 lines (19 loc) · 987 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true
require_relative 'lib/ae_reverse_proxy/version'
Gem::Specification.new do |spec|
spec.name = 'ae_reverse_proxy'
spec.version = AeReverseProxy::VERSION
spec.platform = Gem::Platform::RUBY
spec.author = 'AppFolio'
spec.email = 'opensource@appfolio.com'
spec.description = 'Gem for reverse proxying requests.'
spec.summary = spec.description
spec.homepage = 'https://github.com/appfolio/ae_reverse_proxy'
spec.license = 'MIT'
spec.files = Dir['**/*'].select { |f| f[%r{^(lib/|LICENSE.txt|ae_reverse_proxy\.gemspec)}] }
spec.require_paths = ['lib']
spec.required_ruby_version = Gem::Requirement.new('< 4.1')
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
spec.add_dependency('addressable', ['>= 2.3.6', '< 3'])
spec.add_dependency('rack', ['>= 2.2.3', '< 4'])
end