-
-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathsocksify.gemspec
More file actions
23 lines (21 loc) · 877 Bytes
/
socksify.gemspec
File metadata and controls
23 lines (21 loc) · 877 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/socksify/version'
Gem::Specification.new do |s|
s.name = 'socksify'
s.version = Socksify::VERSION
s.summary = 'Redirect all TCPSockets through a SOCKS5 proxy'
s.authors = ['Stephan Maka', 'Andrey Kouznetsov', 'Christopher Thorpe', 'Musy Bite', 'Yuichi Tateno', 'David Dollar']
s.licenses = ['Ruby', 'GPL-3.0-only']
s.required_ruby_version = '>= 2.7'
s.email = 'stephan@spaceboyz.net'
s.homepage = 'https://github.com/astro/socksify-ruby'
s.files = %w[COPYING]
s.files += Dir.glob('lib/**/*')
s.files += Dir.glob('bin/**/*')
s.files += Dir.glob('doc/**/*')
# s.files = s.files.delete_if { |f| f =~ /~$/ } # ?
s.require_path = 'lib'
s.executables = %w[socksify_ruby]
s.extra_rdoc_files = Dir.glob('doc/**/*') + %w[COPYING]
s.metadata['funding_uri'] = 'https://github.com/sponsors/astro'
end