-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhyrax-iiif_av.gemspec
34 lines (28 loc) · 1.26 KB
/
hyrax-iiif_av.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
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "hyrax/iiif_av/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "hyrax-iiif_av"
s.version = Hyrax::IiifAv::VERSION
s.authors = ["Chris Colvard", "Brian Keese", "Ying Feng", "Phuong Dinh"]
s.summary = "Hyrax plugin for IIIF Presentation 3.0 audiovisual support"
s.description = "Hyrax plugin for IIIF Presentation 3.0 audiovisual support"
s.license = 'Apache-2.0'
s.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
s.add_dependency "rails", "~>5.1"
s.add_dependency "blacklight"
s.add_dependency "hyrax", ">= 2.9", "< 4.0"
s.add_dependency "iiif_manifest", "> 0.5"
s.add_development_dependency 'bixby'
s.add_development_dependency 'coffee-rails'
s.add_development_dependency 'engine_cart', '~> 2.2'
s.add_development_dependency 'factory_bot'
s.add_development_dependency 'rails-controller-testing'
s.add_development_dependency 'rspec-rails', '~> 3.8'
s.add_development_dependency 'rspec_junit_formatter'
end