cancan/cancan.gemspec

16 lines
616 B
Ruby
Raw Normal View History

2009-11-17 06:15:10 +00:00
Gem::Specification.new do |s|
2010-04-02 22:25:38 +00:00
s.name = "cancan"
s.version = "1.1.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."
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