forked from rbCAS/casino-activerecord_authenticator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcasino-activerecord_authenticator.gemspec
31 lines (27 loc) · 1.38 KB
/
casino-activerecord_authenticator.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'casino/activerecord_authenticator/version'
Gem::Specification.new do |s|
s.name = 'casino-activerecord_authenticator'
s.version = CASino::ActiveRecordAuthenticator::VERSION
s.authors = ['Nils Caspar', 'Raffael Schmid']
s.email = ['[email protected]', '[email protected]']
s.homepage = 'http://rbcas.org/'
s.license = 'MIT'
s.summary = 'Provides mechanism to use ActiveRecord as an authenticator for CASino.'
s.description = 'This gem can be used to allow the CASino backend to authenticate against an SQL server using ActiveRecord.'
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']
s.add_development_dependency 'rake', '~> 10.0'
s.add_development_dependency 'rspec', '~> 2.12'
s.add_development_dependency 'simplecov', '~> 0.7'
s.add_development_dependency 'sqlite3', '~> 1.3.7'
s.add_development_dependency 'coveralls'
s.add_runtime_dependency 'activerecord', '>= 4.1.0', '< 4.3.0'
s.add_runtime_dependency 'unix-crypt', '~> 1.1'
s.add_runtime_dependency 'bcrypt', '~> 3.0'
s.add_runtime_dependency 'casino', '>= 3.0.0', '< 5.0.0'
s.add_runtime_dependency 'phpass-ruby', '~> 0.1'
end