加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
github_changelog_generator.gemspec 1.55 KB
一键复制 编辑 原始数据 按行查看 历史
# frozen_string_literal: true
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "github_changelog_generator/version"
Gem::Specification.new do |spec|
spec.name = "github_changelog_generator"
spec.version = GitHubChangelogGenerator::VERSION
spec.required_ruby_version = ">= 2.5.0"
spec.authors = ["Petr Korolev", "Olle Jonsson", "Marco Ferrari"]
spec.email = "sky4winder+github_changelog_generator@gmail.com"
spec.summary = "Script that automatically generates a changelog from your tags, issues, labels and pull requests."
spec.description = "Changelog generation has never been so easy. Fully automate changelog generation - this gem generate changelog file based on tags, issues and merged pull requests from GitHub."
spec.homepage = "https://github.com/github-changelog-generator/Github-Changelog-Generator"
spec.license = "MIT"
spec.files = Dir["{bin,lib,man,spec}/**/*"] + %w[LICENSE Rakefile README.md]
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_runtime_dependency("activesupport")
spec.add_runtime_dependency("async", ">= 1.25.0")
spec.add_runtime_dependency("async-http-faraday")
spec.add_runtime_dependency("faraday-http-cache")
spec.add_runtime_dependency("multi_json")
spec.add_runtime_dependency("octokit", ["~> 4.6"])
spec.add_runtime_dependency "rainbow", ">= 2.2.1"
spec.add_runtime_dependency "rake", ">= 10.0"
end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化