Skip to content

Commit 8b5436d

Browse files
committed
Version 2.0.0
- Removed date (why did I put that in there?). - Oh, yeah, the C extension is gone now too. - Update dependencies.
1 parent 1a8fdbd commit 8b5436d

File tree

1 file changed

+14
-12
lines changed

1 file changed

+14
-12
lines changed

opengl-core.gemspec

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,23 @@
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.
48

5-
Gem::Specification.new { |s|
9+
10+
Gem::Specification.new do |s|
611
s.name = 'opengl-core'
7-
s.version = '1.3.2'
8-
s.date = '2013-08-12'
12+
s.version = '2.0.0'
913
s.summary = 'OpenGL core profile bindings'
1014
s.description = 'OpenGL core profile (3.2 onward, no deprecated functionality) bindings for Ruby 2.x. Generated from Khronos XML spec files.'
1115
s.authors = [ 'Noel Raymond Cower' ]
1216
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']
1618
s.homepage = 'https://github.com/nilium/ruby-opengl'
1719
s.license = 'Simplified BSD'
18-
s.required_ruby_version = '>= 2.0.0'
20+
s.required_ruby_version = '~> 2'
1921

20-
s.add_development_dependency 'nokogiri'
21-
}
22+
s.add_development_dependency 'nokogiri', '~> 1.6'
23+
end

0 commit comments

Comments
 (0)