Fix the handlebars-source gem definition

This commit is contained in:
kpdecker
2013-11-03 17:20:47 -06:00
parent 6ab579bb2a
commit 7cef79288a
3 changed files with 12 additions and 12 deletions
+11
View File
@@ -0,0 +1,11 @@
module Handlebars
module Source
def self.bundled_path
File.expand_path("../../../handlebars.js", __FILE__)
end
def self.runtime_bundled_path
File.expand_path("../../../handlebars.runtime.js", __FILE__)
end
end
end