This repository has been archived by the owner on Jul 31, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
worthwhile.gemspec
44 lines (38 loc) · 1.94 KB
/
worthwhile.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
# coding: utf-8
version = File.read(File.expand_path("../WORTHWHILE_VERSION",__FILE__)).strip
# lib = File.expand_path('../lib', __FILE__)
# $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = "worthwhile"
spec.version = version
spec.authors = ["Justin Coyne"]
spec.email = ["[email protected]"]
spec.summary = %q{A simple institutional repository for Hydra}
spec.description = %q{A self-deposit system with works and and many attached files}
spec.homepage = ""
spec.license = "APACHE2"
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.add_dependency 'hydra-head' # allow sufia-models to specify the version
spec.add_dependency "breadcrumbs_on_rails", "~> 2.3.0"
spec.add_dependency "active_attr"
spec.add_dependency "simple_form", '~> 3.1.0'
spec.add_dependency 'worthwhile-models', version
spec.add_dependency 'hydra-collections' # allow sufia-models to specify the version
spec.add_dependency 'hydra-derivatives' # allow sufia-models to specify the version
spec.add_dependency 'hydra-editor' # allow sufia-models to specify the version
spec.add_development_dependency "devise", "~> 3.0"
spec.add_development_dependency "bundler", "~> 1.6"
spec.add_development_dependency "rake"
spec.add_development_dependency "engine_cart", "~> 0.6"
spec.add_development_dependency "sqlite3"
spec.add_development_dependency "rspec-its"
spec.add_development_dependency "rspec-rails"
spec.add_development_dependency 'rspec-html-matchers'
spec.add_development_dependency "capybara"
spec.add_development_dependency "poltergeist", ">= 1.5.0"
spec.add_development_dependency "factory_girl"
spec.add_development_dependency "database_cleaner", "< 1.1.0"
end