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 +3 -0
- data/Rakefile +1 -1
- data/lib/solaris/file.rb +5 -5
- data/solaris-file.gemspec +1 -3
- data/test/test_solaris_file.rb +1 -1
- metadata +8 -8
data/CHANGES
CHANGED
data/Rakefile
CHANGED
data/lib/solaris/file.rb
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
require 'ffi'
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
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.
|
14
|
+
SOLARIS_VERSION = '0.4.1'
|
15
15
|
|
16
16
|
# We redefine the ftype method later.
|
17
17
|
class << self
|
data/solaris-file.gemspec
CHANGED
@@ -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.
|
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',
|
data/test/test_solaris_file.rb
CHANGED
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.
|
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:
|
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:
|
91
|
-
rubygems_version: 1.8.
|
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
|