-
Notifications
You must be signed in to change notification settings - Fork 6
/
museum_provenance.gemspec
executable file
·34 lines (30 loc) · 1.64 KB
/
museum_provenance.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'museum_provenance/version'
Gem::Specification.new do |spec|
spec.name = "museum_provenance"
spec.version = MuseumProvenance::VERSION
spec.authors = ["David Newbury"]
spec.email = ["[email protected]"]
spec.summary = %q{A library for extracting structured data from museum provenance records.}
spec.description = %q{museum_provenance is a Ruby library developed to help cultural institutions manage and understand the provenance of the objects within their collection. It does this by parsing semi-structured provenance texts into structured data. Developed as part of the Art Tracks project at the Carnegie Museum of Art.}
spec.homepage = "http://museumprovenance.com"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.has_rdoc = 'yard'
spec.required_ruby_version = '~> 2.3.1'
spec.add_development_dependency "bundler", "~> 1.13"
spec.add_development_dependency "rake", '< 11'
spec.add_development_dependency "minitest"
spec.add_development_dependency 'yard'
spec.add_development_dependency "ruby-graphviz", "1.2.2"
spec.add_development_dependency 'linkeddata'
spec.add_runtime_dependency 'edtf', ">= 3.0.1"
spec.add_runtime_dependency 'cultural_dates'
spec.add_runtime_dependency 'parslet'
spec.add_runtime_dependency 'activesupport', '~> 4.2'
end