github-changelog-generator/github_changelog_generator.gemspec

22 lines
1004 B
Ruby
Raw Normal View History

2014-11-06 14:19:11 +00:00
Gem::Specification.new do |s|
2014-11-06 14:55:14 +00:00
s.name = "github_changelog_generator"
2014-11-12 09:06:21 +00:00
s.version = "1.1.2"
2014-11-06 14:19:11 +00:00
s.default_executable = "github_changelog_generator"
2014-11-06 18:05:36 +00:00
s.required_ruby_version = '>= 1.9.3'
2014-11-06 14:19:11 +00:00
s.authors = ["Petr Korolev"]
2014-11-12 09:19:11 +00:00
s.date = `date +"%Y-%m-%d"`.strip!
2014-11-06 14:19:11 +00:00
s.description = %q{Script, that automatically generate change-log from your tags and pull-requests}
s.email = %q{sky4winder+github_changelog_generator@gmail.com}
2014-11-06 14:50:47 +00:00
s.files = ["lib/github_changelog_generator.rb", "lib/github_changelog_generator/parser.rb", "bin/github_changelog_generator"]
2014-11-06 14:19:11 +00:00
s.homepage = %q{https://github.com/skywinder/Github-Changelog-Generator}
s.require_paths = ["lib"]
s.rubygems_version = %q{1.6.2}
s.summary = %q{Script, that automatically generate change-log from your tags and pull-requests.}
2014-11-06 14:44:13 +00:00
s.license = "MIT"
2014-11-06 18:05:36 +00:00
s.add_runtime_dependency(%q<httparty>, ["~> 0.13"])
2014-11-06 14:55:14 +00:00
s.add_runtime_dependency(%q<github_api>, ["~> 0.12"])
2014-11-06 14:19:11 +00:00
2014-11-06 15:07:13 +00:00
s.executables = %w(github_changelog_generator)
2014-11-10 11:36:15 +00:00
end