加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
rubyinstaller-build.gemspec 1.11 KB
一键复制 编辑 原始数据 按行查看 历史
# 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 = ["lars@greiz-reinsdorf.de"]
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
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化