-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgettext-haml.gemspec
50 lines (46 loc) · 1.63 KB
/
gettext-haml.gemspec
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
# -*- ruby -*-
#
# Copyright (C) 2020 Sutou Kouhei <[email protected]>
#
# This library is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This library 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 Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library. If not, see <http://www.gnu.org/licenses/>.
require_relative "lib/gettext-haml/version"
Gem::Specification.new do |s|
s.name = "gettext-haml"
s.version = GetTextHaml::VERSION
s.summary = "This is a gettext plugin to support Haml."
s.description = <<-DESCRIPTION
You can extract messages from Haml files with this library.
DESCRIPTION
s.authors = ["Kouhei Sutou"]
s.email = ["[email protected]"]
s.homepage = "https://ruby-gettext.github.io/"
s.license = "LGPLv3+"
s.require_paths = ["lib"]
s.files = Dir.glob("lib/**/*.rb")
s.files += Dir.glob("doc/text/**/*.*")
s.files += [
"#{s.name}.gemspec",
".yardopts",
"Gemfile",
"README.md",
"Rakefile",
]
s.test_files = Dir.glob("test/**/*.rb")
s.add_runtime_dependency("gettext")
s.add_runtime_dependency("haml")
s.add_development_dependency("kramdown")
s.add_development_dependency("rake")
s.add_development_dependency("test-unit")
s.add_development_dependency("yard")
end