gameon 0.0.0.pre19 → 0.0.0.pre20
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/gameon/base.rb +0 -28
- 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: 78ac12012fc0dcfb1cfc340cfe409323a7b0b0ed
|
4
|
+
data.tar.gz: cb9ae1dcc6d7a4514ccc1a0e91419a338963f22b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d576894cdb9724d6efce77b684679b307624a34e30687ec8f0b1f6ffeb948478919b95dcacdc56fa22288ef97c53328e2a2245ac9a2c509f03104d05fea6a480
|
7
|
+
data.tar.gz: 112d2dbb4e5a9269eeb9f67637ec0c3573d854e98889502b651daad4a260e6c07e63a9c9fc6b88179e38fa472562e3a17a0a451631001684a7725feb195ece34
|
data/lib/gameon/base.rb
CHANGED
@@ -3,7 +3,6 @@ module GameOn
|
|
3
3
|
GameOn::Persistence::DS.load id
|
4
4
|
end
|
5
5
|
|
6
|
-
|
7
6
|
module Gamebook
|
8
7
|
extend Mushin::DSL::Notebook
|
9
8
|
Mushin::DSL::Notebook.build 'game', 'rule', 'activate'
|
@@ -13,32 +12,5 @@ module GameOn
|
|
13
12
|
|
14
13
|
class Env < Mushin::Env
|
15
14
|
@@ds = 'GameOn::Persistence::DS'
|
16
|
-
#Mushin::Engine.setup [GameOn::Persistence::DS]
|
17
15
|
end
|
18
|
-
|
19
|
-
|
20
|
-
#class Activities < Mushin::DSL::Activities
|
21
|
-
#include Mushin::DSL::Activities
|
22
|
-
#extend Mushin::DSL::Activities
|
23
|
-
#TODO transfer construction to mushin
|
24
|
-
#def self.construction game, activity
|
25
|
-
# GameOn::Engine.run game, activity
|
26
|
-
#end
|
27
|
-
#end
|
28
|
-
|
29
|
-
=begin
|
30
|
-
module Engine
|
31
|
-
def Engine.run game, activity
|
32
|
-
#[Mushin::Presistence::DS, Mushin::blahblah]
|
33
|
-
#use Mushin::Persistence::DS
|
34
|
-
#Mushin::Engine.setup do
|
35
|
-
#['some entity middleware','some datastore']
|
36
|
-
#use Mushin::DS.blaa and then class_eval there
|
37
|
-
#end
|
38
|
-
Mushin::Engine.setup [GameOn::Persistence::DS]
|
39
|
-
Mushin::Engine.run game, activity
|
40
|
-
end
|
41
|
-
end
|
42
|
-
=end
|
43
|
-
|
44
16
|
end
|