say "Building roles" generate(:model, "role name:string") generate(:migration, "UsersHaveAndBelongToManyRoles") habtm_roles = Dir['db/migrate/*_users_have_and_belong_to_many_roles.rb'].first inject_into_file habtm_roles, :after => "def self.up\n" do <<-RUBY create_table :roles_users, :id => false do |t| t.references :role, :user end RUBY end inject_into_file habtm_roles, :after => "def self.down\n" do <<-RUBY drop_table :roles_users RUBY end inject_into_file 'app/models/user.rb', :after => "class User < ActiveRecord::Base\n" do <<-RUBY has_and_belongs_to_many :roles RUBY end inject_into_file 'app/models/role.rb', :after => "class Role < ActiveRecord::Base\n" do <<-RUBY has_and_belongs_to_many :users def self.sanitize role role.to_s.humanize.split(' ').each{ |word| word.capitalize! }.join(' ') end RUBY end create_file 'app/models/ability.rb' do <<-RUBY class Ability include CanCan::Ability def initialize(user) user ||= User.new # guest user if user.role? :admin can :manage, :all end end end RUBY end inject_into_file 'app/models/user.rb', :before => "def destroy\n" do <<-RUBY def role?(role) return !!self.roles.find_by_name( Role.sanitize role ) end RUBY end inject_into_file 'app/controllers/application_controller.rb', :before => "end\n" do <<-RUBY rescue_from CanCan::AccessDenied do |exception| flash[:error] = "Access Denied" redirect_to root_url end RUBY end append_file 'db/seeds.rb' do <<-FILE Role.create! :name => 'Admin' Role.create! :name => 'Member' user1 = User.find_by_email('#{ENV['PROLOGUE_USER_EMAIL']}') user1.role_ids = [1,2] user1.save FILE end