segfault 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +7 -3
  3. data/lib/segfault/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fa9dc1cc09e654a92f2b78b4deb2cd4b23520d9d
4
- data.tar.gz: 2d7cdc596069ff1eeefa8d600eb68e73c335ca31
3
+ metadata.gz: e7c139ab38b263713823dc8c30406fe2fe44507d
4
+ data.tar.gz: 3befa95f9ec501e21981e8391c9c710a1d929f29
5
5
  SHA512:
6
- metadata.gz: 11f35c2349cdf6fc24c0fc8af1779db77c08a7def89e02397cc56ef4d1a6618213ed8dcf9b55bdf8601c357294defb1e32bc80b8732e7f67944dbb6bdfeff07d
7
- data.tar.gz: 56c2e68876b6b7792bd90983ec208bcbe75a587928fba50948ded30533858043f2c839117c6dc9dc0254fa8a5126b220d0284e7dda745c701274e96e287dd126
6
+ metadata.gz: e5a7c98a59dc6ba6816738e0b469fbb9c60df527d5d51d60803531d7ee23c717dae34ecf3e52864a4b7421047ffdc47131bc1a67cef137e78e8bee10c9ceb50b
7
+ data.tar.gz: 59dd3d9411b4c886274bc2d39fa3536caf0039606f398829f542df5b28d22e78f81768dc86908b90dbc6aada8a7a0a8f161ccba33879c02a1695c1169f65a50e
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Segfault
2
2
 
3
- TODO: Write a gem description
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
- TODO: Write usage instructions here
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/[my-github-username]/segfault/fork )
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`)
@@ -1,3 +1,3 @@
1
1
  module Segfault
2
- VERSION = '0.0.1'
2
+ VERSION = '0.0.2'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: segfault
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sergey Avseyev