-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdor-rights-auth.gemspec
30 lines (25 loc) · 1.06 KB
/
dor-rights-auth.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift lib unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |s|
s.name = 'dor-rights-auth'
s.version = '1.8.0'
s.platform = Gem::Platform::RUBY
s.authors = ['Willy Mene', 'Joe Atzberger', 'Johnathan Martin', 'Naomi Dushay']
s.email = ['[email protected]']
s.summary = 'Parses rightsMetadata xml into a useable object'
s.description = 'Parses rightsMetadata xml into a useable object'
s.metadata['rubygems_mfa_required'] = 'true'
s.required_rubygems_version = '>= 1.3.6'
s.required_ruby_version = '> 2.5'
s.add_dependency 'nokogiri'
s.add_development_dependency 'codeclimate-test-reporter'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec', '~> 3.0'
s.add_development_dependency 'rubocop'
s.add_development_dependency 'rubocop-rspec'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'yard'
s.files = Dir.glob('lib/**/*')
s.require_path = 'lib'
end