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