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.
@@ -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