File tree Expand file tree Collapse file tree 1 file changed +14
-12
lines changed Expand file tree Collapse file tree 1 file changed +14
-12
lines changed Original file line number Diff line number Diff line change 1
- # This file is part of ruby-opengl.
2
- # Copyright (c) 2013 Noel Raymond Cower. All rights reserved.
3
- # See COPYING for license details.
1
+ # This file is part of the opengl-core project.
2
+ # <https://github.com/nilium/ruby-opengl>
3
+ #
4
+ # -----------------------------------------------------------------------------
5
+ #
6
+ # opengl-core.gemspec
7
+ # opengl-core Gem specification.
4
8
5
- Gem ::Specification . new { |s |
9
+
10
+ Gem ::Specification . new do |s |
6
11
s . name = 'opengl-core'
7
- s . version = '1.3.2'
8
- s . date = '2013-08-12'
12
+ s . version = '2.0.0'
9
13
s . summary = 'OpenGL core profile bindings'
10
14
s . description = 'OpenGL core profile (3.2 onward, no deprecated functionality) bindings for Ruby 2.x. Generated from Khronos XML spec files.'
11
15
s . authors = [ 'Noel Raymond Cower' ]
12
16
s . email = 'ncower@gmail.com'
13
- s . files = Dir . glob ( 'lib/**/*.rb' ) +
14
- Dir . glob ( 'ext/**/*.{c,rb}' )
15
- s . extensions << 'ext/opengl-core/extconf.rb'
17
+ s . files = Dir . glob ( 'lib/**/*.rb' ) + [ 'README.md' , 'COPYING' ]
16
18
s . homepage = 'https://github.com/nilium/ruby-opengl'
17
19
s . license = 'Simplified BSD'
18
- s . required_ruby_version = '>= 2.0.0 '
20
+ s . required_ruby_version = '~> 2 '
19
21
20
- s . add_development_dependency 'nokogiri'
21
- }
22
+ s . add_development_dependency 'nokogiri' , '~> 1.6'
23
+ end
You can’t perform that action at this time.
0 commit comments