blast_mavens_multiplayer 0.1.1 → 0.1.2

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/bin/blast_mavens CHANGED
@@ -1,5 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
  require 'rubygems'
3
+ require "gosu"
3
4
 
4
- require File.expand_path("../../config/boot.rb", __FILE__)
5
+ $:.unshift File.expand_path('../../lib', __FILE__)
6
+ require 'processor'
5
7
  Processor.new
data/lib/processor.rb CHANGED
@@ -13,7 +13,7 @@ require 'game_over_window'
13
13
  class Processor
14
14
  Screen = [1024, 768, false]
15
15
  TileSize = 48
16
- Caption = "Blast Mavens: Multiplayer Beta v0.1.1"
16
+ Caption = "Blast Mavens: Multiplayer Beta v0.1.2"
17
17
  class << self
18
18
  attr_reader :game_window
19
19
  attr_accessor :players
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: blast_mavens_multiplayer
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 31
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 1
10
- version: 0.1.1
9
+ - 2
10
+ version: 0.1.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - tjbladez
@@ -53,7 +53,6 @@ files:
53
53
  - lib/processor.rb
54
54
  - lib/solid_tile.rb
55
55
  - lib/tileable.rb
56
- - config/boot.rb
57
56
  - resources/images/cursor.png
58
57
  - resources/images/dynamite.png
59
58
  - resources/images/exitgame.png
data/config/boot.rb DELETED
@@ -1,6 +0,0 @@
1
- require "rubygems"
2
- require "gosu"
3
-
4
-
5
- $:.unshift File.expand_path('../../lib', __FILE__)
6
- require 'processor'