github-changelog-generator/github_changelog_generator.gemspec

32 lines
1.2 KiB
Ruby
Raw Normal View History

2014-11-17 16:01:10 +00:00
# coding: utf-8
2014-11-06 14:19:11 +00:00
2014-11-17 16:01:10 +00:00
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
2014-11-06 14:19:11 +00:00
2014-11-17 16:01:10 +00:00
require 'github_changelog_generator/version'
Gem::Specification.new do |spec|
spec.name = "github_changelog_generator"
spec.version = GitHubChangelogGenerator::VERSION
spec.default_executable = "github_changelog_generator"
spec.required_ruby_version = '>= 1.9.3'
spec.authors = ["Petr Korolev"]
spec.email = %q{sky4winder+github_changelog_generator@gmail.com}
spec.date = `date +"%Y-%m-%d"`.strip!
spec.summary = %q{Script, that automatically generate change-log from your tags and pull-requests.}
spec.description = %q{Script, that automatically generate change-log from your tags and pull-requests}
spec.homepage = %q{https://github.com/skywinder/Github-Changelog-Generator}
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0")
spec.rubygems_version = %q{1.6.2}
spec.require_paths = ["lib"]
spec.add_runtime_dependency(%q<httparty>, ["~> 0.13"])
spec.add_runtime_dependency(%q<github_api>, ["~> 0.12"])
spec.add_runtime_dependency(%q<colorize>, ["~> 0.7"])
spec.executables = %w(github_changelog_generator)
2014-11-10 11:36:15 +00:00
end