Tagged Questions
1
vote
3answers
167 views
Best way to list a Merb::Slices dependencies?
I'm creating a list of the Slices in my Merb app, like this:
Merb::Slices.each_slice do |slice|
I'd like to get the list of dependencies for each of this slice, any idea how to access it?
I'm ...