forked from raphaelmenges/bibsonomy-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbibsonomy-jekyll.gemspec
More file actions
27 lines (21 loc) · 890 Bytes
/
bibsonomy-jekyll.gemspec
File metadata and controls
27 lines (21 loc) · 890 Bytes
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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'version'
Gem::Specification.new do |s|
s.name = 'bibsonomy-jekyll'
s.summary = 'BibSonomy plugin for Jekyll'
s.version = BibSonomyJekyll::VERSION
s.authors = ['Robert Jäschke']
s.email = 'jaeschke@l3s.de'
s.description = %q{Enables rendering of posts from BibSonomy with a Jekyll tag.}
s.homepage = 'https://github.com/rjoberon/bibsonomy-jekyll'
s.licenses = ['GPL-3.0']
s.files = `git ls-files -z`.split("\x0")
s.add_dependency 'jekyll', '>= 3.8.3'
s.add_dependency 'bibsonomy', '~> 0.4', '>= 0.4.16'
s.add_development_dependency 'rake', '~> 12.3'
s.add_development_dependency "rspec", "~> 3.5"
s.add_development_dependency "rubocop", "~> 0.57"
s.add_development_dependency "coveralls", '~> 0.7'
end