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

13 lines
223 B
Ruby
Raw Normal View History

2010-06-02 16:10:24 +03:00
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