Commit 1767ffa570f4fdde08e23d379ad109e18c555a57

Authored by Tao Huang
1 parent a15ab336
Exists in master

fix: change namespace to avoid conflicts

app/controllers/scim_rails/application_controller.rb
1 1 module ScimRails
2 2 class ApplicationController < ActionController::API
3 3 include ActionController::HttpAuthentication::Basic::ControllerMethods
4   - include ExceptionHandler
5   - include Response
  4 + include ScimRails::ExceptionHandler
  5 + include ScimRails::Response
6 6  
7 7 before_action :authorize_request
8 8  
... ...
lib/scim_rails/version.rb
1 1 module ScimRails
2   - VERSION = '0.3.0'
  2 + VERSION = '0.3.1'
3 3 end
... ...