crash-watch 1.1.3 → 1.1.4
Sign up to get free protection for your applications and to get access to all the features.
- data.tar.gz.asc +8 -0
- data/README.markdown +6 -0
- data/crash-watch.gemspec +2 -2
- data/lib/crash_watch/version.rb +1 -1
- metadata +18 -8
- metadata.gz.asc +8 -0
data.tar.gz.asc
ADDED
data/README.markdown
CHANGED
@@ -16,6 +16,12 @@ You must also have GDB installed. Mac OS X already has it by default. If you're
|
|
16
16
|
apt-get install gdb
|
17
17
|
yum install gdb
|
18
18
|
|
19
|
+
## Cryptographic verification
|
20
|
+
|
21
|
+
Our gem is signed using PGP with the [Phusion Software Signing key](http://www.phusion.nl/about/gpg). That key in turn is signed by [the rubygems-openpgp Certificate Authority](http://www.rubygems-openpgp-ca.org/).
|
22
|
+
|
23
|
+
You can verify the authenticity of the gem by following [The Complete Guide to Verifying Gems with rubygems-openpgp](http://www.rubygems-openpgp-ca.org/blog/the-complete-guide-to-verifying-gems-with-rubygems-openpgp.html).
|
24
|
+
|
19
25
|
## Sample usage
|
20
26
|
|
21
27
|
$ crash-watch <PID>
|
data/crash-watch.gemspec
CHANGED
@@ -4,10 +4,10 @@ Gem::Specification.new do |s|
|
|
4
4
|
s.name = "crash-watch"
|
5
5
|
s.version = CrashWatch::VERSION_STRING
|
6
6
|
s.authors = ["Hongli Lai"]
|
7
|
-
s.date = "
|
7
|
+
s.date = "2013-03-11"
|
8
8
|
s.description = "Monitor processes and display useful information when they crash."
|
9
9
|
s.summary = "Monitor processes and display useful information when they crash"
|
10
|
-
s.email = "
|
10
|
+
s.email = "software-signing@phusion.nl"
|
11
11
|
s.files = Dir[
|
12
12
|
"README.markdown",
|
13
13
|
"LICENSE.txt",
|
data/lib/crash_watch/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: crash-watch
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2013-03-11 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: ffi
|
16
|
-
requirement:
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,10 +21,15 @@ dependencies:
|
|
21
21
|
version: '0'
|
22
22
|
type: :development
|
23
23
|
prerelease: false
|
24
|
-
version_requirements:
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
25
30
|
- !ruby/object:Gem::Dependency
|
26
31
|
name: rspec
|
27
|
-
requirement:
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
28
33
|
none: false
|
29
34
|
requirements:
|
30
35
|
- - ! '>='
|
@@ -32,9 +37,14 @@ dependencies:
|
|
32
37
|
version: '0'
|
33
38
|
type: :development
|
34
39
|
prerelease: false
|
35
|
-
version_requirements:
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
36
46
|
description: Monitor processes and display useful information when they crash.
|
37
|
-
email:
|
47
|
+
email: software-signing@phusion.nl
|
38
48
|
executables:
|
39
49
|
- crash-watch
|
40
50
|
extensions: []
|
@@ -68,7 +78,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
68
78
|
version: '0'
|
69
79
|
requirements: []
|
70
80
|
rubyforge_project:
|
71
|
-
rubygems_version: 1.8.
|
81
|
+
rubygems_version: 1.8.25
|
72
82
|
signing_key:
|
73
83
|
specification_version: 3
|
74
84
|
summary: Monitor processes and display useful information when they crash
|
metadata.gz.asc
ADDED