glfw 1.0.2 → 1.0.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.
- checksums.yaml +4 -4
- data/glfw.gemspec +4 -3
- data/lib/glfw/version.rb +1 -1
- metadata +5 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e69775e67613e755b555ebbb6522a3b3f7391a2c6c00d36a57a50b487badcfd3
|
|
4
|
+
data.tar.gz: c6058d2aa0a4e4522a474e65ba8dd88fe48b56328afa00d2c73d8c7235aaf78b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6b7d8b904daf15a09148b750c9dde8993aeaf79f57a1a464bed501276a1f7730913ab97c8a2498fbad835939d396842b56fd4923a93a2c6a246f5f0c3b96e7c1
|
|
7
|
+
data.tar.gz: 54df070661af858ee7c13e5a1ae41e9b58bc6119424df1118b7fa706d2285592a7af6d8a54eeda0de8b8124908d5f8c48401ac11d9503b09232ca56bb589c89b
|
data/glfw.gemspec
CHANGED
|
@@ -10,18 +10,19 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ["efreed09@gmail.com"]
|
|
11
11
|
|
|
12
12
|
spec.summary = %q{GLFW is an Open Source, multi-platform library for OpenGL, OpenGL ES and Vulkan development on the desktop. It provides a simple API for creating windows, contexts and surfaces, receiving input and events.}
|
|
13
|
-
spec.description = %q{This is a Ruby C-extension
|
|
13
|
+
spec.description = %q{This is a high-performance Ruby C-extension for the excellent GLFW 3.2 library.}
|
|
14
14
|
spec.homepage = "https://github.com/ForeverZer0/glfw"
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
|
|
17
17
|
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
|
18
18
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
19
19
|
end
|
|
20
|
-
|
|
21
|
-
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
20
|
+
|
|
22
21
|
spec.require_paths = ["lib"]
|
|
23
22
|
spec.extensions = ["ext/glfw/extconf.rb"]
|
|
24
23
|
|
|
24
|
+
spec.required_ruby_version = '>= 2.0.0'
|
|
25
|
+
|
|
25
26
|
spec.add_development_dependency "bundler", "~> 1.16"
|
|
26
27
|
spec.add_development_dependency "rake", "~> 10.0"
|
|
27
28
|
spec.add_development_dependency "rake-compiler", '~> 0'
|
data/lib/glfw/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: glfw
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eric Freed
|
|
8
8
|
autorequire:
|
|
9
|
-
bindir:
|
|
9
|
+
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2019-04-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
@@ -52,11 +52,8 @@ dependencies:
|
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '0'
|
|
55
|
-
description: This is a Ruby C-extension
|
|
56
|
-
|
|
57
|
-
and has been organized to be used in a more object-oriented, Ruby way. Being statically
|
|
58
|
-
linked with the included object file during compilation alleviates any headaches
|
|
59
|
-
with regards to versioning or dependencies, as none are required for this gem
|
|
55
|
+
description: This is a high-performance Ruby C-extension for the excellent GLFW 3.2
|
|
56
|
+
library.
|
|
60
57
|
email:
|
|
61
58
|
- efreed09@gmail.com
|
|
62
59
|
executables: []
|
|
@@ -114,7 +111,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
114
111
|
requirements:
|
|
115
112
|
- - ">="
|
|
116
113
|
- !ruby/object:Gem::Version
|
|
117
|
-
version:
|
|
114
|
+
version: 2.0.0
|
|
118
115
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
119
116
|
requirements:
|
|
120
117
|
- - ">="
|