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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/glfw.gemspec +4 -3
  3. data/lib/glfw/version.rb +1 -1
  4. metadata +5 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8314d6446d7b8573e2ed4dcf9fa41665bbe83b56a7ca93f7f508fcf72715d882
4
- data.tar.gz: 05bba5bcdf092f34b5168be073350e930cc3c6829ef802dcd3c476983024ab09
3
+ metadata.gz: e69775e67613e755b555ebbb6522a3b3f7391a2c6c00d36a57a50b487badcfd3
4
+ data.tar.gz: c6058d2aa0a4e4522a474e65ba8dd88fe48b56328afa00d2c73d8c7235aaf78b
5
5
  SHA512:
6
- metadata.gz: 492be43247dc97eebbe2543b47c79a9f58537a71107658e723f30e122515c3346e8b215220a3a801f38b686bca55bef20e6313210bf0510330db18a237f72c36
7
- data.tar.gz: a4d27a84c0c30b5ef69336c279571721eeea7700366f061a002a7f19483a12a98469aa282b4e44d2ca66cc7fce0f0f68ceb05d1b01f9dc1299ef9e21250e9900
6
+ metadata.gz: 6b7d8b904daf15a09148b750c9dde8993aeaf79f57a1a464bed501276a1f7730913ab97c8a2498fbad835939d396842b56fd4923a93a2c6a246f5f0c3b96e7c1
7
+ data.tar.gz: 54df070661af858ee7c13e5a1ae41e9b58bc6119424df1118b7fa706d2285592a7af6d8a54eeda0de8b8124908d5f8c48401ac11d9503b09232ca56bb589c89b
@@ -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 that for the excellent GLFW library. Unlike other bindings, this gem goes beyond just providing a 1:1 wrapper of the functions, and has been organized to be used in a more object-oriented, Ruby way. Being statically linked with the included object file during compilation alleviates any headaches with regards to versioning or dependencies, as none are required for this gem}
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
- spec.bindir = "exe"
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'
@@ -1,3 +1,3 @@
1
1
  module GLFW
2
- VERSION = "1.0.2"
2
+ VERSION = "1.0.3"
3
3
  end
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.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Freed
8
8
  autorequire:
9
- bindir: exe
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 that for the excellent GLFW library. Unlike
56
- other bindings, this gem goes beyond just providing a 1:1 wrapper of the functions,
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: '0'
114
+ version: 2.0.0
118
115
  required_rubygems_version: !ruby/object:Gem::Requirement
119
116
  requirements:
120
117
  - - ">="