-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathRakefile
More file actions
22 lines (21 loc) · 733 Bytes
/
Rakefile
File metadata and controls
22 lines (21 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'rubygems'
require 'rake'
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "authlogic_radius"
gemspec.summary = "Extension of the Authlogic library adding RADIUS support."
gemspec.description = <<-EOF
This is a simple gem to allow authentication against a RADIUS server.
EOF
gemspec.email = "langhorst@neb.com"
gemspec.homepage = "http://github.com/bwlang/authlogic_radius"
gemspec.authors = ["Brad Langhorst"]
gemspec.add_dependency 'authlogic', ">=2.0"
gemspec.add_dependency 'radiustar', ">=0.0.3"
gemspec.files = Dir['lib/**/*.rb']
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: gem install jeweler"
end