forked from rbCAS/CASino
-
Notifications
You must be signed in to change notification settings - Fork 1
/
casino.gemspec
39 lines (34 loc) · 1.55 KB
/
casino.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
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'casino/version'
Gem::Specification.new do |s|
s.name = 'casino'
s.version = CASino::VERSION
s.authors = ['Nils Caspar', 'Raffael Schmid', 'Samuel Sieg']
s.email = ['ncaspar@me.com', 'raffael@yux.ch', 'samuel.sieg@me.com']
s.homepage = 'http://rbcas.org/'
s.license = 'MIT'
s.summary = 'A simple CAS server written in Ruby using the Rails framework.'
s.description = 'CASino is a simple CAS (Central Authentication Service) server.'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.require_paths = ['lib']
sign_file = File.expand_path '~/.gem/casino-private_key.pem'
if File.exist?(sign_file)
s.signing_key = sign_file
s.cert_chain = ['casino-public_cert.pem']
end
s.required_ruby_version = '>= 3.1.0'
s.add_runtime_dependency 'addressable', '>= 2.3'
s.add_runtime_dependency 'faraday', '>= 0.15.4'
s.add_runtime_dependency 'grape', '>= 0.8'
s.add_runtime_dependency 'grape-entity', '>= 0.4'
s.add_runtime_dependency 'kaminari', '>= 1.2.1'
s.add_runtime_dependency 'rails', '>= 7.1'
s.add_runtime_dependency 'rotp', '>= 2.0'
s.add_runtime_dependency 'rqrcode', '~> 0.10.1'
s.add_runtime_dependency 'rqrcode_png', '>= 0.1'
s.add_runtime_dependency 'sass-rails', '>= 4.0.0'
s.add_runtime_dependency 'terminal-table', '>= 1.4'
s.add_runtime_dependency 'useragent', '>= 0.4'
end