thread_watcher 0.8.0 → 0.8.1
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 +2 -2
- data/lib/thread_watcher/thread_holder.rb +1 -1
- data/lib/thread_watcher/version.rb +1 -1
- data/thread_watcher.gemspec +2 -2
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2943da02c959b6c17192ef79ee8677b510ce607e
|
4
|
+
data.tar.gz: 9e93856247405bbd57914c429088be55cdda9841
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5adea0edd25266bc20f4c05f1ec95a0cddbdd18f84963c7894d1c18f326c88919acf6d8a28adeecd39372edf3ded837afc762663f996f8338916ae3959c3fea0
|
7
|
+
data.tar.gz: 8c61688fde382686c878c69541ebdbe1ad8a190c6dd90a95cea0e7f16f9902b6985256bfe0f5c21646b61a7aa9e9a77d9613d2ac6099cb721e344b7f1c203288
|
data/README.md
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
# ThreadWatcher
|
2
2
|
|
3
|
-
You need to monitor
|
3
|
+
You need to monitor some big background tasks and kill one specific thread or restart them after scheduling in another part of your application. This Gem put each task in a separate thread, which you can start, stop or restart.
|
4
4
|
|
5
|
-
|
5
|
+
Compatible with any ruby version greater or equal than 1.8.7.
|
6
6
|
|
7
7
|
|
8
8
|
## Installation
|
data/thread_watcher.gemspec
CHANGED
@@ -10,8 +10,8 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.email = ["robertst81@gmail.com"]
|
11
11
|
|
12
12
|
|
13
|
-
spec.summary = %q{Monitor
|
14
|
-
spec.description = %q{You need to monitor
|
13
|
+
spec.summary = %q{Monitor Tasks and kill or restart them from each Point of your Application.}
|
14
|
+
spec.description = %q{You need to monitor some big background tasks and kill one specific thread or restart them after scheduling in another part of your application? Then this Gem could be usefull for you. Compatible with any ruby version greater or equal than 1.8.7. See detailed information at the github Page.}
|
15
15
|
spec.homepage = "https://github.com/robst/thread_watcher"
|
16
16
|
spec.license = "MIT"
|
17
17
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: thread_watcher
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Robert Starke
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-02-
|
11
|
+
date: 2016-02-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -38,10 +38,10 @@ dependencies:
|
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '10.0'
|
41
|
-
description: You need to monitor
|
42
|
-
them after scheduling in another part of your application? Then this
|
43
|
-
usefull for you.
|
44
|
-
information at the github Page.
|
41
|
+
description: You need to monitor some big background tasks and kill one specific thread
|
42
|
+
or restart them after scheduling in another part of your application? Then this
|
43
|
+
Gem could be usefull for you. Compatible with any ruby version greater or equal
|
44
|
+
than 1.8.7. See detailed information at the github Page.
|
45
45
|
email:
|
46
46
|
- robertst81@gmail.com
|
47
47
|
executables: []
|
@@ -86,5 +86,5 @@ rubyforge_project:
|
|
86
86
|
rubygems_version: 2.4.6
|
87
87
|
signing_key:
|
88
88
|
specification_version: 4
|
89
|
-
summary: Monitor
|
89
|
+
summary: Monitor Tasks and kill or restart them from each Point of your Application.
|
90
90
|
test_files: []
|