forked from samvera/hydra-role-management
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hydra-role-management.gemspec
26 lines (23 loc) · 1.09 KB
/
hydra-role-management.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/hydra/role_management/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Justin Coyne"]
gem.email = ["justin@curationexperts.com"]
gem.description = %q{Rails engine to do user roles in an RDBMS for hydra-head}
gem.summary = %q{Rails engine to do user roles in an RDBMS for hydra-head}
gem.homepage = "https://github.com/projecthydra/hydra-role-management"
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{^(test|spec|features)/})
gem.name = "hydra-role-management"
gem.require_paths = ["lib"]
gem.version = Hydra::RoleManagement::VERSION
gem.license = 'Apache 2.0'
gem.add_dependency 'bootstrap_form'
gem.add_dependency 'blacklight'
gem.add_dependency 'cancancan'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec-rails'
gem.add_development_dependency 'rspec-its'
gem.add_development_dependency 'engine_cart'
end