-
Notifications
You must be signed in to change notification settings - Fork 7
/
yyrp.gemspec
76 lines (60 loc) · 2.42 KB
/
yyrp.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'yyrp/version'
Gem::Specification.new do |spec|
spec.name = 'yyrp'
spec.version = Yyrp::VERSION
spec.authors = ['yang']
spec.email = ['blockchainyang@gmail.com']
spec.summary = %q{A http/https, socks proxy server, a mitm server and a shadowsocks server with rules}
spec.description = %q{A http/https, socks proxy server, a mitm server and a shadowsocks server with rules}
spec.homepage = ''
spec.license = 'MIT'
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
# to allow pushing to a single host or delete this section to allow pushing to any host.
if spec.respond_to?(:metadata)
spec.metadata['allowed_push_host'] = 'TODO'
else
raise 'RubyGems 2.0 or newer is required to protect against public gem pushes.'
end
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_dependency 'eventmachine'
spec.add_dependency 'celluloid-dns'
spec.add_dependency 'http_parser.rb'
spec.add_dependency 'websocket-driver'
spec.add_dependency 'websocket-extensions'
spec.add_dependency 'uuid'
spec.add_dependency 'ipaddress'
spec.add_dependency 'activesupport'
# spec.add_dependency 'maxmind_geoip2' # libmaxminddb dependency
spec.add_dependency 'maxminddb'
spec.add_dependency 'os'
spec.add_dependency 'ruby-progressbar'
spec.add_dependency 'awesome_print'
spec.add_dependency 'logging'
spec.add_dependency 'public_suffix'
# network packet
spec.add_dependency 'packetfu'
spec.add_dependency 'bettercap'
spec.add_dependency 'net-ping'
# colorful terminal spinner
spec.add_dependency 'paint'
spec.add_dependency 'whirly'
spec.add_dependency 'colorize'
# system info
spec.add_dependency 'ohai'
spec.add_dependency 'vmstat'
spec.add_dependency 'get_process_mem'
# ritm
spec.add_runtime_dependency 'faraday'
spec.add_runtime_dependency 'webrick'
spec.add_runtime_dependency 'certificate_authority'
spec.add_runtime_dependency 'dot_hash'
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'minitest'
end