1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00
therubyracer/contrib/v8/jasmine/context.rb
2010-06-03 14:05:37 +03:00

13 lines
No EOL
223 B
Ruby

module V8
module Jasmine
class Context < V8::Context
def initialize(*args)
super(*args) do
self.extend V8::Jasmine
yield(self) if block_given?
end
end
end
end
end