phacks / notion-ruby-client

A Ruby client for the Notion API
MIT License
117 stars 25 forks source link

Remove dependency on `activesupport` #45

Closed phacks closed 1 year ago

phacks commented 1 year ago

The dependency on activesupport was only used for the Hash#except method, which can currently be replaced by Hash#delete and will be part of the standard library in Ruby 3+.

Removing the dependency makes this library leaner, and avoids potential conflicts with versions in Rails-powered apps.