gameon 0.0.0.pre129 → 0.0.0.pre130
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.
- checksums.yaml +4 -4
- data/lib/gameon/base.rb +4 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e48f6ad334bd29594b14193311a17fcef09ca86a
|
4
|
+
data.tar.gz: 06c7c48f0841ea22c51c7415c092b86b354bdcde
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 085d07e378b78daa0773621615ee3e69829fce28e3b4ccd68d8b5d5cc9a5a143cdf188e8a474c219f548eed517a3bb7d2cb18283ccab0cf15f669b5be6fc640a
|
7
|
+
data.tar.gz: 9c60e34407f9db72fe8375bae87239a4c83f3a42aa043c0776bc62a3f9887fc701c027330c256dece6b791b92106c39aa410908def588c45236c421efc9240f0
|
data/lib/gameon/base.rb
CHANGED
@@ -117,7 +117,10 @@ module GameOn
|
|
117
117
|
|
118
118
|
#GameOn::Env.id = @id
|
119
119
|
#GameOn::Engine.setup [[Object.const_get('GameOn::Persistence::DS'), {}, {:id => @id}]]
|
120
|
-
|
120
|
+
# [[Object.const_get('GameOn::Persistence::DS'), {}, {:id => @id}]].each do |e|
|
121
|
+
# p "#{e[0]}, #{e[1]}, #{e[2]}"
|
122
|
+
# end
|
123
|
+
GameOn::Engine.setup "#{Object.const_get('GameOn::Persistence::DS')", #{{}}, #{{:id => @id}}"
|
121
124
|
|
122
125
|
@activities.uniq.each do |current_activity_title|
|
123
126
|
GameOn::Engine.run @current_context_title, current_activity_title
|