forked from sul-dlss/mods_display
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmods_display.gemspec
25 lines (21 loc) · 1.07 KB
/
mods_display.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'mods_display/version'
Gem::Specification.new do |gem|
gem.name = "mods_display"
gem.version = ModsDisplay::VERSION
gem.authors = ["Jessie Keck"]
gem.email = ["[email protected]"]
gem.description = %q{MODS Display is a gem to centralize the display logic of MODS medadata.}
gem.summary = %q{The MODS Display gem allows implementers to configure a customized display of MODS metadata. This display implements the specifications defined at Stanford for how to display MODS.}
gem.homepage = "https://github.com/sul-dlss/mods_display"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(spec)/})
gem.require_paths = ["lib"]
gem.add_dependency 'stanford-mods', '1.1.2'
gem.add_dependency 'i18n'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec'
end