extjs-mvc 0.4.0.i → 0.4.0.j
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/VERSION +1 -1
- data/bin/extjs-mvc +2 -2
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.4.0.
|
1
|
+
0.4.0.j
|
data/bin/extjs-mvc
CHANGED
@@ -8,10 +8,10 @@ require 'extjs-mvc'
|
|
8
8
|
# Boot Xmvc CLI listener feeding it an instance of ExtJS::MVC::CLI
|
9
9
|
begin
|
10
10
|
Xmvc::CLI.start(ARGV, {
|
11
|
-
:host => ExtJS::MVC # <-- Supplied module must contain a CLI Thor task extension
|
11
|
+
:host => ExtJS::MVC, # <-- Supplied module must contain a CLI Thor task extension
|
12
|
+
:vendors => [ExtJS, ExtJS::MVC]
|
12
13
|
})
|
13
14
|
rescue Xmvc::Error => e
|
14
15
|
Xmvc.ui.error(e.message)
|
15
16
|
exit e.status_code
|
16
17
|
end
|
17
|
-
|