shadowsocks 0.4 → 0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1e13759da84263a5a81769afcb8e2d99b511766b
4
- data.tar.gz: 9f0049ec6920bc351fc0c04017f22dbfd2cf8104
3
+ metadata.gz: ffa53ad10b7ef10c31fbec7b957634073144266f
4
+ data.tar.gz: ba754df84d406718006c4259e75b2513da528054
5
5
  SHA512:
6
- metadata.gz: 44a5fb86332bcbdadc27978a6dcebc2f8f215b8cb7daed472d4b84763d63dfdf1b2740136490bda9fa2c5be6385cf1f1c3c736c187d820eb620869b139e44606
7
- data.tar.gz: 9d8ae8792552c49c434b2ee6abf4ca323e81e09c4d6bae01464a0afcb28dd254f5be834915d4695cba575350d6d3d0cb961bb4e3cd3cb6eec699ee5bddd1b0f8
6
+ metadata.gz: b09c4253cbfc84d1a6974aa2e92075c58df655b08b881e448be0a362601e0b24f909ba2ab0c04e5402d944c8fc25ff1144b1a59069e1612942b99ce4801ad856
7
+ data.tar.gz: d72621ffe2282033410bb989a85b3ede86d8d8aed22a8f4eaab2c8c9ec326f5d39a1f91e8f03a42074d4d92e25f36ed8bde76d28e7cd8395a52508f9020e5322
data/README.md CHANGED
@@ -3,7 +3,7 @@ shadowsocks-ruby
3
3
 
4
4
  [![Code Climate](https://codeclimate.com/repos/524baea6c7f3a37df208dd4c/badges/9dd6c11b6a17c3a55631/gpa.png)](https://codeclimate.com/repos/524baea6c7f3a37df208dd4c/feed)
5
5
 
6
- Current version: 0.4
6
+ Current version: 0.5
7
7
 
8
8
  shadowsocks-ruby is a lightweight tunnel proxy which can help you get through firewalls. It is a port of [shadowsocks](https://github.com/clowwindy/shadowsocks).
9
9
 
@@ -39,7 +39,7 @@ module Shadowsocks
39
39
  opts.on("-c", "--config PATH", "config.json path") { |c| @config_path = c }
40
40
  opts.on("-p", "--port PORT", Integer, "Remote server port") { |c| @server_port = c }
41
41
  opts.on("-l", "--local_port PORT", Integer, "Local client port") { |c| @local_port = c }
42
- opts.on("-m", "--method METHOD", Integer, "Encryption method") { |c| @method = c }
42
+ opts.on("-m", "--method METHOD", "Encryption method") { |c| @method = c }
43
43
  opts.on("-t", "--timeout NUMBER", Integer, "connection timeout") { |c| @timeout = c }
44
44
 
45
45
  opts.on_tail("-v", "--version", "Show shadowsocks gem version") { puts Shadowsocks::VERSION; exit }
@@ -1,3 +1,3 @@
1
1
  module Shadowsocks
2
- VERSION = '0.4'
2
+ VERSION = '0.5'
3
3
  end
data/shadowsocks.gemspec CHANGED
@@ -3,7 +3,7 @@ require File.expand_path('../lib/shadowsocks/version', __FILE__)
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'shadowsocks'
5
5
  s.version = Shadowsocks::VERSION
6
- s.date = '2013-09-26'
6
+ s.date = Date.today
7
7
  s.summary = "ruby version of shadowsocks"
8
8
  s.description = "shadowsocks-ruby is a lightweight tunnel proxy which can help you get through firewalls."
9
9
  s.authors = ["Sen"]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shadowsocks
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.4'
4
+ version: '0.5'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-09-26 00:00:00.000000000 Z
11
+ date: 2013-11-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: eventmachine