saml-idp / saml_idp

Ruby SAML Identity Provider, best used with Rails (though not required)
MIT License
259 stars 180 forks source link

Fix warning: ostruct was loaded from the standard library #217

Closed taketo1113 closed 8 hours ago

taketo1113 commented 1 week ago

It fixes a warning of loading ostruct gem from standard library with Ruby 3.3.5 and 3.4+.

The warning message is following:

/path/saml_idp/lib/saml_idp.rb:2: warning: ostruct was loaded from the standard library, but will no longer be part of the default gems starting from Ruby 3.5.0.
You can add ostruct to your Gemfile or gemspec to silence this warning.

Related Links