2016-09-22 19:04:35 +02:00
# frozen_string_literal: true
2017-05-25 00:11:02 +02:00
2015-04-02 12:05:26 +03:00
lib = File . expand_path ( " ../lib " , __FILE__ )
2014-11-17 18:01:10 +02:00
$LOAD_PATH . unshift ( lib ) unless $LOAD_PATH . include? ( lib )
2015-04-02 12:05:26 +03:00
require " github_changelog_generator/version "
2014-11-17 18:01:10 +02:00
Gem :: Specification . new do | spec |
2015-04-02 12:05:26 +03:00
spec . name = " github_changelog_generator "
2014-11-17 18:01:10 +02:00
spec . version = GitHubChangelogGenerator :: VERSION
2015-04-02 12:05:26 +03:00
spec . default_executable = " github_changelog_generator "
2014-11-17 18:01:10 +02:00
2017-12-13 21:00:36 +01:00
spec . required_ruby_version = " >= 2.2.2 "
2016-03-02 09:10:50 +02:00
spec . authors = [ " Petr Korolev " , " Olle Jonsson " ]
2015-04-02 12:05:26 +03:00
spec . email = " sky4winder+github_changelog_generator@gmail.com "
2016-03-02 06:27:11 +01:00
2015-04-02 12:05:26 +03:00
spec . summary = " Script, that automatically generate changelog from your tags, issues, labels and pull requests. "
2017-12-14 02:51:00 +05:45
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 issue tracker. "
2015-04-02 12:05:26 +03:00
spec . homepage = " https://github.com/skywinder/Github-Changelog-Generator "
2015-10-02 18:14:19 -03:00
spec . license = " MIT "
2014-11-17 18:01:10 +02:00
2017-05-25 00:11:02 +02:00
spec . files = Dir [ " {bin,lib,man,spec}/**/* " ] + %w[ LICENSE Rakefile README.md ]
2016-03-21 22:40:24 +01:00
2014-11-18 10:17:01 +02: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 12:05:26 +03:00
spec . require_paths = [ " lib " ]
2014-11-17 18:01:10 +02:00
2016-05-18 15:40:25 -07:00
spec . add_runtime_dependency ( " activesupport " )
2017-10-27 08:49:52 +02:00
spec . add_runtime_dependency ( " faraday-http-cache " )
2016-11-06 11:20:03 -05:00
spec . add_runtime_dependency ( " multi_json " )
2017-10-27 08:49:52 +02:00
spec . add_runtime_dependency ( " octokit " , [ " ~> 4.6 " ] )
spec . add_runtime_dependency " rainbow " , " >= 2.2.1 "
spec . add_runtime_dependency " rake " , " >= 10.0 "
spec . add_runtime_dependency ( " retriable " , [ " ~> 3.0 " ] )
2014-11-10 13:36:15 +02:00
end