summaryrefslogtreecommitdiffstats
path: root/components/lib/handlebars/source.rb
diff options
context:
space:
mode:
Diffstat (limited to 'components/lib/handlebars/source.rb')
-rw-r--r--components/lib/handlebars/source.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/components/lib/handlebars/source.rb b/components/lib/handlebars/source.rb
new file mode 100644
index 0000000..4f3f8bf
--- /dev/null
+++ b/components/lib/handlebars/source.rb
@@ -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