1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00
therubyracer/ext/v8/rr.h
Georgy Angelov d1e9088cf0 Port a ton of the original ext classes
You can now create a JS object from Ruby-land without segfaulting
2015-03-20 20:47:57 +00:00

30 lines
488 B
C++

#ifndef THE_RUBY_RACER
#define THE_RUBY_RACER
#include <include/v8.h>
#include <include/libplatform/libplatform.h>
#include <ruby.h>
#include <vector>
#ifdef HAVE_RUBY_ENCODING_H
#include "ruby/encoding.h"
#endif
#include "class_builder.h"
#include "pointer.h"
#include "ref.h"
#include "v8.h"
#include "isolate.h"
#include "handles.h"
#include "context.h"
#include "equiv.h"
#include "bool.h"
#include "uint32.h"
#include "value.h"
#include "backref.h"
#include "object.h"
#endif