public
Fork of binarylogic/authlogic
Description: A clean, simple, and unobtrusive ruby authentication solution.
Homepage: http://authlogic.rubyforge.org
Clone URL: git://github.com/sob/authlogic.git
authlogic / Rakefile
100644 20 lines (18 sloc) 0.773 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
ENV['RDOCOPT'] = "-S -f html -T hanna"
 
require "rubygems"
require "hoe"
require File.dirname(__FILE__) << "/lib/authlogic/version"
 
Hoe.new("Authlogic", Authlogic::Version::STRING) do |p|
  p.name = "authlogic"
  p.author = "Ben Johnson of Binary Logic"
  p.email = 'bjohnson@binarylogic.com'
  p.summary = "A clean, simple, and unobtrusive ruby authentication solution."
  p.description = "A clean, simple, and unobtrusive ruby authentication solution."
  p.url = "http://github.com/binarylogic/authlogic"
  p.history_file = "CHANGELOG.rdoc"
  p.readme_file = "README.rdoc"
  p.extra_rdoc_files = ["CHANGELOG.rdoc", "README.rdoc"]
  p.remote_rdoc_dir = ''
  p.test_globs = ["test/*/test_*.rb", "test/*_test.rb", "test/*/*_test.rb"]
  p.extra_deps = %w(activesupport)
end