sys-admin 1.5.3-x86-mingw32 → 1.5.4-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGES CHANGED
@@ -1,3 +1,6 @@
1
+ == 1.5.4 - 7-Oct-2010
2
+ * Prefer the getlastlogx() function over lastlog() where supported.
3
+
1
4
  == 1.5.3 - 6-Oct-2010
2
5
  * Refactored the Rakefile. The old installation tasks have been replaced
3
6
  with gem build and install tasks. In addition, the platform handling has
data/Rakefile CHANGED
@@ -10,6 +10,7 @@ task :clean do
10
10
  Dir['*.gem'].each{ |f| File.delete(f) } # Remove any .gem files
11
11
  unless WINDOWS
12
12
  Dir.chdir('ext') do
13
+ rm_rf('conftest.dSYM') if File.exists?('conftest.dSYM') # OS X
13
14
  build_file = 'admin.' + Config::CONFIG['DLEXT']
14
15
  sh 'make distclean' if File.exists?(build_file)
15
16
  File.delete("sys/#{build_file}") if File.exists?("sys/#{build_file}")
data/lib/sys/admin.rb CHANGED
@@ -293,7 +293,7 @@ module Sys
293
293
 
294
294
  class Admin
295
295
  # The version of the sys-admin library
296
- VERSION = '1.5.3'
296
+ VERSION = '1.5.4'
297
297
 
298
298
  # This is the error raised in the majority of cases if anything goes wrong
299
299
  # with any of the Sys::Admin methods.
data/sys-admin.gemspec CHANGED
@@ -4,7 +4,7 @@ require 'rubygems'
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = 'sys-admin'
7
- spec.version = '1.5.3'
7
+ spec.version = '1.5.4'
8
8
  spec.author = 'Daniel J. Berger'
9
9
  spec.license = 'Artistic 2.0'
10
10
  spec.email = 'djberg96@gmail.com'
@@ -16,6 +16,6 @@ end
16
16
 
17
17
  class TC_Sys_Admin_All < Test::Unit::TestCase
18
18
  def test_version
19
- assert_equal('1.5.3', Sys::Admin::VERSION)
19
+ assert_equal('1.5.4', Sys::Admin::VERSION)
20
20
  end
21
21
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sys-admin
3
3
  version: !ruby/object:Gem::Version
4
- hash: 5
4
+ hash: 11
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 5
9
- - 3
10
- version: 1.5.3
9
+ - 4
10
+ version: 1.5.4
11
11
  platform: x86-mingw32
12
12
  authors:
13
13
  - Daniel J. Berger
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-10-06 00:00:00 -06:00
18
+ date: 2010-10-07 00:00:00 -06:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency