mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
10 lines
147 B
Ruby
10 lines
147 B
Ruby
require "pathname"
|
|
|
|
module MRuby
|
|
module Source
|
|
def self.path
|
|
Pathname.new(File.expand_path('../../../../',__FILE__))
|
|
end
|
|
end
|
|
end
|