tormanager 0.2.0 → 0.3.0
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 +4 -4
- data/README.md +3 -1
- data/lib/tormanager/version.rb +1 -1
- data/lib/tormanager.rb +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3e956978c37191217d4f787f613f4610565014d4
|
4
|
+
data.tar.gz: cfc30d398e0d4dcdef237dca49f2d7195122cae0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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).
|
data/lib/tormanager/version.rb
CHANGED
data/lib/tormanager.rb
CHANGED