win32-dir 0.4.7 → 0.7.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/win32-dir.rb +1 -0
- data/lib/win32/dir.rb +185 -173
- data/lib/win32/dir/constants.rb +6 -3
- data/lib/win32/dir/functions.rb +17 -17
- data/lib/win32/dir/structs.rb +1 -1
- data/lib/win32/dir/version.rb +6 -0
- metadata +13 -51
- data/CHANGES +0 -98
- data/MANIFEST +0 -8
- data/README +0 -273
- data/Rakefile +0 -38
- data/examples/dir_example.rb +0 -23
- data/test/test_win32_dir.rb +0 -452
- data/win32-dir.gemspec +0 -30
data/win32-dir.gemspec
DELETED
@@ -1,30 +0,0 @@
|
|
1
|
-
require 'rubygems'
|
2
|
-
|
3
|
-
Gem::Specification.new do |spec|
|
4
|
-
spec.name = 'win32-dir'
|
5
|
-
spec.version = '0.4.7'
|
6
|
-
spec.authors = ['Daniel J. Berger', 'Park Heesob']
|
7
|
-
spec.license = 'Artistic 2.0'
|
8
|
-
spec.email = 'djberg96@gmail.com'
|
9
|
-
spec.homepage = 'http://github.com/djberg96/win32-dir'
|
10
|
-
spec.summary = 'Extra constants and methods for the Dir class on Windows.'
|
11
|
-
spec.test_file = 'test/test_win32_dir.rb'
|
12
|
-
spec.files = Dir['**/*'].reject{ |f| f.include?('git') }
|
13
|
-
|
14
|
-
spec.rubyforge_project = 'win32utils'
|
15
|
-
spec.extra_rdoc_files = ['README', 'CHANGES', 'MANIFEST']
|
16
|
-
spec.required_ruby_version = '>= 1.9.2'
|
17
|
-
|
18
|
-
spec.add_dependency('ffi', '>= 1.0.0')
|
19
|
-
|
20
|
-
spec.add_development_dependency('rake')
|
21
|
-
spec.add_development_dependency('test-unit', '>= 2.4.0')
|
22
|
-
|
23
|
-
spec.description = <<-EOF
|
24
|
-
The win32-dir library provides extra methods and constants for the
|
25
|
-
builtin Dir class. The constants provide a convenient way to identify
|
26
|
-
certain directories across all versions of Windows. Some methods have
|
27
|
-
been added, such as the ability to create junctions. Others have been
|
28
|
-
modified to provide a more consistent result for MS Windows.
|
29
|
-
EOF
|
30
|
-
end
|