solaris-file 0.4.0 → 0.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/CHANGES CHANGED
@@ -1,3 +1,6 @@
1
+ == 0.4.1 - 2-Nov-2014
2
+ * Minor updates to the Rakefile and gemspec.
3
+
1
4
  == 0.4.0 - 13-Jan-2013
2
5
  * Converted to FFI.
3
6
  * Removed the File.realpath method since it is now already defined in
data/Rakefile CHANGED
@@ -14,7 +14,7 @@ namespace :gem do
14
14
  desc "Install the solaris-file gem"
15
15
  task :install => [:create] do
16
16
  file = Dir["*.gem"].first
17
- sh "gem install #{file}"
17
+ sh "gem install -l #{file}"
18
18
  end
19
19
  end
20
20
 
@@ -1,8 +1,8 @@
1
1
  require 'ffi'
2
- require File.join(File.dirname(__FILE__), 'file', 'stat')
3
- require File.join(File.dirname(__FILE__), 'file', 'constants')
4
- require File.join(File.dirname(__FILE__), 'file', 'structs')
5
- require File.join(File.dirname(__FILE__), 'file', 'functions')
2
+ require_relative 'file/stat'
3
+ require_relative 'file/constants'
4
+ require_relative 'file/structs'
5
+ require_relative 'file/functions'
6
6
 
7
7
  class File
8
8
  include Solaris::Constants
@@ -11,7 +11,7 @@ class File
11
11
  extend Solaris::Functions
12
12
 
13
13
  # The version of the solaris-file library
14
- SOLARIS_VERSION = '0.4.0'
14
+ SOLARIS_VERSION = '0.4.1'
15
15
 
16
16
  # We redefine the ftype method later.
17
17
  class << self
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = 'solaris-file'
5
- spec.version = '0.4.0'
5
+ spec.version = '0.4.1'
6
6
  spec.author = 'Daniel J. Berger'
7
7
  spec.license = 'Artistic 2.0'
8
8
  spec.email = 'djberg96@gmail.com'
@@ -11,8 +11,6 @@ Gem::Specification.new do |spec|
11
11
  spec.test_file = 'test/test_solaris_file.rb'
12
12
  spec.files = Dir['**/*'].reject{ |f| f.include?('git') }
13
13
 
14
- spec.rubyforge_project = 'solarisutils'
15
-
16
14
  spec.extra_rdoc_files = [
17
15
  'README',
18
16
  'CHANGES',
@@ -38,7 +38,7 @@ class TC_Solaris_File < Test::Unit::TestCase
38
38
  end
39
39
 
40
40
  def test_version
41
- assert_equal('0.4.0', File::SOLARIS_VERSION)
41
+ assert_equal('0.4.1', File::SOLARIS_VERSION)
42
42
  end
43
43
 
44
44
  # SINGLETON METHODS
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solaris-file
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-01-13 00:00:00.000000000 Z
12
+ date: 2014-11-02 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: test-unit
@@ -60,13 +60,13 @@ files:
60
60
  - README
61
61
  - Rakefile
62
62
  - examples/example_solaris_file.rb
63
- - solaris-file.gemspec
64
- - test/test_solaris_file.rb
65
63
  - lib/solaris/file.rb
66
- - lib/solaris/file/stat.rb
67
- - lib/solaris/file/structs.rb
68
64
  - lib/solaris/file/constants.rb
69
65
  - lib/solaris/file/functions.rb
66
+ - lib/solaris/file/stat.rb
67
+ - lib/solaris/file/structs.rb
68
+ - solaris-file.gemspec
69
+ - test/test_solaris_file.rb
70
70
  homepage: http://www.github.com/djberg96/solaris-file
71
71
  licenses:
72
72
  - Artistic 2.0
@@ -87,8 +87,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
87
  - !ruby/object:Gem::Version
88
88
  version: '0'
89
89
  requirements: []
90
- rubyforge_project: solarisutils
91
- rubygems_version: 1.8.24
90
+ rubyforge_project:
91
+ rubygems_version: 1.8.23
92
92
  signing_key:
93
93
  specification_version: 3
94
94
  summary: ACL and other methods for the File class on Solaris