Rabarber is a role-based authorization library for Ruby on Rails. It provides a set of tools for managing user roles and defining access rules, with support for multi-tenancy through context.
Example of Usage:
Consider a CRM system where users with different roles have distinct access levels. For instance, the role accountant can access invoice data but not marketing information, while the role analyst can view marketing data but not detailed financial records. You can define such authorization rules easily with Rabarber.
And this is how your controller might look with Rabarber:
class TicketsController < ApplicationController
grant_access roles: :admin
grant_access action: :index, roles: :manager
def index
# ...
end
def destroy
# ...
end
endThis means that admin users can access everything in TicketsController, while the manager role can access only the index action.
Gem Usage:
- Installation
- Configuration
- User Role Methods
- Direct Role Management
- Authorization
- Dynamic Authorization Rules
- When Unauthorized
- Context / Multi-tenancy
- View Helpers
Community Resources:
Add Rabarber to your Gemfile:
gem "rabarber"Install the gem:
bundle installGenerate the migration to store roles (replace users with your table name if different):
# For standard integer IDs
rails generate rabarber:roles users
# For UUID primary keys
rails generate rabarber:roles users --uuidRun the migration:
rails db:migrateCreate an initializer to customize Rabarber's behavior (optional):
Rabarber.configure do |config|
config.cache_enabled = true # Enable/disable role caching (default: true)
config.current_user_method = :current_user # Method to access current user (default: :current_user)
config.user_model_name = "User" # User model name (default: "User")
endRoles are cached by default for better performance. Clear the cache manually when needed:
Rabarber::Cache.clearYour user model is automatically augmented with role management methods:
# Assign roles (creates roles if they don't exist)
user.assign_roles(:admin, :manager)
# Assign only existing roles (don't create new ones)
user.assign_roles(:accountant, :manager, create_new: false)
# Revoke specific roles
user.revoke_roles(:admin, :manager)
# Revoke all roles
user.revoke_all_rolesAll role assignment methods return the list of roles currently assigned to the user.
# Check if user has any of the specified roles
user.has_role?(:accountant, :manager)
# Get user's roles in the global context
user.roles
# Get all user's roles grouped by context
user.all_roles
# Get users with any of the specified roles
User.with_role(:admin, :manager)You can also manage roles directly:
# Create a new role
Rabarber.create_role(:admin) # => true if created, false if already exists
# Rename a role
Rabarber.rename_role(:admin, :administrator) # => true if renamed, false if new name exists or role is assigned
Rabarber.rename_role(:admin, :administrator, force: true) # Force rename even if role is assigned
# Remove a role
Rabarber.delete_role(:admin) # => true if deleted, false if role is assigned
Rabarber.delete_role(:admin, force: true) # Force deletion even if role is assigned
# List available roles in the global context
Rabarber.roles
# List all available roles grouped by context
Rabarber.all_rolesNote: Some methods have been deprecated in favor of the new API shown above. Deprecated methods still work but will be removed in a future major version. See the changelog for the complete list of deprecated methods and their replacements.
Include Rabarber::Authorization module in your controllers and configure protection:
class ApplicationController < ActionController::Base
include Rabarber::Authorization
with_authorization # Enable authorization check for all actions in all controllers by default
endYou can also enable authorization checks selectively. Both with_authorization and skip_authorization work exactly the same as Rails' before_action and skip_before_action methods:
class TicketsController < ApplicationController
skip_authorization only: [:index, :show] # Skip authorization for specific actions
end
class InvoicesController < ApplicationController
with_authorization except: [:index] # Enable authorization for all actions except index
endAuthorization requires an authenticated user. Rabarber will raise an error if no user is found via the configured current_user_method. Ensure authentication happens before authorization, and use with_authorization and skip_authorization to control authorization checks.
Define authorization rules using grant_access:
class TicketsController < ApplicationController
# Controller-wide access
grant_access roles: :admin
# Action-specific access
grant_access action: :index, roles: [:manager, :support]
def index
# Accessible to admin, manager, and support roles
end
def destroy
# Accessible to admin role only
end
endAuthorization rules are additive - they combine across inheritance chains and when defined multiple times for the same action:
class BaseController < ApplicationController
grant_access roles: :admin # Admin can access everything
end
class InvoicesController < BaseController
grant_access roles: :accountant # Accountant can also access InvoicesController (along with admin)
grant_access action: :index, roles: :manager
grant_access action: :index, roles: :supervisor
def index
# Index is accessible to admin, accountant, manager, and supervisor
end
endIt's possible to omit roles to allow unrestricted access:
class UnrestrictedController < ApplicationController
grant_access # Allow all users to access all actions
end
class MixedController < ApplicationController
grant_access action: :index # Unrestricted index action
def index
# Accessible to all users
end
grant_access action: :show, roles: :member # Restricted show action
def show
# Accessible to members only
end
endFor more complex scenarios, Rabarber supports dynamic authorization rules:
class OrdersController < ApplicationController
grant_access roles: :manager, unless: -> { current_user.suspended? }
grant_access action: :show, roles: :client, if: :user_company_matches_order?
def show
# ...
end
private
def user_company_matches_order?
current_user.company == Order.find(params[:id]).company
end
endYou can pass a dynamic rule as an if or unless argument, which can be a symbol or a proc. Symbols refer to instance methods, and procs are evaluated in the controller at request time.
Dynamic rules can also be used without roles at all, allowing you to define custom logic or even delegate to custom policy objects:
class InvoicesController < ApplicationController
grant_access action: :update, unless: -> { Date.current.on_weekend? }
def update
# ...
end
grant_access action: :destroy, if: :destroy_allowed?
def destroy
# ...
end
private
def destroy_allowed?
InvoicePolicy.new(current_user).destroy?(Invoice.find(params[:id]))
end
endBy default, when unauthorized, Rabarber will redirect back (HTML format) or return 403 (other formats). You can override when_unauthorized method to customize unauthorized access behavior:
class ApplicationController < ActionController::Base
include Rabarber::Authorization
with_authorization
private
def when_unauthorized
head :not_found # Custom behavior to hide existence of protected resources
end
endThe when_unauthorized method can be overridden in any controller to provide controller-specific unauthorized access handling.
Rabarber supports multi-tenancy through its context feature. All Rabarber methods accept a context parameter, allowing you to work with roles within specific scopes. By default, context is nil, meaning roles are global. Context can also be an instance of an ActiveRecord model or a class.
For example, in a project management app, you might want users to have different roles in different projects - someone could be an owner in one project but just a member in another.
# Assign roles within a specific model instance
user.assign_roles(:owner, context: project)
user.assign_roles(:member, context: project)
# Assign roles within a model class
user.assign_roles(:admin, context: Project)
# Check contextual roles
user.has_role?(:owner, context: project)
user.has_role?(:admin, context: Project)
# Revoke roles
user.revoke_roles(:owner, context: project)
# Get user roles
user.roles(context: project)
# Get users with a role
User.with_role(:member, context: project)# Create a new role within a context
Rabarber.create_role(:admin, context: Project)
# Rename a role within a context
Rabarber.rename_role(:admin, :owner, context: project)
# Remove a contextual role
Rabarber.delete_role(:admin, context: project)
# List available roles within a specific context
Rabarber.roles(context: project)In authorization rules, in addition to specifying context explicitly, you can also provide a proc or a symbol (similar to dynamic rules):
class ProjectsController < ApplicationController
grant_access roles: :admin, context: Project
# Method-based context resolution
grant_access action: :show, roles: :member, context: :current_project
def show
# Accessible to Project admin and members of the current project
end
# Proc-based context resolution
grant_access action: :update, roles: :owner, context: -> { Project.find(params[:id]) }
def update
# Accessible to Project admin and owner of the current project
end
private
def current_project
@current_project ||= Project.find(params[:id])
end
endWhen a context object is deleted from your database, its associated roles become orphaned and ignored by Rabarber.
To clean up orphaned context roles, use:
Rabarber.pruneWhen you rename or remove models used as contexts, you need to update Rabarber's stored context data accordingly. Use these irreversible data migrations:
# Rename a context class (e.g., when you rename your Ticket model to Task)
migrate_authorization_context!("Ticket", "Task")
# Remove orphaned context data (e.g., when you delete the Ticket model entirely)
delete_authorization_context!("Ticket")Include view helpers in your application:
module ApplicationHelper
include Rabarber::Helpers
endUse conditional rendering based on roles:
<%= visible_to(:admin, :manager) do %>
<div class="admin-panel">
<!-- Admin/Manager content -->
</div>
<% end %>
<%= hidden_from(:guest) do %>
<div class="member-content">
<!-- Content hidden from guests -->
</div>
<% end %>
<%= visible_to(:owner, context: @project) do %>
<div class="project-owner-panel">
<!-- Content visible to project owners -->
</div>
<% end %>Have a question or need assistance? Open a discussion in our discussions section for:
- Usage questions
- Implementation guidance
- Feature suggestions
Found a bug? Please create an issue with:
- A clear description of the problem
- Steps to reproduce the issue
- Your environment details (Rails version, Ruby version, etc.)
Ready to contribute? You can:
- Fix bugs by submitting pull requests
- Improve documentation
- Add new features (please discuss first in our discussions section)
Before contributing, please read the contributing guidelines
The gem is available as open source under the terms of the MIT License.
Everyone interacting in the Rabarber project is expected to follow the code of conduct.
Only the latest major version is supported. Older versions are obsolete and not maintained, but their READMEs are available here for reference: