-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpario.gemspec
More file actions
26 lines (21 loc) · 1004 Bytes
/
pario.gemspec
File metadata and controls
26 lines (21 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# -*- encoding: utf-8 -*-
pario_path = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(pario_path) unless $LOAD_PATH.include?(pario_path)
require 'pario/version'
Gem::Specification.new do |s|
s.name = 'pario'
s.version = Pario::Version::STRING
s.platform = Gem::Platform::RUBY
s.authors = ['Bill Davenport', 'Anthony Burns']
s.email = ['bill@infoether.com', 'anthony@infoether.com']
s.homepage = 'http://github.com/ruby4kids/pario'
s.summary = %q{A Gosu game framework}
s.description = %q{Pario is a Gosu game framework that helps to give you structure and a start for creating games}
s.required_rubygems_version = '>= 1.3.7'
s.rubyforge_project = 'pario'
s.add_dependency('gosu', '~> 0.7.26')
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.default_executable = 'pario'
s.require_paths = ['lib']
end