cancan/cancan.gemspec
2010-04-02 15:25:38 -07:00

16 lines
625 B
Ruby

Gem::Specification.new do |s|
s.name = "cancan"
s.version = "1.0.2"
s.author = "Ryan Bates"
s.email = "ryan@railscasts.com"
s.homepage = "http://github.com/ryanb/cancan"
s.summary = "Simple authorization solution for Rails."
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."
s.files = Dir["{lib,spec}/**/*"] + Dir["[A-Z]*"] + ["init.rb"]
s.require_path = "lib"
s.rubyforge_project = s.name
s.required_rubygems_version = ">= 1.3.4"
end