ruby_ext_direct 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README +7 -0
- data/doc/ExtDirect/Api.html +736 -0
- data/doc/ExtDirect/Router.html +302 -0
- data/doc/ExtDirect.html +120 -0
- data/doc/String.html +211 -0
- data/doc/_index.html +149 -0
- data/doc/class_list.html +47 -0
- data/doc/css/common.css +1 -0
- data/doc/css/full_list.css +55 -0
- data/doc/css/style.css +322 -0
- data/doc/file.README.html +89 -0
- data/doc/file_list.html +49 -0
- data/doc/frames.html +13 -0
- data/doc/index.html +89 -0
- data/doc/js/app.js +205 -0
- data/doc/js/full_list.js +167 -0
- data/doc/js/jquery.js +16 -0
- data/doc/method_list.html +102 -0
- data/doc/top-level-namespace.html +105 -0
- data/lib/ext_direct/api.rb +23 -4
- data/lib/ext_direct/router.rb +33 -10
- data/lib/ext_direct/version.rb +1 -1
- data/lib/ext_direct.rb +5 -0
- data/ruby_ext_direct.gemspec +3 -3
- metadata +23 -5
data/README
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
This is an attempt to implement Ext.Direct (see http://www.sencha.com/products/extjs/extdirect for more info)
|
2
2
|
|
3
|
+
I wanted to have a library that did not explicitly bind to any ORM(like ActiveRecord, Datamapper, ...).
|
4
|
+
The idea is very simple just add an 'api' and 'router' path to your backend point to your exposed classes and you are set.
|
5
|
+
|
6
|
+
Example: (See examples directory for more)
|
7
|
+
Add this to your Gemfile
|
8
|
+
gem 'ruby_ext_direct', :require => 'ext_direct'
|
9
|
+
|
3
10
|
|
4
11
|
TODO: add documentation
|
5
12
|
TODO: add rails engine
|