umodule-source/lib/umodule/source.rb

13 lines
226 B
Ruby

module Umodule
module Source
VERSION = 0.5
def self.bundled_path
File.expand_path('../source/umodule.js', __FILE__)
end
def self.contents
@contents ||= File.read(bundled_path)
end
end
end