-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathblacklight-hierarchy.gemspec
30 lines (26 loc) · 1.17 KB
/
blacklight-hierarchy.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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'blacklight/hierarchy/version'
Gem::Specification.new do |s|
s.name = 'blacklight-hierarchy'
s.version = Blacklight::Hierarchy::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Michael B. Klein']
s.email = ['dlss-dev@lists.stanford.edu']
s.homepage = 'https://github.com/sul-dlss/blacklight-hierarchy'
s.summary = 'Hierarchical Facets for Blacklight'
s.description = 'Allows delimited Solr facets to become hierarchical trees in Blacklight.'
s.files = `git ls-files -z`.split("\x0")
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.bindir = 'exe'
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
s.require_paths = ['lib']
s.add_dependency 'blacklight', '>= 7.18', '< 9'
s.add_dependency 'rails', '>= 6.1', '< 7.3'
s.add_dependency 'deprecation'
s.add_development_dependency 'rsolr'
s.add_development_dependency 'rspec-rails'
s.add_development_dependency 'sqlite3'
s.add_development_dependency 'engine_cart', '~> 2.3'
s.add_development_dependency 'capybara'
end