0.0
The project is in a healthy, maintained state
Provides a complete authentication and authorization solution for The Lesli Framework, including user session management, secure login and logout, role-based access control, and permission handling.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Runtime

~> 5.1.0
 Project Readme

LesliShield

Authentication and authorization for the Lesli Framework.



LesliShield security administration


Introduction

LesliShield is the official authentication and authorization engine for the Lesli Framework.

It centralizes account security, role-based access control, and user onboarding for Lesli applications.


Features

  • Authentication and session management
  • Role-based access control
  • Permission and privilege administration
  • Account-scoped security policies
  • User invitations and onboarding

Try LesliShield


Quick Start

Requirements

  • A Rails application with Lesli
  • SQLite by default, or PostgreSQL when preferred by the host application

Install LesliShield

Add the engine to the host Rails application and prepare its database:

bundle add lesli_shield
bin/rails db:prepare

Mount the engine

Applications using Lesli's standard router mount LesliShield automatically at /shield:

# config/routes.rb
Rails.application.routes.draw do
    Lesli::Router.mount(self)
end

If the application does not use the standard Lesli router, mount the engine directly:

# config/routes.rb
Rails.application.routes.draw do
    mount LesliShield::Engine => "/shield"
end

Start Rails and visit http://127.0.0.1:3000/shield:

bin/rails server

Development

Clone LesliShield into the host application's engines directory:

cd RailsApp
mkdir -p engines
git clone https://github.com/LesliTech/LesliShield.git engines/LesliShield

Reference the local engine from the host application's Gemfile:

gem "lesli_shield", path: "engines/LesliShield"

Install dependencies, prepare the host database, and start Rails:

bundle install
bin/rails db:prepare
bin/rails server

Tests

From a complete Lesli development workspace, run the engine test suite from the LesliShield directory:

cd engines/LesliShield
bin/rails test

Documentation


Community


License

Copyright (c) 2026, Lesli Technologies, S. A.

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.

The complete license text is available in the license file.




Lesli icon

The Open-Source SaaS Development Framework for Ruby on Rails.