Small chance to fix an extra space in the method definition - def eof? () => def eof?() (without space)
Fixes the warning
/.gem/ruby/2.6.5/gems/osc-ruby-1.1.3/lib/osc-ruby/network_packet.rb:15: warning: parentheses after method name is interpreted as an argument list, not a decomposed argument
Arguably the empty parens for methods like this could be removed but that's more of a stylistic thing across the whole project.
Small chance to fix an extra space in the method definition -
def eof? ()
=>def eof?()
(without space)Fixes the warning
Arguably the empty parens for methods like this could be removed but that's more of a stylistic thing across the whole project.