-
Notifications
You must be signed in to change notification settings - Fork 3
/
trln_argon.gemspec
59 lines (52 loc) · 2.49 KB
/
trln_argon.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
# Maintain your gem's version:
require 'trln_argon/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'trln_argon'
s.version = File.read('VERSION')
s.authors = ['Cory Lown']
s.email = ['cory.lown@duke.edu']
s.homepage = 'https://github.com/trln/'
s.summary = 'TRLN Argon is a Rails Engine that bootstraps a Blacklight catalog '\
'designed for use with the TRLN shared catalog index.'
s.description = 'TRLN Argon is a Rails Engine that bootstraps a Blacklight catalog '\
'designed for use with the TRLN shared catalog index.'
s.license = 'MIT'
s.files = Dir['{app,config,db,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.md']
s.add_dependency 'rails', '~> 7.1'
s.add_dependency 'blacklight', '~> 7.0'
s.add_dependency 'blacklight_advanced_search', '~> 8.0.0.alpha2'
s.add_dependency 'blacklight-hierarchy', '~> 6.3'
s.add_dependency 'blacklight_range_limit', '~> 7'
s.add_dependency 'git', '>= 1.11.0', "< 2"
s.add_dependency 'rails_autolink', '~> 1.1'
s.add_dependency 'library_stdnums', '~> 1.6'
s.add_dependency 'font-awesome-rails', '~> 4.7'
s.add_dependency 'coffee-rails', '~> 4.2'
s.add_dependency 'rsolr', '>= 1.0', '< 3'
s.add_dependency 'addressable', '~> 2.5'
s.add_dependency 'sprockets', '~> 4.0'
s.add_dependency 'trln-chosen-rails', '~> 1.20'
s.add_dependency 'citeproc-ruby', '~> 1.1'
s.add_dependency 'csl-styles', '~> 1.0'
s.add_dependency 'bibtex-ruby', '>= 4.4.6', '< 7'
s.add_development_dependency 'rspec-rails', '~> 6'
s.add_development_dependency 'capybara', '~> 3.29'
s.add_development_dependency 'pry', '~> 0.14'
s.add_development_dependency 'rubocop', '~> 1.0'
s.add_development_dependency 'rubocop-rspec', '~> 2.5'
s.add_development_dependency 'webmock', '~> 3.7'
s.add_development_dependency 'vcr', '~> 5.0'
s.add_development_dependency 'engine_cart', '~> 2.2'
s.add_development_dependency 'listen'
s.add_development_dependency 'better_errors', '~> 2.9.1'
s.add_development_dependency 'binding_of_caller', '~> 1.0'
s.add_development_dependency 'rake', '~> 13'
# Conditionally constrain nokogiri & sqlite3 to versions that still work with Ruby 2.7
# TODO: remove when we are all using Ruby 3+.
if Gem::Requirement.new('< 3.1').satisfied_by?(Gem::Version.new(RUBY_VERSION))
s.add_dependency 'nokogiri', '< 1.16'
s.add_dependency 'sqlite3', '< 1.7'
end
end