Sha256: 7e0c2c8662a25658d0bdb7c92965d8182e342ecdb1c12c6dcea4aae9fb22faca

Contents?: true

Size: 405 Bytes

Versions: 37

Compression:

Stored size: 405 Bytes

Contents

#include "rr.h"

namespace rr {

  void Date::Init() {
    ClassBuilder("Date", Value::Class).
      defineSingletonMethod("New", &New).
      defineMethod("NumberValue", &NumberValue).
      store(&Class);
  }

  VALUE Date::New(VALUE self, VALUE time) {
    return Value(v8::Date::New(NUM2DBL(time)));
  }
  VALUE Date::NumberValue(VALUE self) {
    return rb_float_new(Date(self)->NumberValue());
  }
}

Version data entries

37 entries across 37 versions & 8 rubygems

Version Path
arcabouco-0.2.13 vendor/bundle/gems/therubyracer-0.12.2/ext/v8/date.cc
therubyracer-0.12.3 ext/v8/date.cc
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/therubyracer-0.11.4/ext/v8/date.cc
therubyracer-xcode-0.12.3 ext/v8/date.cc
therubyracer-xcode-0.12.2 ext/v8/date.cc
therubyracer-tmpfork-0.12.2 ext/v8/date.cc
sc_core-0.0.7 test/dummy/vendor/bundle/ruby/2.2.0/gems/therubyracer-0.12.2/ext/v8/date.cc
therubyracer-0.12.2 ext/v8/date.cc
therubyracer-0.12.1 ext/v8/date.cc
therubyracer-discourse-0.12.0 ext/v8/date.cc
therubyracer-0.12.0 ext/v8/date.cc
therubyracer-0.11.4 ext/v8/date.cc
therubyracer-0.11.3 ext/v8/date.cc
therubyracer-0.11.2 ext/v8/date.cc
sunrise-cms-0.5.0.rc1 vendor/bundle/ruby/1.9.1/gems/therubyracer-0.11.0/ext/v8/date.cc
therubyracer-0.11.1 ext/v8/date.cc
therubyracer-0.11.1beta1 ext/v8/date.cc
therubyracer-0.11.0 ext/v8/date.cc
therubyracer-0.11.0beta8-x86-freebsd-9 ext/v8/date.cc
therubyracer-0.11.0beta8-x86_64-linux ext/v8/date.cc