lemontree55 / packetgen

Ruby library to easily generate and capture network packets
MIT License
98 stars 13 forks source link

[BUGFIX] Make 'digest-crc' a runtime dependency #124

Closed sergio-bobillier closed 2 months ago

sergio-bobillier commented 2 months ago

123 Added code that is using the digest-crc gem. However, it listed the gem in the Gemfile, not in the gemspec.

This causes projects using packengen which aren't including the digest-crc gem themselves (or another gem that uses it) to break.

The gem should have been listed as a runtime dependency in the gemspec file.

Gems listed in the Gemfile are not taken into account by Bundler when searching for or installing dependencies.

lemontree55 commented 2 months ago

@sergio-bobillier thank you