public
Description: A simple model based ruby authentication solution.
Homepage: http://rdoc.info/projects/binarylogic/authlogic
Clone URL: git://github.com/binarylogic/authlogic.git
Click here to lend your support to: authlogic and make a donation at www.pledgie.com !
authlogic / Rakefile
100644 14 lines (13 sloc) 0.752 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'rubygems'
require File.dirname(__FILE__) << "/lib/authlogic/version"
require 'echoe'
  
Echoe.new 'authlogic' do |p|
  p.version = Authlogic::Version::STRING
  p.author = "Ben Johnson of Binary Logic"
  p.email = 'bjohnson@binarylogic.com'
  p.project = 'authlogic'
  p.summary = "A clean, simple, and unobtrusive ruby authentication solution."
  p.url = "http://github.com/binarylogic/authlogic"
  p.dependencies = %w(activesupport echoe)
  p.install_message = "BREAKS BACKWARDS COMPATIBILITY! This is only for those using I18n. If you were using the Authlogic configuration to implement I18n you need to update your configuration. A new cleaner approach has been implemented for I18n in Authlogic. See Authlogic::I18n for more details."
end