rubygoo 0.0.4 → 0.0.5

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.
Files changed (4) hide show
  1. data/History.txt +4 -0
  2. data/Rakefile +5 -2
  3. data/lib/rubygoo.rb +0 -4
  4. metadata +1 -1
data/History.txt CHANGED
@@ -13,3 +13,7 @@
13
13
  * keys work now in Gosu
14
14
  * properly namespaced in Rubygoo module
15
15
 
16
+ === 0.0.5 / 2008-10-13
17
+
18
+ * Minor API tweaks
19
+ * fixing gem deps
data/Rakefile CHANGED
@@ -2,8 +2,10 @@
2
2
 
3
3
  require 'rubygems'
4
4
  require 'hoe'
5
- require './lib/rubygoo.rb'
6
5
 
6
+ module Rubygoo
7
+ VERSION = '0.0.5'
8
+ end
7
9
  Hoe.new('rubygoo', Rubygoo::VERSION) do |p|
8
10
  p.developer('Shawn Anderson', 'shawn42@gmail.com')
9
11
  p.author = "Shawn Anderson"
@@ -13,7 +15,8 @@ Hoe.new('rubygoo', Rubygoo::VERSION) do |p|
13
15
  p.url = "http://rubygoo.googlecode.com"
14
16
  p.changes = p.paragraphs_of('History.txt', 0..2).join("\n\n")
15
17
  p.remote_rdoc_dir = '' # Release to root
16
- p.extra_deps = ['constructor','publisher']
18
+ p.extra_deps << ['constructor']
19
+ p.extra_deps << ['publisher']
17
20
  end
18
21
 
19
22
  # run rubygame_app
data/lib/rubygoo.rb CHANGED
@@ -1,10 +1,6 @@
1
1
  $: << File.dirname(__FILE__)
2
2
  $: << File.join(File.dirname(__FILE__),"rubygoo")
3
3
  $: << File.join(File.dirname(__FILE__),"rubygoo","adapters")
4
- module Rubygoo
5
- VERSION = '0.0.4'
6
- end
7
-
8
4
  require 'rubygoo/goo_event'
9
5
  require 'rubygoo/goo_color'
10
6
  require 'rubygoo/adapters/adapter_factory'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubygoo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shawn Anderson