-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgosu_enhanced.gemspec
30 lines (26 loc) · 1.27 KB
/
gosu_enhanced.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
25
26
27
28
29
30
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'gosu_enhanced/version'
Gem::Specification.new do |spec|
spec.name = 'gosu_enhanced'
spec.version = GosuEnhanced::VERSION
spec.authors = ['Julian Nicholls']
spec.email = ['juliannicholls29@gmail.com']
spec.summary = 'Extra and enhanced versions of some Gosu classes.'
spec.description = %(Point, Size, and Region classes to hold pixel
co-ordinates and rectangle sizes respectively. An updated window class to draw
rectangles and lines in a single colour more easily. Updated font class to
measure text and return co-ordinates to centre a piece of text in a rectangle
size.)
spec.homepage = 'https://github.com/JulianNicholls/gosu_enhanced-gem'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_runtime_dependency 'gosu', '~> 0.14.5'
spec.add_development_dependency 'bundler', '~> 2.1'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'minitest', '~> 5.8'
end