win32-file-stat 1.3.4 → 1.3.5
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +7 -1
- data/Rakefile +19 -17
- data/lib/win32/file/stat.rb +698 -689
- data/test/test_file_stat.rb +1 -1
- data/win32-file-stat.gemspec +22 -28
- metadata +37 -17
data/test/test_file_stat.rb
CHANGED
data/win32-file-stat.gemspec
CHANGED
@@ -1,32 +1,26 @@
|
|
1
|
-
|
1
|
+
Gem::Specification.new do |spec|
|
2
|
+
spec.name = 'win32-file-stat'
|
3
|
+
spec.version = '1.3.5'
|
4
|
+
spec.authors = ['Daniel J. Berger', 'Park Heesob']
|
5
|
+
spec.license = 'Artistic 2.0'
|
6
|
+
spec.email = 'djberg96@gmail.com'
|
7
|
+
spec.homepage = 'http://www.rubyforge.org/projects/win32utils'
|
8
|
+
spec.summary = 'A File::Stat class tailored to MS Windows'
|
9
|
+
spec.test_file = 'test/test_file_stat.rb'
|
10
|
+
spec.files = Dir['**/*'].reject{ |f| f.include?('git') }
|
2
11
|
|
3
|
-
spec =
|
4
|
-
|
5
|
-
gem.version = '1.3.4'
|
6
|
-
gem.authors = ['Daniel J. Berger', 'Park Heesob']
|
7
|
-
gem.license = 'Artistic 2.0'
|
8
|
-
gem.email = 'djberg96@gmail.com'
|
9
|
-
gem.homepage = 'http://www.rubyforge.org/projects/win32utils'
|
10
|
-
gem.platform = Gem::Platform::RUBY
|
11
|
-
gem.summary = 'A File::Stat class tailored to MS Windows'
|
12
|
-
gem.test_file = 'test/test_file_stat.rb'
|
13
|
-
gem.has_rdoc = true
|
14
|
-
gem.files = Dir['**/*'].reject{ |f| f.include?('CVS') }
|
12
|
+
spec.rubyforge_project = 'Win32Utils'
|
13
|
+
spec.extra_rdoc_files = ['README', 'CHANGES', 'MANIFEST']
|
15
14
|
|
16
|
-
|
17
|
-
|
15
|
+
spec.add_dependency('windows-pr', '>= 1.0.0')
|
16
|
+
spec.add_development_dependency('test-unit')
|
18
17
|
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
at all, such as File.blksize, or methods that aren't implemented
|
28
|
-
properly, such as File.size.
|
29
|
-
EOF
|
18
|
+
spec.description = <<-EOF
|
19
|
+
The win32-file-stat library provides a custom File::Stat class
|
20
|
+
specifically tailored for MS Windows. Examples include the ability
|
21
|
+
to retrieve file attributes (hidden, archive, etc) as well as the
|
22
|
+
redefinition of certain core methods that either aren't implemented
|
23
|
+
at all, such as File.blksize, or methods that aren't implemented
|
24
|
+
properly, such as File.size.
|
25
|
+
EOF
|
30
26
|
end
|
31
|
-
|
32
|
-
Gem::Builder.new(spec).build
|
metadata
CHANGED
@@ -1,7 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: win32-file-stat
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
hash: 17
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 3
|
9
|
+
- 5
|
10
|
+
version: 1.3.5
|
5
11
|
platform: ruby
|
6
12
|
authors:
|
7
13
|
- Daniel J. Berger
|
@@ -10,30 +16,39 @@ autorequire:
|
|
10
16
|
bindir: bin
|
11
17
|
cert_chain: []
|
12
18
|
|
13
|
-
date:
|
14
|
-
default_executable:
|
19
|
+
date: 2011-11-21 00:00:00 Z
|
15
20
|
dependencies:
|
16
21
|
- !ruby/object:Gem::Dependency
|
17
22
|
name: windows-pr
|
18
|
-
|
19
|
-
|
20
|
-
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
21
26
|
requirements:
|
22
27
|
- - ">="
|
23
28
|
- !ruby/object:Gem::Version
|
29
|
+
hash: 23
|
30
|
+
segments:
|
31
|
+
- 1
|
32
|
+
- 0
|
33
|
+
- 0
|
24
34
|
version: 1.0.0
|
25
|
-
|
35
|
+
type: :runtime
|
36
|
+
version_requirements: *id001
|
26
37
|
- !ruby/object:Gem::Dependency
|
27
38
|
name: test-unit
|
28
|
-
|
29
|
-
|
30
|
-
|
39
|
+
prerelease: false
|
40
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
31
42
|
requirements:
|
32
43
|
- - ">="
|
33
44
|
- !ruby/object:Gem::Version
|
34
|
-
|
35
|
-
|
36
|
-
|
45
|
+
hash: 3
|
46
|
+
segments:
|
47
|
+
- 0
|
48
|
+
version: "0"
|
49
|
+
type: :development
|
50
|
+
version_requirements: *id002
|
51
|
+
description: " The win32-file-stat library provides a custom File::Stat class\n specifically tailored for MS Windows. Examples include the ability\n to retrieve file attributes (hidden, archive, etc) as well as the\n redefinition of certain core methods that either aren't implemented\n at all, such as File.blksize, or methods that aren't implemented\n properly, such as File.size.\n"
|
37
52
|
email: djberg96@gmail.com
|
38
53
|
executables: []
|
39
54
|
|
@@ -51,7 +66,6 @@ files:
|
|
51
66
|
- README
|
52
67
|
- test/test_file_stat.rb
|
53
68
|
- win32-file-stat.gemspec
|
54
|
-
has_rdoc: true
|
55
69
|
homepage: http://www.rubyforge.org/projects/win32utils
|
56
70
|
licenses:
|
57
71
|
- Artistic 2.0
|
@@ -61,21 +75,27 @@ rdoc_options: []
|
|
61
75
|
require_paths:
|
62
76
|
- lib
|
63
77
|
required_ruby_version: !ruby/object:Gem::Requirement
|
78
|
+
none: false
|
64
79
|
requirements:
|
65
80
|
- - ">="
|
66
81
|
- !ruby/object:Gem::Version
|
82
|
+
hash: 3
|
83
|
+
segments:
|
84
|
+
- 0
|
67
85
|
version: "0"
|
68
|
-
version:
|
69
86
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
87
|
+
none: false
|
70
88
|
requirements:
|
71
89
|
- - ">="
|
72
90
|
- !ruby/object:Gem::Version
|
91
|
+
hash: 3
|
92
|
+
segments:
|
93
|
+
- 0
|
73
94
|
version: "0"
|
74
|
-
version:
|
75
95
|
requirements: []
|
76
96
|
|
77
97
|
rubyforge_project: Win32Utils
|
78
|
-
rubygems_version: 1.
|
98
|
+
rubygems_version: 1.8.10
|
79
99
|
signing_key:
|
80
100
|
specification_version: 3
|
81
101
|
summary: A File::Stat class tailored to MS Windows
|