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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8a152351cdaecbd2d8db6e0035114db2ff37c5da
4
- data.tar.gz: 762752fbcd844ca408434bfcbf00c3cf9469d9bd
3
+ metadata.gz: 2943da02c959b6c17192ef79ee8677b510ce607e
4
+ data.tar.gz: 9e93856247405bbd57914c429088be55cdda9841
5
5
  SHA512:
6
- metadata.gz: 4a42ce1a54d92f7c346a53877e4d01b8f8234bf4c5b078a2a220d199930b3ac79b571090cfe76d2b388c3abc83f9d2edb443fb857a09daee83af51f7f5ac596d
7
- data.tar.gz: 40241f40ddcb63b7da1a66c57a6418f64ecdbabf17092ecdcec196401acece2aa2fb4bf39423c939e90c9187d7285ac75e55db7adf491de27edac4df2a6f7fc2
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 your threads and kill one specific thread or restart them after scheduling in another part of your application? Then this Gem could be usefull for you.
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
- Build for ruby 1.8.7 and newer.
5
+ Compatible with any ruby version greater or equal than 1.8.7.
6
6
 
7
7
 
8
8
  ## Installation
@@ -36,7 +36,7 @@ module ThreadWatcher
36
36
  private
37
37
 
38
38
  def available_options
39
- { :name => nil, :keep_alive => false }
39
+ { :name => :noname, :keep_alive => false }
40
40
  end
41
41
 
42
42
  def initialize_starttime
@@ -1,3 +1,3 @@
1
1
  module ThreadWatcher
2
- VERSION = "0.8.0"
2
+ VERSION = "0.8.1"
3
3
  end
@@ -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 your Threads exactly and kill them from each Point of your Application.}
14
- spec.description = %q{You need to monitor your threads and kill one specific thread or restart them after scheduling in another part of your application? Then this Gem could be usefull for you. Use it with any ruby version greater or equal than 1.8.7. See detailed information at the github Page.}
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.0
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-12 00:00:00.000000000 Z
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 your threads and kill one specific thread or restart
42
- them after scheduling in another part of your application? Then this Gem could be
43
- usefull for you. Use it with any ruby version greater or equal than 1.8.7. See detailed
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 your Threads exactly and kill them from each Point of your Application.
89
+ summary: Monitor Tasks and kill or restart them from each Point of your Application.
90
90
  test_files: []