-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdeploy-agent.gemspec
More file actions
29 lines (25 loc) · 1.06 KB
/
deploy-agent.gemspec
File metadata and controls
29 lines (25 loc) · 1.06 KB
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
# frozen_string_literal: true
require_relative 'lib/deploy_agent/version'
Gem::Specification.new do |s|
s.name = 'deploy-agent'
s.version = DeployAgent::VERSION
s.required_ruby_version = '>= 2.7'
s.summary = 'The DeployHQ Agent'
s.description = 'Deprecated: use https://github.com/deployhq/network-agent instead. ' \
'This gem allows you to configure a secure proxy through which DeployHQ can forward connections'
s.authors = ['Charlie Smurthwaite']
s.email = ['support@deployhq.com']
s.files = Dir.glob('{lib,bin}/**/*')
s.files << 'ca.crt'
s.files << 'deploy-agent.gemspec'
s.homepage = 'https://www.deployhq.com/'
s.bindir = 'bin'
s.executables << 'deploy-agent'
s.add_dependency 'nio4r', '~> 2.7'
s.add_dependency 'rb-readline', '~> 0.5'
s.add_dependency 'timers', '~> 4.3'
s.post_install_message = <<~MSG
WARNING: deploy-agent is deprecated and will not receive further updates.
Please migrate to the new agent: https://github.com/deployhq/network-agent
MSG
end