-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathumn_shib_auth.gemspec
31 lines (27 loc) · 1.33 KB
/
umn_shib_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
31
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
require 'umn_shib_auth/version'
Gem::Specification.new do |s|
s.name = 'umn_shib_auth'
s.version = UmnShibAuth::VERSION
s.authors = ['ASR']
s.email = ['asrweb@umn.edu']
s.homepage = ''
s.summary = 'UmnShibAuth is an authentication plugin for Rails designed ' \
'to replace the existing UmnAuth x500 plugin for use with Shibboleth.'
s.description = 'UmnShibAuth is an authentication plugin for Rails designed ' \
'to replace the existing UmnAuth x500 plugin for use with Shibboleth.' \
"This plugin should work for all versions of rails--it's been used in Rails 2 through 5."
s.required_ruby_version = '>= 2.6.0'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ['lib']
s.add_development_dependency 'actionpack', '~> 6.0.3'
s.add_development_dependency 'activesupport', '~> 6.0.3'
s.add_development_dependency 'bundler', '2.1.4'
s.add_development_dependency 'bundler-audit'
s.add_development_dependency 'overcommit', '~> 0.57'
s.add_development_dependency 'rake', '~> 13.0'
s.add_development_dependency 'rspec', '~> 3.9'
s.add_development_dependency 'rubocop', '~> 0.93'
end