Change the name of the project from Loaded to Backload, and
changed the main callback method from #loaded
to #backloaded
.
Then re-added #loaded
, #required
and #required_relative
as
straight callbacks for their corresponding present-tense methods.
This makes the library backward compatible with v0.1.0.
Changes:
- Rename project to "backload".
- Add basic callbacks for load, require and require_relative.
- Master callback is renamed to
#backloaded
.
Just a tweak to require_relative support, so that the :relative
option provides the relative path, not just true
or false
.
Changes:
- The :relative option provides the relative path.
This release uses a single callback method #loaded
instead
of the previous two (#loaded
and #required
). It also adds
optional support for #require_relative
.
Changes:
- Use single callback method.
- Add support for #require_relative.
Initial release of Loaded.
Changes:
- Created and implemented.