daengine 0.0.8.alpha → 0.0.9.alpha
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/daengine.rb +2 -3
- data/lib/daengine/version.rb +1 -1
- metadata +1 -1
data/lib/daengine.rb
CHANGED
|
@@ -12,9 +12,8 @@ module Daengine
|
|
|
12
12
|
|
|
13
13
|
@mongoid_config = {
|
|
14
14
|
'database' => 'ssc_assets', # mongoid database name
|
|
15
|
-
'
|
|
16
|
-
'port' => 27017
|
|
17
|
-
'slave_ok' => true
|
|
15
|
+
'hosts' => '[foo:27017]', # mongoid server
|
|
16
|
+
# 'port' => 27017 # mongodb server port
|
|
18
17
|
}
|
|
19
18
|
|
|
20
19
|
@valid_mongoid_keys = @mongoid_config.keys
|
data/lib/daengine/version.rb
CHANGED