tormanager 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ae9cd4db1d87b48b12d3c7da7f27ec8f73a03fd9
4
- data.tar.gz: bc8871a5eca69b0ab3d66b283ada7094138901c7
3
+ metadata.gz: 3e956978c37191217d4f787f613f4610565014d4
4
+ data.tar.gz: cfc30d398e0d4dcdef237dca49f2d7195122cae0
5
5
  SHA512:
6
- metadata.gz: bbfdd160272d2bc25b8b29e67afaffbf9ef642c233e86ad541a80d8205df2bf188d97a8a501aaa9770222cb08cab10fa1c5f18369082449cf03c8a24962296d1
7
- data.tar.gz: 6dd60fc33690fd71c64c62a8181311b81389af36f4c3d58c57689028c75b5c1abaa638b862e42e02d44aae772f951e9fda1b21acc8cea6c6f440db01899cf47b
6
+ metadata.gz: eef0f639f64e0111f5208d4b76a37c53f37852618f86a62bfcfad2fb1eb8dfb47e22943763c2b8aae0e8fee339c2867f7c68ff3a6d915c453b1996e140d689a3
7
+ data.tar.gz: c7e77748b8c2412d1eb4280219988e596fc6ec33d3c25b334a70cce62a7f2beafb5c55e830949e10ac7ee435c4c47aa9a129c65a6553199f1ba1590c6d3a9cb2
data/README.md CHANGED
@@ -36,6 +36,8 @@ This section shows how to start, stop and manage Tor processes.
36
36
  Start a Tor process with default settings:
37
37
 
38
38
  ```ruby
39
+ require 'tormanager'
40
+
39
41
  tor_process = TorManager::TorProcess.new
40
42
  tor_process.start
41
43
 
@@ -216,4 +218,4 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/joshwe
216
218
 
217
219
  ## License
218
220
 
219
- The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
221
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
@@ -1,3 +1,3 @@
1
1
  module TorManager
2
- VERSION = "0.2.0"
2
+ VERSION = "0.3.0"
3
3
  end
data/lib/tormanager.rb CHANGED
@@ -3,4 +3,5 @@ require "tormanager/process_helper"
3
3
  require "tormanager/tor_process"
4
4
  require "tormanager/proxy"
5
5
  require "tormanager/ip_address_control"
6
+ require "tor"
6
7
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tormanager
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - joshweir