v0.5, matching JS version

This commit is contained in:
Loic Nageleisen 2013-09-30 17:17:44 +02:00
commit 68a37bd4a1
6 changed files with 123 additions and 0 deletions

13
lib/umodule/source.rb Normal file
View file

@ -0,0 +1,13 @@
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