posix 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/ext/posix/posix.c +0 -3
  2. data/posix.gemspec +1 -1
  3. metadata +1 -1
@@ -44,9 +44,6 @@ VALUE posix_sigprocmask(VALUE self, VALUE _how, VALUE _set) {
44
44
  rb_Sigset2sigset_t(_set, set);
45
45
  }
46
46
 
47
- sigemptyset(set);
48
- sigaddset(set, SIGINT);
49
-
50
47
  if (sigprocmask(how, set, oset) == 0) {
51
48
  // TODO Construct a Sigset and return it so that we can interrogate it
52
49
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "posix"
5
- s.version = "0.0.4"
5
+ s.version = "0.0.5"
6
6
  s.authors = ["Richo Healey"]
7
7
  s.email = ["richo@psych0tik.net"]
8
8
  s.homepage = "http://github.com/richo/ruby-posix"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: posix
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: