2904
2905
2906
2907
2908
|
# File 'lib/roby/app.rb', line 2904
def self.register_plugin(name, mod, &init)
caller_m = /^([^:]+):\d/.match(caller(1)[0])
path = File.expand_path(File.dirname(caller_m[1]))
Roby.app.register_plugin(name, mod, path: path, &init)
end
|