-
Notifications
You must be signed in to change notification settings - Fork 8
/
casino-moped_authenticator.gemspec
30 lines (26 loc) · 1.26 KB
/
casino-moped_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
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'casino/moped_authenticator/version'
Gem::Specification.new do |s|
s.name = 'casino-moped_authenticator'
s.version = CASino::MopedAuthenticator::VERSION
s.authors = ['Gergo Sulymosi']
s.email = ['gergo@digitalnatives.hu']
s.homepage = 'http://rbcas.org/'
s.license = 'MIT'
s.summary = 'Provides mechanism to use Moped as an authenticator for CASino.'
s.description = 'This gem can be used to allow the CASino backend to authenticate against an MongoDB server using Moped.'
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 'coveralls'
s.add_runtime_dependency 'moped', '~> 1.5'
s.add_runtime_dependency 'unix-crypt', '~> 1.1'
s.add_runtime_dependency 'bcrypt', '~> 3.0'
s.add_runtime_dependency 'casino', ['>= 3.0', '< 5.0']
s.add_runtime_dependency 'phpass-ruby', '~> 0.1'
end