ruby-opengl2 0.60.2 → 0.60.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +6 -6
- metadata +42 -26
data/Rakefile
CHANGED
|
@@ -60,17 +60,17 @@ task :test_all => [:test]
|
|
|
60
60
|
# common specification for source and binary gems
|
|
61
61
|
spec = Gem::Specification.new do |s|
|
|
62
62
|
s.name = "ruby-opengl2"
|
|
63
|
-
s.version = "0.60.
|
|
64
|
-
s.authors = [ "Alain Hoang", "Jan Dvorak", "Minh Thu Vo", "James Adam" ]
|
|
65
|
-
s.homepage = "http://ruby-opengl
|
|
66
|
-
s.email = "
|
|
63
|
+
s.version = "0.60.3"
|
|
64
|
+
s.authors = [ "Alain Hoang", "Jan Dvorak", "Minh Thu Vo", "James Adam", "Paolo Bosetti" ]
|
|
65
|
+
s.homepage = "http://github.com/pbosetti/ruby-opengl"
|
|
66
|
+
s.email = "p4010@me.com"
|
|
67
67
|
s.rubyforge_project = 'ruby-opengl2'
|
|
68
68
|
s.platform = Gem::Platform::RUBY
|
|
69
69
|
s.summary = "OpenGL Interface for Ruby"
|
|
70
|
-
s.description = "
|
|
70
|
+
s.description = "This is a modernization of the glorious but unmaintained ruby-opengl version, aimed at making it compatible with ruby 1.9.x series. At the moment, it successfully compiles on OS X Lion and Debian 6.0.3"
|
|
71
71
|
s.require_path = "lib"
|
|
72
72
|
s.has_rdoc = false
|
|
73
|
-
s.files = FileList["{lib,ext,
|
|
73
|
+
s.files = FileList["{lib,ext,examples,test}/**/*"]
|
|
74
74
|
s.extensions = ['Rakefile']
|
|
75
75
|
end
|
|
76
76
|
|
metadata
CHANGED
|
@@ -1,26 +1,36 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby-opengl2
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
prerelease: false
|
|
5
|
+
segments:
|
|
6
|
+
- 0
|
|
7
|
+
- 60
|
|
8
|
+
- 3
|
|
9
|
+
version: 0.60.3
|
|
6
10
|
platform: ruby
|
|
7
|
-
authors:
|
|
11
|
+
authors:
|
|
8
12
|
- Alain Hoang
|
|
9
13
|
- Jan Dvorak
|
|
10
14
|
- Minh Thu Vo
|
|
11
15
|
- James Adam
|
|
16
|
+
- Paolo Bosetti
|
|
12
17
|
autorequire:
|
|
13
18
|
bindir: bin
|
|
14
19
|
cert_chain: []
|
|
15
|
-
|
|
20
|
+
|
|
21
|
+
date: 2011-12-20 00:00:00 +01:00
|
|
22
|
+
default_executable:
|
|
16
23
|
dependencies: []
|
|
17
|
-
|
|
18
|
-
|
|
24
|
+
|
|
25
|
+
description: This is a modernization of the glorious but unmaintained ruby-opengl version, aimed at making it compatible with ruby 1.9.x series. At the moment, it successfully compiles on OS X Lion and Debian 6.0.3
|
|
26
|
+
email: p4010@me.com
|
|
19
27
|
executables: []
|
|
20
|
-
|
|
28
|
+
|
|
29
|
+
extensions:
|
|
21
30
|
- Rakefile
|
|
22
31
|
extra_rdoc_files: []
|
|
23
|
-
|
|
32
|
+
|
|
33
|
+
files:
|
|
24
34
|
- lib/opengl.rb
|
|
25
35
|
- ext/common/common.h
|
|
26
36
|
- ext/common/conv.h
|
|
@@ -136,29 +146,35 @@ files:
|
|
|
136
146
|
- test/tc_include_gl.rb
|
|
137
147
|
- test/tc_misc.rb
|
|
138
148
|
- test/tc_require_gl.rb
|
|
139
|
-
|
|
140
|
-
homepage: http://ruby-opengl
|
|
149
|
+
has_rdoc: true
|
|
150
|
+
homepage: http://github.com/pbosetti/ruby-opengl
|
|
141
151
|
licenses: []
|
|
152
|
+
|
|
142
153
|
post_install_message:
|
|
143
154
|
rdoc_options: []
|
|
144
|
-
|
|
155
|
+
|
|
156
|
+
require_paths:
|
|
145
157
|
- lib
|
|
146
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
requirements:
|
|
155
|
-
- -
|
|
156
|
-
- !ruby/object:Gem::Version
|
|
157
|
-
|
|
158
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
159
|
+
requirements:
|
|
160
|
+
- - ">="
|
|
161
|
+
- !ruby/object:Gem::Version
|
|
162
|
+
segments:
|
|
163
|
+
- 0
|
|
164
|
+
version: "0"
|
|
165
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
166
|
+
requirements:
|
|
167
|
+
- - ">="
|
|
168
|
+
- !ruby/object:Gem::Version
|
|
169
|
+
segments:
|
|
170
|
+
- 0
|
|
171
|
+
version: "0"
|
|
158
172
|
requirements: []
|
|
173
|
+
|
|
159
174
|
rubyforge_project: ruby-opengl2
|
|
160
|
-
rubygems_version: 1.
|
|
175
|
+
rubygems_version: 1.3.6
|
|
161
176
|
signing_key:
|
|
162
177
|
specification_version: 3
|
|
163
178
|
summary: OpenGL Interface for Ruby
|
|
164
179
|
test_files: []
|
|
180
|
+
|