Sha256: 9290c102e4c7c62b27fc5ed2085718d0b204a252db90c2d63536c28a45ea4a44
Contents?: true
Size: 1.2 KB
Versions: 4
Compression:
Stored size: 1.2 KB
Contents
require_relative 'lib/r_socks/version' Gem::Specification.new do |spec| spec.name = "r_socks" spec.version = RSocks::VERSION spec.authors = ["Nick An"] spec.email = ["anning0322@gmail.com"] spec.licenses = ['Apache-2.0'] spec.summary = %q{socks5 proxy server} spec.description = %q{ruby socks5 and http proxy} spec.homepage = "https://github.com/nickoan/r_socks" spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0") # spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://github.com/nickoan/r_socks" # 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. spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_runtime_dependency 'eventmachine', '~> 1.2', '>= 1.2.7' end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
r_socks-0.2.11 | r_socks.gemspec |
r_socks-0.2.10 | r_socks.gemspec |
r_socks-0.2.9 | r_socks.gemspec |
r_socks-0.2.8 | r_socks.gemspec |