mirror of
https://github.com/lloeki/umodule-source.git
synced 2025-12-06 02:34:40 +01:00
13 lines
230 B
Ruby
13 lines
230 B
Ruby
module Umodule
|
|
module Source
|
|
VERSION = '0.5.1'
|
|
|
|
def self.bundled_path
|
|
File.expand_path('../source/umodule.js', __FILE__)
|
|
end
|
|
|
|
def self.contents
|
|
@contents ||= File.read(bundled_path)
|
|
end
|
|
end
|
|
end
|