2014-11-17 16:01:10 +00:00
# coding: utf-8
2015-04-02 09:05:26 +00:00
lib = File . expand_path ( " ../lib " , __FILE__ )
2014-11-17 16:01:10 +00:00
$LOAD_PATH . unshift ( lib ) unless $LOAD_PATH . include? ( lib )
2015-04-02 09:05:26 +00:00
require " github_changelog_generator/version "
2014-11-17 16:01:10 +00:00
Gem :: Specification . new do | spec |
2015-04-02 09:05:26 +00:00
spec . name = " github_changelog_generator "
2014-11-17 16:01:10 +00:00
spec . version = GitHubChangelogGenerator :: VERSION
2015-04-02 09:05:26 +00:00
spec . default_executable = " github_changelog_generator "
2014-11-17 16:01:10 +00:00
2016-01-05 20:59:39 +00:00
spec . required_ruby_version = " >= 1.9.3 "
2016-03-02 07:10:50 +00:00
spec . authors = [ " Petr Korolev " , " Olle Jonsson " ]
2015-04-02 09:05:26 +00:00
spec . email = " sky4winder+github_changelog_generator@gmail.com "
2016-03-02 05:27:11 +00:00
2015-04-02 09:05:26 +00:00
spec . summary = " Script, that automatically generate 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 change log file based on tags, issues and merged pull requests from Github issue tracker. "
spec . homepage = " https://github.com/skywinder/Github-Changelog-Generator "
2015-10-02 21:14:19 +00:00
spec . license = " MIT "
2014-11-17 16:01:10 +00:00
2016-04-30 10:03:15 +00:00
spec . files = Dir [ " {bin,lib,man,spec}/**/* " ] + %w( LICENSE Rakefile README.md )
2016-03-21 21:40:24 +00:00
2014-11-18 08:17:01 +00:00
spec . executables = spec . files . grep ( %r{ ^bin/ } ) { | f | File . basename ( f ) }
spec . test_files = spec . files . grep ( %r{ ^(test|spec|features)/ } )
2015-04-02 09:05:26 +00:00
spec . require_paths = [ " lib " ]
2014-11-17 16:01:10 +00:00
2016-02-24 20:55:39 +00:00
spec . add_runtime_dependency " rake " , " >= 10.0 "
2016-09-22 16:20:58 +00:00
spec . add_runtime_dependency " github_api " , " >= 0.14 "
2016-08-31 21:17:35 +00:00
spec . add_runtime_dependency " rainbow " , " >= 2.1 "
2014-11-10 11:36:15 +00:00
end