-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwin32-xpath.gemspec
More file actions
34 lines (30 loc) · 1.34 KB
/
win32-xpath.gemspec
File metadata and controls
34 lines (30 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
require 'rubygems'
Gem::Specification.new do |spec|
spec.name = 'win32-xpath'
spec.version = '1.2.0'
spec.author = 'Daniel J. Berger'
spec.license = 'Apache-2.0'
spec.email = 'djberg96@gmail.com'
spec.homepage = 'http://github.com/djberg96/win32-xpath'
spec.summary = 'Revamped File.expand_path for Windows'
spec.test_file = 'spec/win32_xpath_spec.rb'
spec.files = Dir['**/*'].reject{ |f| f.include?('git') }
spec.cert_chain = Dir['certs/*']
spec.extensions = ['ext/extconf.rb']
spec.add_development_dependency('rake')
spec.add_development_dependency('rspec', '~> 3.11')
spec.metadata = {
'homepage_uri' => 'https://github.com/djberg96/win32-xpath',
'bug_tracker_uri' => 'https://github.com/djberg96/win32-xpath/issues',
'changelog_uri' => 'https://github.com/djberg96/win32-xpath/blob/main/CHANGES.md',
'documentation_uri' => 'https://github.com/djberg96/win32-xpath/wiki',
'source_code_uri' => 'https://github.com/djberg96/win32-xpath',
'wiki_uri' => 'https://github.com/djberg96/win32-xpath/wiki',
'rubygems_mfa_required' => 'true'
}
spec.description = <<-EOF
The win32-xpath library provides a revamped File.expand_path method
for MS Windows. It is significantly faster, and supports ~user
expansion as well.
EOF
end