interfax-ruby
interfax-ruby copied to clipboard
Fax send and receive in Ruby with the InterFAX REST API
After upgrading to ruby 3.3.1 from 3.2.2 the interfax gem fails with the following error: ```/versions/3.3.1/lib/ruby/gems/3.3.0/gems/interfax-1.2.1/lib/interfax/object.rb:1:in `': uninitialized constant OpenStruct (NameError)``` Adding `require "ostruct"` to `object.rb` resolves the issue.
This pull request includes a minor change to the `lib/interfax/object.rb` file. The change imports the `ostruct` library to ensure the `OpenStruct` class is available for use. * [`lib/interfax/object.rb`](diffhunk://#diff-f1dbd6c02fec8b36f86cbcb3818dde095aa69012435a59daffc9e924c01f511bR1-R2): Added `require...