forked from slashdotdash/jekyll-lunr-js-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jekyll-lunr-js-search.gemspec
23 lines (20 loc) · 1.02 KB
/
jekyll-lunr-js-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_search/version'
Gem::Specification.new do |s|
s.name = 'jekyll-lunr-js-search'
s.version = Jekyll::LunrJsSearch::VERSION
s.licenses = ['MIT']
s.summary = 'Jekyll + lunr.js = static websites with powerful full-text search using JavaScript'
s.description = 'Use lunr.js to provide simple full-text search, using JavaScript in your browser, for your Jekyll static website.'
s.authors = ['Ben Smith']
s.email = '[email protected]'
s.files = Dir.glob("lib/**/*.rb") + Dir.glob("build/*.min.js")
s.homepage = 'https://github.com/slashdotdash/jekyll-lunr-js-search'
s.require_paths = ['lib']
s.add_runtime_dependency 'nokogiri', '~> 1.6'
s.add_runtime_dependency 'json', '~> 1.8'
s.add_runtime_dependency 'therubyracer', '~> 0.12'
s.add_development_dependency 'rake', '~> 10.3'
s.add_development_dependency 'uglifier', '~> 2.5'
end