segfault 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +7 -3
- data/lib/segfault/version.rb +1 -1
- 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: e7c139ab38b263713823dc8c30406fe2fe44507d
|
4
|
+
data.tar.gz: 3befa95f9ec501e21981e8391c9c710a1d929f29
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e5a7c98a59dc6ba6816738e0b469fbb9c60df527d5d51d60803531d7ee23c717dae34ecf3e52864a4b7421047ffdc47131bc1a67cef137e78e8bee10c9ceb50b
|
7
|
+
data.tar.gz: 59dd3d9411b4c886274bc2d39fa3536caf0039606f398829f542df5b28d22e78f81768dc86908b90dbc6aada8a7a0a8f161ccba33879c02a1695c1169f65a50e
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Segfault
|
2
2
|
|
3
|
-
|
3
|
+
The helper to easily abort your ruby program with segmentation fault error.
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
@@ -18,11 +18,15 @@ Or install it yourself as:
|
|
18
18
|
|
19
19
|
## Usage
|
20
20
|
|
21
|
-
|
21
|
+
```ruby
|
22
|
+
require 'segfault'
|
23
|
+
|
24
|
+
Segfault.dereference_null
|
25
|
+
```
|
22
26
|
|
23
27
|
## Contributing
|
24
28
|
|
25
|
-
1. Fork it ( https://github.com/
|
29
|
+
1. Fork it ( https://github.com/avsej/segfault/fork )
|
26
30
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
31
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
32
|
4. Push to the branch (`git push origin my-new-feature`)
|
data/lib/segfault/version.rb
CHANGED