TheRole/TheRoleApi

View on GitHub
lib/the_role_api/activerecord.rb

Summary

Maintainability
A
0 mins
Test Coverage
module TheRole
  module Api
    module ActiveRecord
      def has_the_role
        include TheRole::Api::User
      end

      def acts_as_the_role
        include TheRole::Api::Role
      end
    end
  end
end