-
Notifications
You must be signed in to change notification settings - Fork 253
/
rubyinstaller-build.gemspec
28 lines (24 loc) · 1.11 KB
/
rubyinstaller-build.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ruby_installer/build'
Gem::Specification.new do |spec|
spec.name = "rubyinstaller-build"
spec.version = RubyInstaller::Build::GEM_VERSION
spec.authors = ["Lars Kanis"]
spec.email = ["[email protected]"]
spec.summary = %q{MSYS2 based RubyInstaller for Windows}
spec.description = %q{This project provides an installer framework for Ruby on Windows based on the MSYS2 toolchain.}
spec.homepage = "https://github.com/larskanis/rubyinstaller2"
spec.license = "BSD-3-Clause"
lib_files = Dir.chdir(__dir__){ `git ls-files -z`.split("\x0") }
spec.files = lib_files.reject do |f|
f.match(%r{^(test|spec|features|docs)/})
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_development_dependency "rake", "~> 12.0"
spec.add_development_dependency "bundler", ">= 1.14", "< 3"
spec.add_development_dependency "minitest", "~> 5.0"
end