-
-
Notifications
You must be signed in to change notification settings - Fork 72
Open
Description
In https://github.com/marcoroth/herb/blob/a43c7e6f138cdaa759468f11427b98ecd5e131f6/lib/herb.rb, herb/herb is required when an unsupported Ruby version is used. However, there is no herb.rb inside the lib/herb folder:
Lines 32 to 37 in a43c7e6
| begin | |
| major, minor, _patch = RUBY_VERSION.split(".") #: [String, String, String] | |
| require_relative "herb/#{major}.#{minor}/herb" | |
| rescue LoadError | |
| require_relative "herb/herb" | |
| end |