-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathblacklight_heatmaps.gemspec
30 lines (26 loc) · 1.18 KB
/
blacklight_heatmaps.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
$:.push File.expand_path('../lib', __FILE__)
# Maintain your gem's version:
require 'blacklight_heatmaps/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'blacklight_heatmaps'
s.version = BlacklightHeatmaps::VERSION
s.authors = ['Jack Reed']
s.email = ['[email protected]']
s.homepage = 'https://github.com/sul-dlss/blacklight_heatmaps'
s.summary = 'Search and view Blacklight resources on a map.'
s.description = 'Search and view Blacklight resources on a map.'
s.license = 'Apache'
s.files = Dir['{app,config,db,lib,vendor}/**/*', 'LICENSE.txt', 'Rakefile', 'README.md']
s.test_files = Dir['spec/**/*']
s.add_dependency 'rails', '>= 7.1.4', '< 8'
s.add_dependency 'blacklight', '>= 7.17.1', '< 9'
s.add_dependency 'leaflet-rails', '~> 1.3.0'
s.add_dependency 'leaflet-sidebar-rails', '~> 0.2'
s.add_development_dependency 'sqlite3'
s.add_development_dependency 'rspec-rails'
s.add_development_dependency 'engine_cart', '~> 2.0'
s.add_development_dependency 'solr_wrapper'
s.add_development_dependency 'capybara'
s.add_development_dependency 'selenium-webdriver', '~> 4.11'
end