gosu 0.7.13-universal-darwin → 0.7.13.2-universal-darwin

Sign up to get free protection for your applications and to get access to all the features.
@@ -19,11 +19,13 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
19
19
  DEALINGS IN THE SOFTWARE.
20
20
 
21
21
  Julian Raschke julian@raschke.de
22
+
22
23
  Jan Lücker jan.luecker@gmx.de
23
- http://code.google.com/p/gosu/
24
+
25
+ http://www.libgosu.org/
24
26
 
25
27
  ***
26
28
 
27
- Does NOT apply to fmod.dll shipped with the Windows version of Gosu,
29
+ This does NOT apply to fmod.dll shipped with the Windows version of Gosu,
28
30
  or the bytecode of FMOD contained in Gosu.framework and gosu.bundle on OS X.
29
31
  FMOD is a property of Firelight Technologies Pty, Ltd., see www.fmod.org.
data/README.txt CHANGED
@@ -3,15 +3,15 @@ Moin moin, dear Gosu user!
3
3
  * The latest documentation on how to install/set up Gosu can be found on:
4
4
  http://code.google.com/p/gosu/wiki/DocsOverview
5
5
 
6
- * All resources around using Gosu are linked from http://libgosu.org/.
6
+ * All resources concerning Gosu are linked from http://libgosu.org/.
7
7
 
8
8
  * Try doing the tutorial there if you don't know how to start out! Or look
9
9
  at one of the games in the Gosu Users board.
10
10
 
11
11
  * If you have any questions or feedback,
12
- visit the boards at http://libgosu.org/,
13
- leave a comment on one of Gosu's wiki page,
14
- try your luck in #gosu on irc.freenode.org,
15
- or mail me at julian@raschke.de!
12
+ - visit the boards at http://libgosu.org/,
13
+ - leave a comment on one of Gosu's wiki page,
14
+ - try your luck in irc://irc.freenode.org/gosu,
15
+ - or mail me at julian@raschke.de!
16
16
 
17
17
  We hope you'll enjoy using Gosu!
Binary file
Binary file
@@ -0,0 +1,7 @@
1
+ require 'rbconfig'
2
+
3
+ if RUBY_VERSION and RUBY_VERSION[0..2] == '1.9' then
4
+ require "#{File.dirname(__FILE__)}/gosu.for_1_9.#{Config::CONFIG['DLEXT']}"
5
+ else
6
+ require "#{File.dirname(__FILE__)}/gosu.for_1_8.#{Config::CONFIG['DLEXT']}"
7
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gosu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.13
4
+ version: 0.7.13.2
5
5
  platform: universal-darwin
6
6
  authors:
7
7
  - Julian Raschke
@@ -10,11 +10,11 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2009-04-17 00:00:00 +02:00
13
+ date: 2009-05-06 00:00:00 +02:00
14
14
  default_executable:
15
15
  dependencies: []
16
16
 
17
- description: 2D game development library. Gosu features easy to use and game-friendly interfaces to 2D graphics and text (accelerated by 3D hardware), sound samples and music as well as keyboard, mouse and gamepad/joystick input. Also includes demos for integration with RMagick, Chipmunk and Ruby-OpenGL.
17
+ description: " 2D game development library.\n\n Gosu features easy to use and game-friendly interfaces to 2D graphics\n and text (accelerated by 3D hardware), sound samples and music as well as\n keyboard, mouse and gamepad/joystick input.\n\n Also includes demos for integration with RMagick, Chipmunk and Ruby-OpenGL.\n"
18
18
  email: julian@raschke.de
19
19
  executables: []
20
20
 
@@ -47,9 +47,13 @@ files:
47
47
  - examples/media/Space.png
48
48
  - examples/media/Star.png
49
49
  - examples/media/Starfighter.bmp
50
- - lib/gosu.bundle
50
+ - lib/gosu.rb
51
+ - lib/gosu.for_1_8.bundle
52
+ - lib/gosu.for_1_9.bundle
51
53
  has_rdoc: false
52
54
  homepage: http://code.google.com/p/gosu/
55
+ licenses: []
56
+
53
57
  post_install_message:
54
58
  rdoc_options: []
55
59
 
@@ -70,9 +74,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
70
74
  requirements: []
71
75
 
72
76
  rubyforge_project:
73
- rubygems_version: 1.2.0
77
+ rubygems_version: 1.3.2
74
78
  signing_key:
75
- specification_version: 2
79
+ specification_version: 3
76
80
  summary: 2D game development library.
77
81
  test_files: []
78
82
 
Binary file