Skip to content

Commit

Permalink
Fix the handlebars-source gem definition
Browse files Browse the repository at this point in the history
  • Loading branch information
kpdecker committed Nov 3, 2013
1 parent 6ab579b commit 7cef792
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion components/handlebars-source.gemspec
Expand Up @@ -16,6 +16,6 @@ Gem::Specification.new do |gem|
gem.files = [
'handlebars.js',
'handlebars.runtime.js',
'source.rb'
'lib/handlebars/source.rb'
]
end
11 changes: 11 additions & 0 deletions 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
11 changes: 0 additions & 11 deletions components/source.rb

This file was deleted.

0 comments on commit 7cef792

Please sign in to comment.