Company specific Single Sign On for Rails applications.
Currently supported and tested ruby versions are:
- 3.2
- 3.1
- 3.0
- 2.7
- 2.6
Simply add ehsso to your Gemfile and bundle it up.
gem 'ehsso'
Configure ehsso with an initializer.
Ehsso.configure do |config|
# Application reference
config.module_key = 'my_module_key'
# Service Endpoint
config.base_url = 'http://{host}:{port}'
config.username_and_password = 'username:password'
end
to do....
Bug reports and pull requests are welcome on GitHub at https://github.com/thomis/ehsso.