Skip to content

Commit 915395c

Browse files
committed
- update readme
1 parent e7dd718 commit 915395c

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ var metamodel = runtime.require('metamodel');
102102
metamodel.schema({
103103
'_name': 'Jedi',
104104
'firstName': 'property',
105-
'lastName': 'property',
105+
'lastName': 'property'
106106
});
107107

108108
// create your model
@@ -126,6 +126,10 @@ With [MSON](https://system-runtime.readme.io/docs/design-your-model#section-mson
126126

127127
[MSON](https://system-runtime.readme.io/docs/design-your-model#section-mson) is based on [UML](http://uml.org), so learning it is very easy.
128128

129+
#### A component factory
130+
131+
Runtime uses the [Model-Driven Architecture](http://www.omg.org/mda/) approach to create classes based on your design. Use them to instantiate your components.
132+
129133
#### A NoSQL Database
130134

131135
Runtime acts as an ODM (Object-Document Mapper) to manage your components as NoSQL Documents.
@@ -134,10 +138,6 @@ Runtime has a micro NoSQL Database that stores your components and you can expor
134138

135139
Thanks to Runtime NoSQL Database, you can compose your model with an another one.
136140

137-
#### A component factory
138-
139-
Runtime uses the [Model-Driven Architecture](http://www.omg.org/mda/) approach to create classes based on your design. Use them to instantiate your components.
140-
141141
#### A workflow engine
142142

143143
Runtime checks at runtime if the signatures of invoked methods are compliant with your model.

karma.conf.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ module.exports = function (config) {
3131
sl_chrome: {
3232
base: 'SauceLabs',
3333
browserName: 'chrome',
34-
version: '47'
34+
version: '48'
3535
},
3636
sl_firefox: {
3737
base: 'SauceLabs',
3838
browserName: 'firefox',
39-
version: '43'
39+
version: '44'
4040
},
4141
sl_ie_11: {
4242
base: 'SauceLabs',

0 commit comments

Comments
 (0)