public
Description: High-level game framework based on rubygame
Homepage:
Clone URL: git://github.com/singpolyma/xgame.git
xgame / xgame.gemspec
100644 20 lines (18 sloc) 0.67 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Gem::Specification.new do |s|
  s.name = "xgame"
  s.version = "0.1.0" # NOTE: Don't forget to update the configure script and lib/xgame.rb
  s.date = "2008-11-15"
  s.summary = "High-level game framework based on rubygame and chipmunk"
  s.email = "singpolyma@singpolyma.net"
  s.homepage = "http://github.com/singpolyma/xgame"
  s.description = "High-level game framework based on rubygame and chipmunk"
  s.has_rdoc = true
  s.authors = ['Stephen Paul Weber']
  s.files = ["README",
"TODO",
"COPYING",
"xgame.gemspec",
"lib/xgame.rb"]
  s.extra_rdoc_files = ["README", "COPYING", "TODO"]
  s.add_dependency("rubygame", ["> 2.3.0"])
end