forked from kurtsson/jekyll-multiple-languages-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jekyll-multiple-languages-plugin.gemspec
30 lines (23 loc) · 1.16 KB
/
jekyll-multiple-languages-plugin.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'plugin/version'
Gem::Specification.new do |s|
s.name = "jekyll-multiple-languages-plugin"
s.version = Jekyll::MultipleLanguagesPlugin::VERSION
s.license = "MIT"
s.summary = %q{I18n plugin for Jekyll}
s.description = %q{Plugin for Jekyll 2.x and 3.x that adds support for translated keys, templates and posts.}
s.authors = ["Martin Kurtsson", "Yonatan Miller"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "https://github.com/kurtsson/jekyll-multiple-languages-plugin/"
all_files = `git ls-files -z`.split("\x0")
s.files = all_files.grep(%r{^lib/})
# s.executables = all_files.grep(%r{^bin/}) { |f| File.basename(f) }
s.require_paths = ["lib"]
s.rdoc_options = ['--charset=UTF-8']
s.extra_rdoc_files = %w[README.md LICENSE.txt]
s.add_development_dependency "html-proofer"
s.add_development_dependency "rake", ">= 12.3.3"
s.add_runtime_dependency "jekyll", ">= 2.0", "< 5.0"
end