forked from slashdotdash/jekyll-lunr-js-search
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathjekyll-lunr-js-custom-search.gemspec
23 lines (20 loc) · 1 KB
/
jekyll-lunr-js-custom-search.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'jekyll_lunr_js_custom_search/version'
Gem::Specification.new do |s|
s.name = 'jekyll-lunr-js-custom-search'
s.version = Jekyll::LunrJsSearch::VERSION
s.licenses = ['MIT']
s.summary = 'Custom search plugin for collections in Jekyll'
s.description = 'Use lunr.js to provide custom search, using JavaScript in your browser, for your Jekyll static website.'
s.authors = ['Ben Smith', "Niqui O'Neill"]
s.files = Dir.glob("lib/**/*.rb") + Dir.glob("build/*.min.js")
s.homepage = 'https://github.com/dnoneill/jekyll-lunr-js-search'
s.require_paths = ['lib']
s.add_runtime_dependency 'nokogiri', '~> 1.7'
s.add_runtime_dependency 'json', '~> 2.0'
s.add_runtime_dependency 'execjs', '~> 2.7'
#s.add_runtime_dependency 'therubyracer', '~> 0.12.3'
s.add_development_dependency 'rake', '~> 12.0'
s.add_development_dependency 'jsmin', '<= 1.0.1'
end