forked from nilium/ruby-glfw3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglfw3.gemspec
27 lines (26 loc) · 893 Bytes
/
glfw3.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
# This file is part of ruby-glfw3.
# Copyright (c) 2013 Noel Raymond Cower. All rights reserved.
# See COPYING for license details.
Gem::Specification.new { |s|
s.name = 'glfw3'
s.version = '0.4.7'
s.summary = 'GLFW3'
s.description = 'GLFW 3 bindings for Ruby 2.x'
s.authors = [ 'Noel Raymond Cower' ]
s.email = '[email protected]'
s.files = Dir.glob('lib/**/*.rb') +
Dir.glob('ext/**/*.{c,rb}') +
[ 'COPYING', 'README.md' ]
s.extensions << 'ext/glfw3/extconf.rb'
s.homepage = 'https://github.com/nilium/ruby-glfw3'
s.license = 'Simplified BSD'
s.has_rdoc = true
s.extra_rdoc_files = [
'ext/glfw3/glfw3.c',
'README.md',
'COPYING'
]
s.rdoc_options << '--title' << 'GLFW 3 Bindings' <<
'--main' << 'README.md' <<
'--line-numbers'
}