-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathdevise-radius-authenticatable.gemspec
More file actions
33 lines (28 loc) · 1.73 KB
/
devise-radius-authenticatable.gemspec
File metadata and controls
33 lines (28 loc) · 1.73 KB
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
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/devise/radius_authenticatable/version", __FILE__)
Gem::Specification.new do |s|
s.name = "devise-radius-authenticatable"
s.version = Devise::RadiusAuthenticatable::VERSION.dup
s.platform = Gem::Platform::RUBY
s.summary = "Devise extension to allow authentication via Radius"
s.email = "cbascom@gmail.com"
s.homepage = "http://github.com/cbascom/devise-radius-authenticatable"
s.description = "A new authentication strategy named radius_authenticatable is added to the list of warden strategies when the model requests it. The radius server information is configured through the devise initializer. When a user attempts to authenticate via radius, the radiustar gem is used to perform the authentication with the radius server. This authentication strategy can be used in place of the database_authenticatable or alongside it depending on the needs of the application."
s.authors = ['Calvin Bascom']
s.license = 'MIT'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- spec/*`.split("\n")
s.require_paths = ["lib"]
s.add_dependency('devise', '~> 2.0')
s.add_dependency('radiustar', '~> 0.0.8')
s.add_development_dependency('rake', '~> 0.9')
s.add_development_dependency('rails', '~> 3.2')
s.add_development_dependency('jquery-rails', '~> 2.0')
s.add_development_dependency('sqlite3', '~> 1.3')
s.add_development_dependency('rspec', '~> 2.10')
s.add_development_dependency('rspec-rails', '~> 2.10')
s.add_development_dependency('factory_girl', '~> 3.4')
s.add_development_dependency('capybara', '~> 1.1')
s.add_development_dependency('launchy')
s.add_development_dependency('ammeter', '~> 0.2')
end