-
Notifications
You must be signed in to change notification settings - Fork 1
/
blacklight-citeproc.gemspec
33 lines (27 loc) · 1.24 KB
/
blacklight-citeproc.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
31
32
33
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
# Maintain your gem's version:
require 'blacklight/citeproc/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = 'blacklight-citeproc'
spec.version = Blacklight::Citeproc::VERSION
spec.authors = ['Jane Sandberg']
spec.email = ['[email protected]']
spec.homepage = 'https://github.com/sandbergja/blacklight-citeproc'
spec.summary = 'Generate and display citeproc citations in a Blacklight app'
spec.description = 'Swap in really accurate citations using a wide variety of citation styles to your Blacklight app'
spec.license = 'MIT'
spec.required_ruby_version = '>= 2.7'
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_dependency 'bibtex-ruby', '>= 4.4.6', '< 7'
spec.add_dependency 'citeproc-ruby', '~> 1.1'
spec.add_dependency 'csl-styles', '~> 1.0'
spec.add_development_dependency 'rspec-rails', '~> 3.0'
spec.add_development_dependency 'rubocop', '~> 1.29'
end