summaryrefslogtreecommitdiffstats
path: root/components/source.rb
blob: ec4caac912563992f9a07a58ae8fd4817b7b2b17 (plain)
1
2
3
4
5
6
7
8
9
10
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