2021-01-21 08:43:04 +03:00
|
|
|
begin
|
|
|
|
require_relative 'lib/erb/version'
|
|
|
|
rescue LoadError
|
|
|
|
# for Ruby core repository
|
2021-01-21 08:45:34 +03:00
|
|
|
require_relative 'erb/version'
|
2021-01-21 08:43:04 +03:00
|
|
|
end
|
|
|
|
|
2020-08-21 14:18:44 +03:00
|
|
|
Gem::Specification.new do |spec|
|
2021-01-21 08:36:22 +03:00
|
|
|
spec.name = 'erb'
|
2021-01-21 08:43:04 +03:00
|
|
|
spec.version = ERB.const_get(:VERSION, false)
|
2021-01-21 08:36:22 +03:00
|
|
|
spec.authors = ['Masatoshi SEKI']
|
|
|
|
spec.email = ['seki@ruby-lang.org']
|
2020-08-21 14:18:44 +03:00
|
|
|
|
|
|
|
spec.summary = %q{An easy to use but powerful templating system for Ruby.}
|
|
|
|
spec.description = %q{An easy to use but powerful templating system for Ruby.}
|
2021-01-21 08:36:22 +03:00
|
|
|
spec.homepage = 'https://github.com/ruby/erb'
|
2021-03-25 12:23:59 +03:00
|
|
|
spec.required_ruby_version = Gem::Requirement.new('>= 2.5.0')
|
2021-01-21 08:36:22 +03:00
|
|
|
spec.licenses = ['Ruby', 'BSD-2-Clause']
|
2020-08-21 14:18:44 +03:00
|
|
|
|
2021-01-21 08:36:22 +03:00
|
|
|
spec.metadata['homepage_uri'] = spec.homepage
|
|
|
|
spec.metadata['source_code_uri'] = spec.homepage
|
2020-08-21 14:18:44 +03:00
|
|
|
|
2021-01-21 08:36:22 +03:00
|
|
|
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
2020-08-21 14:18:44 +03:00
|
|
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
|
|
end
|
2021-01-21 08:36:22 +03:00
|
|
|
spec.bindir = 'libexec'
|
|
|
|
spec.executables = ['erb']
|
|
|
|
spec.require_paths = ['lib']
|
2020-12-01 15:21:33 +03:00
|
|
|
|
2021-01-21 08:36:22 +03:00
|
|
|
spec.add_dependency 'cgi'
|
2020-08-21 14:18:44 +03:00
|
|
|
end
|