-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommit-comment-tools.gemspec
More file actions
70 lines (64 loc) · 2.43 KB
/
commit-comment-tools.gemspec
File metadata and controls
70 lines (64 loc) · 2.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# -*- coding: utf-8; mode: ruby -*-
#
# Copyright (C) 2013 Haruka Yoshihara <yoshihara@clear-code.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
clean_white_space = lambda do |entry|
entry.gsub(/(\A\n+|\n+\z)/, "") + "\n"
end
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), "lib"))
require "commit-comment-tools/version"
version = CommitCommentTools::VERSION.dup
readme = File.read("README.md")
readme.force_encoding("UTF-8") if readme.respond_to?(:force_encoding)
entries = readme.split(/^## (.+)$/)
authors = clean_white_space.call(entries[entries.index("Authors") + 1])
author_names = []
author_mails = []
authors.each_line do |author|
if /^\* (.+): `<(.+)>`/ =~ author
author_names << $1
author_mails << $2
end
end
summary = clean_white_space.call(entries[entries.index("Description") + 1])
Gem::Specification.new do |spec|
spec.name = "commit-comment-tools"
spec.version = version
spec.authors = author_names
spec.email = author_mails
spec.summary = summary
spec.license = "GPLv3 or later"
spec.files = ["README.md"]
spec.files += ["Rakefile", "Gemfile", "commit-comment-tools.gemspec"]
spec.files += [".yardopts"]
spec.files += Dir.glob("lib/**/*.rb")
spec.files += Dir.glob("templates/*.gp.erb")
spec.files += Dir.glob("doc/text/*")
spec.test_files = Dir.glob("test/**/*.rb")
Dir.chdir("bin") do
spec.executables = Dir.glob("*")
end
spec.add_runtime_dependency("activerecord")
spec.add_runtime_dependency("sqlite3")
spec.add_runtime_dependency("grit")
spec.add_runtime_dependency("gnuplot")
spec.add_development_dependency("test-unit")
spec.add_development_dependency("test-unit-notify")
spec.add_development_dependency("bundler")
spec.add_development_dependency("rake")
spec.add_development_dependency("yard")
spec.add_development_dependency("packnga")
spec.add_development_dependency("redcarpet")
end