-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmiddleman-blog-similar.gemspec
27 lines (25 loc) · 1.03 KB
/
middleman-blog-similar.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
# -*- encoding: utf-8 -*-
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'middleman-blog-similar/version'
Gem::Specification.new do |s|
s.name = 'middleman-blog-similar'
s.version = Middleman::Blog::Similar::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Atsushi Nagase']
s.email = ['a@ngs.io']
s.homepage = 'https://github.com/ngs/middleman-blog-similar'
s.summary = 'Similar article extension for middleman-blog'
s.description = <<-EOF
Similar article extension for middleman-blog.
Finds similar articles using tags, part-of-speech or custom lambda.
EOF
s.license = 'MIT'
s.files = `git ls-files -z`.split("\0")
s.test_files = `git ls-files -z -- {fixtures,features,spec}/*`.split("\0")
s.require_paths = ['lib']
s.required_ruby_version = '>= 2.2.0'
s.add_runtime_dependency 'activerecord', '~> 5.0', '>= 5.0.0'
s.add_runtime_dependency 'middleman-core', '~> 4.0', '>= 4.0.0'
s.add_runtime_dependency 'middleman-blog', '~> 4.0', '>= 4.0.0'
s.add_dependency 'sqlite3', '~> 1.3'
end