solaris-file 0.3.6 → 0.3.7
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +4 -0
- data/README +1 -1
- data/ext/solaris/sfile.c +5 -1
- data/ext/solaris/sfile.h +1 -1
- data/solaris-file.gemspec +1 -2
- data/test/test_solaris_file.rb +1 -1
- metadata +6 -8
data/CHANGES
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
== 0.3.7 - 29-Jul-2011
|
2
|
+
* Removed an obsolete gemspec attribute.
|
3
|
+
* Fixed redefinition warnings for the ftype and realpath singleton methods.
|
4
|
+
|
1
5
|
== 0.3.6 - 12-Dec-2010
|
2
6
|
* Fixed a warning regarding an unused variable.
|
3
7
|
* Fixed a potential bug with an internal helper function's switch statement.
|
data/README
CHANGED
data/ext/solaris/sfile.c
CHANGED
@@ -457,6 +457,10 @@ void Init_file(){
|
|
457
457
|
rb_eStandardError
|
458
458
|
);
|
459
459
|
|
460
|
+
// Remove these methods temporarily to avoid warnings.
|
461
|
+
rb_undef_method(CLASS_OF(rb_cFile), "ftype");
|
462
|
+
rb_undef_method(CLASS_OF(rb_cFile), "realpath");
|
463
|
+
|
460
464
|
// Singleton Methods
|
461
465
|
|
462
466
|
rb_define_singleton_method(rb_cFile, "acl_count", acl_count, 1);
|
@@ -489,6 +493,6 @@ void Init_file(){
|
|
489
493
|
"acl_type", "acl_id", "acl_perm", NULL
|
490
494
|
);
|
491
495
|
|
492
|
-
/* 0.3.
|
496
|
+
/* 0.3.7: The version of the solaris-file library */
|
493
497
|
rb_define_const(rb_cFile, "SOLARIS_VERSION", rb_str_new2(SOLARIS_VERSION));
|
494
498
|
}
|
data/ext/solaris/sfile.h
CHANGED
data/solaris-file.gemspec
CHANGED
@@ -2,14 +2,13 @@ require 'rubygems'
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |gem|
|
4
4
|
gem.name = 'solaris-file'
|
5
|
-
gem.version = '0.3.
|
5
|
+
gem.version = '0.3.7'
|
6
6
|
gem.author = 'Daniel J. Berger'
|
7
7
|
gem.license = 'Artistic 2.0'
|
8
8
|
gem.email = 'djberg96@gmail.com'
|
9
9
|
gem.homepage = 'http://www.rubyforge.org/projects/solarisutils'
|
10
10
|
gem.platform = Gem::Platform::RUBY
|
11
11
|
gem.summary = 'ACL and other methods for the File class on Solaris'
|
12
|
-
gem.has_rdoc = true
|
13
12
|
gem.test_file = 'test/test_solaris_file.rb'
|
14
13
|
gem.extensions = ['ext/extconf.rb']
|
15
14
|
gem.files = Dir['**/*'].reject{ |f| f.include?('git') }
|
data/test/test_solaris_file.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: solaris-file
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 29
|
5
|
+
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 3
|
9
|
-
-
|
10
|
-
version: 0.3.
|
9
|
+
- 7
|
10
|
+
version: 0.3.7
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Daniel J. Berger
|
@@ -15,8 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date:
|
19
|
-
default_executable:
|
18
|
+
date: 2011-07-30 00:00:00 Z
|
20
19
|
dependencies:
|
21
20
|
- !ruby/object:Gem::Dependency
|
22
21
|
name: test-unit
|
@@ -72,7 +71,6 @@ files:
|
|
72
71
|
- ext/solaris/sfile.h
|
73
72
|
- solaris-file.gemspec
|
74
73
|
- test/test_solaris_file.rb
|
75
|
-
has_rdoc: true
|
76
74
|
homepage: http://www.rubyforge.org/projects/solarisutils
|
77
75
|
licenses:
|
78
76
|
- Artistic 2.0
|
@@ -102,7 +100,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
102
100
|
requirements: []
|
103
101
|
|
104
102
|
rubyforge_project: solarisutils
|
105
|
-
rubygems_version: 1.
|
103
|
+
rubygems_version: 1.8.5
|
106
104
|
signing_key:
|
107
105
|
specification_version: 3
|
108
106
|
summary: ACL and other methods for the File class on Solaris
|