-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrubygl.gemspec
More file actions
21 lines (17 loc) · 781 Bytes
/
rubygl.gemspec
File metadata and controls
21 lines (17 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# coding: utf-8
Gem::Specification.new do |spec|
spec.authors = ["Andrew Miller"]
spec.email = ["millera9@seattleu.edu"]
spec.homepage = "https://github.com/GGist/RubyGL"
spec.summary = %q{A Complete Solution For Graphics Programming In Ruby.}
spec.description = %q{This library provides you with all of the essentials for
doing graphics programming in Ruby including windowing, context management,
1:1 mapping of OpenGL calls, and input handling. Currently supports both Windows
and MacOSX.}
spec.files = `git ls-files`.split($/)
spec.name = 'rubygl'
spec.version = '0.3.2'
spec.require_paths = ["lib"]
spec.license = "MIT"
spec.add_runtime_dependency 'ffi', '~> 1.9', '>= 1.9.5'
end