[Source]
# File lib/nukumi2/plugin.rb, line 2 2: def initialize(path) 3: @path = File.expand_path path 4: end
# File lib/nukumi2/plugin.rb, line 6 6: def load! 7: Dir[File.join(@path, "**", "*.rb")].each { |file| 8: require file if File.file? file 9: } 10: end
[Validate]