Chris Sansone
Results
2
issues of
Chris Sansone
The `respond_to_missing` function in `lib/ostruct.rb` is causing issues when using versions of Ruby < 2.3.0 ``` def respond_to_missing?(mid, include_private = false) # :nodoc: mname = mid.to_s.chomp("=").to_sym @table&.key?(mname) || super end...
I made a few updates in order to make the `cyclonedx-ruby` gem compatible with versions of Ruby < 2.3.0: 1. I removed `ostruct` as an explicit dependency in the gemspec...