forked from rbCAS/CASino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcasino.gemspec
38 lines (34 loc) · 1.58 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
$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 = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
end
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.add_runtime_dependency 'rails', '> 7.0.0'
s.add_runtime_dependency 'sass-rails', '>= 4.0.0'
s.add_runtime_dependency 'addressable', '~> 2.8.7'
s.add_runtime_dependency 'terminal-table', '~> 1.8'
s.add_runtime_dependency 'useragent', '~> 0.16.10'
s.add_runtime_dependency 'faraday', '~> 0.17.6'
s.add_runtime_dependency 'rotp', '~> 6.3.0'
s.add_runtime_dependency 'grape', '~> 2.2.0'
s.add_runtime_dependency 'grape-entity', '~> 1.0.1'
s.add_runtime_dependency 'rqrcode_png_with_fixes', '~> 0.1.6'
s.add_runtime_dependency 'kaminari', '~> 1.2.2'
end