gamebox 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
data/gamebox.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{gamebox}
8
- s.version = "0.1.0"
8
+ s.version = "0.1.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Shawn Anderson", "Jason Roelofs", "Karlin Fox"]
12
- s.date = %q{2010-04-24}
12
+ s.date = %q{2010-04-26}
13
13
  s.default_executable = %q{gamebox}
14
14
  s.description = %q{Framework for building and distributing games using Rubygame}
15
15
  s.email = %q{shawn42@gmail.com}
@@ -3,7 +3,7 @@ require 'spatial_hash'
3
3
  class SpatialStagehand < Stagehand
4
4
 
5
5
  DEFAULT_PARAMS = {
6
- :cell_size = 50
6
+ :cell_size => 50
7
7
  }
8
8
  def setup
9
9
  merged_opts = DEFAULT_PARAMS.merge opts
@@ -2,6 +2,7 @@
2
2
 
3
3
  require 'rubygems'
4
4
 
5
+ ENV["RUBYGAME_NOINIT"]="1"
5
6
  app_root = File.join(File.dirname(__FILE__),'..')
6
7
  $: << app_root
7
8
  $: << File.join(app_root,'config')
@@ -2,7 +2,7 @@ module Gamebox
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 1
5
- TINY = 0
5
+ TINY = 1
6
6
 
7
7
  ARRAY = [MAJOR, MINOR, TINY]
8
8
  STRING = ARRAY.join('.')
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 0
9
- version: 0.1.0
8
+ - 1
9
+ version: 0.1.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Shawn Anderson
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2010-04-24 00:00:00 -04:00
19
+ date: 2010-04-26 00:00:00 -04:00
20
20
  default_executable: gamebox
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency