An open API service indexing awesome lists of open source software.

https://github.com/darkleaf/ruby-object-model


https://github.com/darkleaf/ruby-object-model

Last synced: 7 months ago
JSON representation

Awesome Lists containing this project

README

          

```javascript
var TestClass = Class.send('new', Object, function(){
this.define_method('foo', function(){
return 'foo';
});
});

var test = TestClass.send('new');

console.log(test.send('foo'));
//#=> foo
```