-
Notifications
You must be signed in to change notification settings - Fork 66
/
chingu.gemspec
25 lines (21 loc) · 1.12 KB
/
chingu.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- encoding: utf-8 -*-
require File.dirname(__FILE__) + '/lib/chingu/version'
Gem::Specification.new do |s|
s.name = "chingu"
s.version = Chingu::VERSION
s.authors = ["ippa"]
s.email = "ippa@rubylicio.us"
s.homepage = "http://ippa.se/chingu"
s.description = "OpenGL accelerated 2D game framework for Ruby. Builds on Gosu (Ruby/C++) which provides all the core functionality. Chingu adds simple yet powerful game states, prettier input handling, deployment safe asset-handling, a basic re-usable game object and stackable game logic."
s.summary = "OpenGL accelerated 2D game framework for Ruby."
s.required_rubygems_version = ">= 1.3.6"
s.files = Dir.glob("{lib,examples,benchmarks,spec}/**/*") + %w(LICENSE README.rdoc specs.watchr Rakefile LICENSE)
s.extra_rdoc_files = [ "LICENSE", "README.rdoc" ]
s.require_paths = ["lib"]
s.rubyforge_project = "chingu"
s.add_dependency("gosu", [">= 0.7.45"])
s.add_runtime_dependency("gosu", [">= 0.7.45"])
s.add_development_dependency("rspec", [">= 2.1.0"])
s.add_development_dependency("watchr", [">= 0"])
s.add_development_dependency("rcov", [">= 0"])
end