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
+1 -1
View File
@@ -16,6 +16,6 @@ Gem::Specification.new do |gem|
gem.files = [
'handlebars.js',
'handlebars.runtime.js',
'source.rb'
'lib/handlebars/source.rb'
]
end
+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
-11
View File
@@ -1,11 +0,0 @@
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