Georgy Angelov
|
f24985c23c
|
Add rspec matchers for Maybe and (Strict)?Equals
`expect(a).to eq_just b` <=> `a.IsJust && a.FromJust == b`
`expect(a).to be_successful` <=> `a.IsJust && a.FromJust`
`expect(a).to strict_eq b` <=> if a is Maybe: `a.IsJust && a.FromJust.StrictEquals(b)`; else `a.StrictEquals(b)`
`expect(a).to v8_eq b` <=> same as above but for `Equals` instead of `StrictEquals`
|
2015-08-01 20:21:36 +00:00 |
|
Charles Lowell
|
f01489923e
|
Merge pull request #366 from cowboyd/4.5/object-template
Add Template Hiearchy
|
2015-07-29 20:31:14 +03:00 |
|
Charles Lowell
|
5e21f1deae
|
remove calls to Dispose in specs
|
2015-07-28 18:29:38 +03:00 |
|
Charles Lowell
|
5d09e42109
|
implement ObjectTemplte#Set()
|
2015-07-18 16:39:36 -05:00 |
|
Charles Lowell
|
75823c1dc2
|
Merge pull request #364 from cowboyd/4.5/ruby-maybe-values
Maybe APIs
|
2015-07-17 17:13:34 -05:00 |
|
Charles Lowell
|
cbfb1b1269
|
support Maybe APIs
|
2015-07-16 21:55:31 -05:00 |
|
Charles Lowell
|
38af5412d4
|
coordinate shared datastructure teardown
|
2015-07-11 01:49:06 -05:00 |
|
Georgy Angelov
|
acf9be1873
|
Implement Function and Script
|
2015-04-04 18:23:23 +00:00 |
|
Georgy Angelov
|
a926860150
|
Lock inside the C methods and store isolate with every ref
|
2015-04-04 14:04:57 +00:00 |
|
Georgy Angelov
|
207158fcdb
|
Add Locker and Unlocker
|
2015-03-21 20:27:06 +00:00 |
|
Georgy Angelov
|
d0f568cf18
|
Add strings and some conversion options for values
|
2015-03-21 09:51:17 +00:00 |
|
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 |
|