forked from synesissoftware/xqsr3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxqsr3.gemspec
34 lines (22 loc) · 955 Bytes
/
xqsr3.gemspec
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
# gemspec for xqsr3
$:.unshift File.join(File.dirname(__FILE__), 'lib')
require 'xqsr3/version'
require 'date'
Gem::Specification.new do |spec|
spec.name = 'xqsr3'
spec.version = Xqsr3::VERSION
spec.date = Date.today.to_s
spec.summary = 'xqsr3'
spec.description = <<END_DESC
eXtensions by fine Quantum for Standard Ruby and 3rd-party libraries is a
lightweight, low-coupling library of assorted extensions to standard Ruby and
3rd-party libraries.
END_DESC
spec.authors = [ 'Matt Wilson' ]
spec.email = '[email protected]'
spec.homepage = 'http://github.com/synesissoftware/xqsr3'
spec.license = 'BSD-3-Clause'
spec.required_ruby_version = [ '>= 2.0', '< 4' ]
spec.files = Dir[ 'Rakefile', '{bin,examples,lib,man,spec,test}/**/*', 'README*', 'LICENSE*' ] & `git ls-files -z`.split("\0")
end
# ############################## end of file ############################# #