ooor 1.7.1 → 1.7.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/lib/app/helpers/core_helpers.rb +1 -1
- data/lib/app/models/db_service.rb +1 -7
- metadata +5 -7
|
@@ -41,7 +41,7 @@ Ooor.xtend('ir.module.module') do
|
|
|
41
41
|
# - True
|
|
42
42
|
# Usage Example:
|
|
43
43
|
# res = IrModuleModule.install_modules(@openerp, modules)
|
|
44
|
-
def self.install_modules(
|
|
44
|
+
def self.install_modules(modules, dependencies=false)
|
|
45
45
|
res = true
|
|
46
46
|
if dependencies
|
|
47
47
|
dependency_modules = get_dependencies(modules)
|
|
@@ -1,9 +1,3 @@
|
|
|
1
|
-
# OOOR: OpenObject On Ruby
|
|
2
|
-
# Copyright (C) 2009-2012 Akretion LTDA (<http://www.akretion.com>).
|
|
3
|
-
# Author: Raphaël Valyi
|
|
4
|
-
# Licensed under the MIT license, see MIT-LICENSE file
|
|
5
|
-
|
|
6
|
-
#proxies all 'db' class of OpenERP server/bin/service/web_service.py properly
|
|
7
1
|
module Ooor
|
|
8
2
|
module DbService
|
|
9
3
|
def create(password=@config[:db_password], db_name='ooor_db', demo=true, lang='en_US', user_password=@config[:password] || 'admin')
|
|
@@ -12,7 +6,7 @@ module Ooor
|
|
|
12
6
|
@config[:username] = 'admin'
|
|
13
7
|
@config[:passowrd] = user_password
|
|
14
8
|
sleep(3)
|
|
15
|
-
while get_progress(
|
|
9
|
+
while get_progress(password, process_id)[0] != 1
|
|
16
10
|
@logger.info "..."
|
|
17
11
|
sleep(0.5)
|
|
18
12
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ooor
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.7.
|
|
4
|
+
version: 1.7.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2013-01-11 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: activeresource
|
|
@@ -27,10 +27,9 @@ dependencies:
|
|
|
27
27
|
- - ! '>='
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
29
|
version: 2.3.5
|
|
30
|
-
description: OOOR exposes business object proxies to your Ruby (Rails or not)
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
convenient bridge between OpenERP and the Java eco-system
|
|
30
|
+
description: OOOR exposes OpenERP business object proxies to your Ruby (Rails or not)
|
|
31
|
+
application. It extends the standard ActiveResource API. Running on JRuby, OOOR
|
|
32
|
+
also offers a convenient bridge between OpenERP and the Java eco-system
|
|
34
33
|
email: rvalyi@akretion.com
|
|
35
34
|
executables:
|
|
36
35
|
- ooor
|
|
@@ -81,4 +80,3 @@ signing_key:
|
|
|
81
80
|
specification_version: 3
|
|
82
81
|
summary: OOOR - OpenObject On Ruby
|
|
83
82
|
test_files: []
|
|
84
|
-
has_rdoc:
|