binarylogic / authlogic

A simple model based ruby authentication solution.

authlogic / Rakefile
100644 14 lines (12 sloc) 0.446 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'rubygems'
require 'echoe'
 
require File.dirname(__FILE__) << "/lib/authlogic/version"
 
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)
end