cancan/lib/generators/cancan/ability/ability_generator.rb

12 lines
260 B
Ruby
Raw Normal View History

2010-12-21 19:38:27 +00:00
module Cancan
module Generators
class AbilityGenerator < Rails::Generators::Base
source_root File.expand_path('../templates', __FILE__)
def generate_ability
copy_file "ability.rb", "app/models/ability.rb"
end
end
end
end