Skip to content

Commit 2946e9b

Browse files
committedOct 24, 2013
Fix RakeHelper for 1.8
1 parent e895410 commit 2946e9b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎lib/opal/rake_helper.rb

+5-1
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,15 @@ def install_tasks
1313

1414
def expose(*names)
1515
names.each do |name|
16-
define_singleton_method(name) do |*args|
16+
meta_class.send(:define_method, name) do |*args|
1717
instance.__send__(name, *args)
1818
end
1919
end
2020
end
21+
22+
def meta_class
23+
class << self; self; end
24+
end
2125
end
2226

2327
expose :uglify, :gzip

0 commit comments

Comments
 (0)