gamebox 0.0.2 → 0.0.3

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/History.txt CHANGED
@@ -21,3 +21,8 @@
21
21
 
22
22
  * Bug fix release for RubyWeekend #3
23
23
  * input_manager had problems with mouse events
24
+
25
+ === 0.0.3 / 2009-06-26
26
+
27
+ * Bug fix release for RubyWeekend #3
28
+ * updatable behavior was not in the manifest
data/Manifest.txt CHANGED
@@ -72,6 +72,7 @@ lib/gamebox/template_app/src/app.rb
72
72
  lib/gamebox/template_app/src/demo_level.rb
73
73
  lib/gamebox/template_app/src/game.rb
74
74
  lib/gamebox/template_app/src/my_actor.rb
75
+ lib/gamebox/updatable.rb
75
76
  lib/gamebox/version.rb
76
77
  lib/gamebox/viewport.rb
77
78
  lib/gamebox/wrapped_screen.rb
data/Rakefile CHANGED
@@ -3,7 +3,7 @@ gem 'hoe', '>= 2.3.0'
3
3
  require 'hoe'
4
4
 
5
5
  module Gamebox
6
- VERSION = '0.0.2'
6
+ VERSION = '0.0.3'
7
7
  end
8
8
  Hoe.new 'gamebox' do |spec|
9
9
  spec.developer('Shawn Anderson', 'shawn42@gmail.com')
@@ -13,7 +13,7 @@ Hoe.new 'gamebox' do |spec|
13
13
  spec.summary = "Framework for building and distributing games using Rubygame"
14
14
  spec.url = "http://shawn42.github.com/gamebox"
15
15
  spec.version = Gamebox::VERSION
16
- spec.changes = spec.paragraphs_of('History.txt', 2..3).join("\n\n")
16
+ spec.changes = spec.paragraphs_of('History.txt', 4..5).join("\n\n")
17
17
  spec.extra_deps << ['constructor']
18
18
  spec.extra_deps << ['publisher']
19
19
  spec.extra_deps << ['bacon']
@@ -0,0 +1,8 @@
1
+ require 'behavior'
2
+
3
+ class Updatable < Behavior
4
+
5
+ def setup
6
+ @actor.director.add_actor @actor
7
+ end
8
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gamebox
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shawn Anderson
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-06-25 00:00:00 -07:00
12
+ date: 2009-06-26 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -139,6 +139,7 @@ files:
139
139
  - lib/gamebox/template_app/src/demo_level.rb
140
140
  - lib/gamebox/template_app/src/game.rb
141
141
  - lib/gamebox/template_app/src/my_actor.rb
142
+ - lib/gamebox/updatable.rb
142
143
  - lib/gamebox/version.rb
143
144
  - lib/gamebox/viewport.rb
144
145
  - lib/gamebox/wrapped_screen.rb