2009-11-17 06:15:10 +00:00
Gem :: Specification . new do | s |
2010-04-02 22:25:38 +00:00
s . name = " cancan "
2010-07-19 16:21:14 +00:00
s . version = " 1.2.0 "
2010-04-02 22:25:38 +00:00
s . author = " Ryan Bates "
s . email = " ryan@railscasts.com "
s . homepage = " http://github.com/ryanb/cancan "
s . summary = " Simple authorization solution for Rails. "
2009-11-17 06:15:10 +00:00
s . description = " Simple authorization solution for Rails which is completely decoupled from the user's roles. All permissions are stored in a single location for convenience. "
2010-04-05 15:22:02 +00:00
s . files = Dir [ " {lib,spec}/**/* " , " [A-Z]* " , " init.rb " ]
2010-04-02 22:25:38 +00:00
s . require_path = " lib "
2009-11-17 06:15:10 +00:00
2010-04-02 22:25:38 +00:00
s . rubyforge_project = s . name
s . required_rubygems_version = " >= 1.3.4 "
2009-11-17 06:15:10 +00:00
end