sys-proctable 1.1.2-universal-hpux → 1.1.3-universal-hpux

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fe21942f8eb5b5eaf231fcf739677a546840b496
4
- data.tar.gz: 158cfd99514e0e447244a58026a80d1f63b77264
3
+ metadata.gz: d979c011bcf52f9d5f467598abfb8d418ac6c5b0
4
+ data.tar.gz: a4f8d96be1e6e7859a3868eca51f1a36d0999d63
5
5
  SHA512:
6
- metadata.gz: 91e92bafac64ec9fb49e0e7b5327fc5158279c70e2625d420122d507741f03e93da54de65bd0bbfbc8d2ce9f7c601552c1a0015a6cd0bcee034083e810fcbea9
7
- data.tar.gz: 4eb738cd733a71a484ad3f20bdc0c354710bf0b82b3d2424a0d04d25366439cc5a3ff87314b0623c9a49c9288b1760689c7bc1d1f6a0f10da5968bb868968214
6
+ metadata.gz: 794fd9801e56dd143f99806382929b022c00d3958293c7368f65edd3141ef0f8f988a6361fd203259b6eba05d3645a7b208e033d2e0584ae5752edbf0be2552a
7
+ data.tar.gz: d28dc2c52e1853bbeef4f3c1e4c5588a3d84d7c28e71465f7c96c9e76c781d7a9b55e1170354120e1042fe209fccdff436835d1fe28e8f063ccbed4725a180f4
Binary file
data.tar.gz.sig CHANGED
Binary file
data/CHANGES CHANGED
@@ -1,3 +1,6 @@
1
+ == 1.1.3 - 28-Sep-2016
2
+ * Fixed an issue on OSX where the value returned for argc is invalid.
3
+
1
4
  == 1.1.2 - 18-Sep-2016
2
5
  * Fixed cmdline parsing and handling for OSX. Thanks go to Ben Mathwig for
3
6
  the spot and the patch.
data/Rakefile CHANGED
@@ -205,6 +205,13 @@ namespace :gem do
205
205
  }
206
206
  end
207
207
 
208
+ desc 'Push all gems for each supported OS'
209
+ task :push_all do
210
+ Dir["pkg/*"].each{ |dir|
211
+ p dir
212
+ }
213
+ end
214
+
208
215
  desc 'Install the sys-proctable library as a gem'
209
216
  task :install => [:create] do
210
217
  gem_name = Dir['*.gem'].first
@@ -305,7 +305,7 @@ void Init_proctable()
305
305
  rb_funcall(cProcTable, rb_intern("private_class_method"), 1, ID2SYM(rb_intern("new")));
306
306
 
307
307
  /* 1.1.2: The version of the sys-proctable library. */
308
- rb_define_const(cProcTable, "VERSION", rb_str_new2("1.1.2"));
308
+ rb_define_const(cProcTable, "VERSION", rb_str_new2("1.1.3"));
309
309
 
310
310
  /* Structs */
311
311
 
@@ -1,6 +1,6 @@
1
1
  module Sys
2
2
  class ProcTable
3
3
  # The version of the sys-proctable library
4
- VERSION = '1.1.2'.freeze
4
+ VERSION = '1.1.3'.freeze
5
5
  end
6
6
  end
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = 'sys-proctable'
5
- spec.version = '1.1.2'
5
+ spec.version = '1.1.3'
6
6
  spec.author = 'Daniel J. Berger'
7
7
  spec.license = 'Apache 2.0'
8
8
  spec.email = 'djberg96@gmail.com'
@@ -19,7 +19,7 @@ class TC_ProcTable_All < Test::Unit::TestCase
19
19
  end
20
20
 
21
21
  test "version is set to expected value" do
22
- assert_equal('1.1.2', ProcTable::VERSION)
22
+ assert_equal('1.1.3', ProcTable::VERSION)
23
23
  end
24
24
 
25
25
  test "fields basic functionality" do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sys-proctable
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 1.1.3
5
5
  platform: universal-hpux
6
6
  authors:
7
7
  - Daniel J. Berger
@@ -30,7 +30,7 @@ cert_chain:
30
30
  A943I/wqE6xbYQpHxkndWo5uLDUbZh+XxG+fhZKpeqLIqHaFuU6wdO5odt32kB/B
31
31
  nCjVswaVYlu1U2iLPCqE+MrjmTA=
32
32
  -----END CERTIFICATE-----
33
- date: 2016-09-19 00:00:00.000000000 Z
33
+ date: 2016-09-28 00:00:00.000000000 Z
34
34
  dependencies:
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: test-unit
metadata.gz.sig CHANGED
Binary file