summaryrefslogtreecommitdiffstats
path: root/components/lib/handlebars/source.rb
blob: 4f3f8bfceea7d931d5abf59a34222cc830b45abc (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