gameon 0.0.0.pre12 → 0.0.0.pre13
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 +6 -4
- 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: 0be862e984d2c5e39cdb5d01d352b1043e5c08c8
|
4
|
+
data.tar.gz: e2039b79852417aef6bd190c6359da762a0aed34
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7f32a2ee94122be250ac39128ae4a11b6ed79976d2dc91c0d8af2b898d20e863d5c380778b37bc95beae4d90dfc38b9b4fac0a3be11c4569e0db0a659df64978
|
7
|
+
data.tar.gz: 83a39150a6c6c125bc6638ee7926fb0f3a54903374059a11aa1447dcc9dd6d981038eca13a6a5c2b9ae6fdfd14d2f536d7e2bbe1b972d6fd7f161a96b4af1c05
|
data/lib/gameon/base.rb
CHANGED
@@ -3,10 +3,7 @@ module GameOn
|
|
3
3
|
GameOn::Persistence::DS.load id
|
4
4
|
end
|
5
5
|
|
6
|
-
|
7
|
-
end
|
8
|
-
|
9
|
-
|
6
|
+
|
10
7
|
module Gamebook
|
11
8
|
extend Mushin::DSL::Notebook
|
12
9
|
Mushin::DSL::Notebook.build 'game', 'rule', 'activate'
|
@@ -14,6 +11,10 @@ module GameOn
|
|
14
11
|
# Example alias_method :ninja, :rule
|
15
12
|
end
|
16
13
|
|
14
|
+
class Env < Mushin::Env
|
15
|
+
|
16
|
+
end
|
17
|
+
|
17
18
|
#class Activities < Mushin::DSL::Activities
|
18
19
|
#include Mushin::DSL::Activities
|
19
20
|
#extend Mushin::DSL::Activities
|
@@ -22,6 +23,7 @@ module GameOn
|
|
22
23
|
# GameOn::Engine.run game, activity
|
23
24
|
#end
|
24
25
|
#end
|
26
|
+
|
25
27
|
=begin
|
26
28
|
module Engine
|
27
29
|
def Engine.run game, activity
|