-
Notifications
You must be signed in to change notification settings - Fork 30
/
qa.gemspec
55 lines (49 loc) · 2.5 KB
/
qa.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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "qa/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "qa"
s.version = Qa::VERSION
s.authors = ["Stephen Anderson", "Don Brower", "Jim Coble", "Mike Dubin", "Randall Floyd", "Eric James", "Mike Stroming", "Adam Wead", "E. Lynette Rayle"]
s.email = ["amsterdamos@gmail.com"]
s.homepage = "https://github.com/projecthydra/questioning_authority"
s.summary = "You should question your authorities."
s.description = "Provides a set of uniform RESTful routes to query any controlled vocabulary or set of authority terms."
s.license = "APACHE-2"
s.files = Dir["{app,config,db,lib}/**/*", "LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["spec/**/*"]
s.metadata = { "rubygems_mfa_required" => "true" }
s.add_dependency 'activerecord-import'
s.add_dependency 'deprecation'
s.add_dependency 'faraday', '< 3.0', '!= 2.0.0'
s.add_dependency 'geocoder'
s.add_dependency 'ldpath'
s.add_dependency 'nokogiri', '~> 1.6'
s.add_dependency 'rails', '>=5.0', "< 8.0"
s.add_dependency 'rdf'
# the hyrax style guide is based on `bixby`. see `.rubocop.yml`
s.add_development_dependency 'bixby', '~> 5.0', '>= 5.0.2' # bixby 5 briefly dropped Ruby 2.5
s.add_development_dependency 'rails', '!=5.2.0', '!=5.2.1', '!=5.2.2'
s.add_development_dependency 'byebug'
s.add_development_dependency 'engine_cart', '~> 2.0'
# Not sure why these RDF-related gems are only being listed as development dependencies
# not general runtime dependencies...
# ... maybe meant to be optional dependencies only if you are using related
# func? See also the "meta" gem `linkeddata` which includes all of these deps.
#
# If apps find they need these optional dependencies for linked-data-related
# functionality from qa gem, they may find it easiest to include the `linkeddata`
# aggregator gem as one of their dependencies.
s.add_development_dependency 'rdf-n3', '~> 3.0'
s.add_development_dependency 'rdf-rdfxml', '~> 3.0'
s.add_development_dependency 'json-ld', '~> 3.0'
s.add_development_dependency 'rdf-vocab', '~> 3.0'
s.add_development_dependency 'pry'
s.add_development_dependency 'pry-byebug'
s.add_development_dependency 'rspec-rails'
s.add_development_dependency 'sqlite3'
s.add_development_dependency 'swagger-docs'
s.add_development_dependency 'webmock'
s.add_development_dependency 'rspec_junit_formatter'
end