forked from boston-library/blacklight_iiif_search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblacklight_iiif_search.gemspec
34 lines (28 loc) · 1.2 KB
/
blacklight_iiif_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
24
25
26
27
28
29
30
31
32
33
34
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
# Maintain your gem's version:
require 'blacklight_iiif_search/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'blacklight_iiif_search'
s.version = BlacklightIiifSearch::VERSION
s.authors = ['Eben English']
s.email = ['eenglish@bpl.org']
s.homepage = 'https://github.com/boston-library/blacklight_iiif_search'
s.summary = 'Blacklight IIIF Search plugin'
s.description = 'Blacklight IIIF Search plugin'
s.license = 'Apache-2.0'
s.files = Dir['{app,config,db,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.rdoc']
s.test_files = Dir['spec/**/*']
s.source
s.metadata["homepage_uri"] = s.homepage
s.metadata["source_code_uri"] = s.homepage
s.add_dependency 'rails', '>= 5.1', '< 8'
s.add_dependency 'blacklight', '~> 7.0'
s.add_dependency 'iiif-presentation'
s.add_development_dependency 'rspec-rails', '~> 3.0'
s.add_development_dependency 'solr_wrapper', '~> 2.0'
s.add_development_dependency 'engine_cart', '~> 2.1'
s.add_development_dependency 'byebug'
s.add_development_dependency 'bixby', '~> 1.0.0'
end