-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlibpath-ruby.gemspec
More file actions
73 lines (58 loc) · 1.76 KB
/
Copy pathlibpath-ruby.gemspec
File metadata and controls
73 lines (58 loc) · 1.76 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# ######################################################################## #
# File: libpath-ruby.gemspec
#
# Purpose: Gemspec for libpath.Ruby library
#
# Created: 8th January 2019
# Updated: 28th August 2026
#
# ######################################################################## #
$:.unshift File.join(File.dirname(__FILE__), 'lib')
require 'libpath/version'
PROJECT_URL = 'https://github.com/synesissoftware/libpath.Ruby'
Gem::Specification.new do |spec|
spec.name = 'libpath-ruby'
spec.summary = 'Path parsing library, for Ruby'
spec.version = LibPath::VERSION
spec.description = <<END_DESC
Path parsing library, for Ruby. libpath.Ruby is concerned entirely with
paths, as opposed to file-system entities. It classifies path form, parses
path strings, and rewrites/combines paths for Unix and Windows.
END_DESC
spec.authors = [
'Matt Wilson',
]
spec.email = [
'matthew@synesis.com.au',
]
spec.homepage = PROJECT_URL
spec.license = 'BSD-3-Clause'
spec.required_ruby_version = [ '>= 2.0' ]
spec.metadata = {
'bug_tracker_uri' => "#{PROJECT_URL}/issues",
'changelog_uri' => "#{PROJECT_URL}/blob/master/CHANGES.md",
'homepage_uri' => PROJECT_URL,
'source_code_uri' => PROJECT_URL,
}
spec.files = Dir[
'Rakefile',
'{bin,examples,lib,man,spec,test}/**/*',
'AUTHORS*',
'CHANGES*',
'CONTRIBUTING*',
'EXAMPLES*',
'FAQ*',
'INSTALL*',
'LICENSE*',
'NEWS*',
'README*',
'SECURITY*',
'TODO*',
] & `git ls-files -z`.split("\0")
spec.files -= [
'.ruby-version',
'Gemfile.lock',
]
spec.add_development_dependency "xqsr3", [ '>= 0.39.5', '< 1.0' ]
end
# ############################## end of file ############################# #