rmath3d_plain 1.0.1 → 1.0.2
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/ChangeLog +4 -0
- data/LICENSE.txt +1 -1
- data/README.md +1 -1
- metadata +8 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3625f1baf42745a3e10bcba93e504b9c83764180
|
|
4
|
+
data.tar.gz: e1f7590e0aa500ab797a31434cd1b3a397e2840f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aba8c4dae29be93bf0beb77cc11c4a401db89fdf8e7b608d41dff379bbec96c6702c14669c23933e24df05c5d79d0500e322659f6c12a8a5818c72a09646a0c9
|
|
7
|
+
data.tar.gz: 2b9c55755c9aa514735e63129df3d37b6486b3b83746b549ddae0a3c87e9bb0cc77ce140632b115dbf750c8aeb68535ae500106b27d9fb4fa581f9aeadcfcc69
|
data/ChangeLog
CHANGED
data/LICENSE.txt
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
rmath3d : Ruby math module for 3D Applications
|
|
2
|
-
Copyright (c) 2008- vaiorabbit <http://twitter.com/vaiorabbit>
|
|
2
|
+
Copyright (c) 2008-2014 vaiorabbit <http://twitter.com/vaiorabbit>
|
|
3
3
|
|
|
4
4
|
This software is provided 'as-is', without any express or implied
|
|
5
5
|
warranty. In no event will the authors be held liable for any damages
|
data/README.md
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rmath3d_plain
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- vaiorabbit
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2014-05-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: |
|
|
14
14
|
Provides vector3/4, matrix3x3/4x4 and quaternion in plain Ruby form.
|
|
@@ -18,6 +18,9 @@ executables: []
|
|
|
18
18
|
extensions: []
|
|
19
19
|
extra_rdoc_files: []
|
|
20
20
|
files:
|
|
21
|
+
- ChangeLog
|
|
22
|
+
- LICENSE.txt
|
|
23
|
+
- README.md
|
|
21
24
|
- lib/rmath3d/rmath3d_plain.rb
|
|
22
25
|
- sample/opengl-bindings/load_matrix.rb
|
|
23
26
|
- sample/opengl2/load_matrix.rb
|
|
@@ -28,9 +31,6 @@ files:
|
|
|
28
31
|
- test/test_RQuat.rb
|
|
29
32
|
- test/test_RVec3.rb
|
|
30
33
|
- test/test_RVec4.rb
|
|
31
|
-
- ChangeLog
|
|
32
|
-
- LICENSE.txt
|
|
33
|
-
- README.md
|
|
34
34
|
homepage: https://github.com/vaiorabbit/rmath3d
|
|
35
35
|
licenses:
|
|
36
36
|
- zlib/libpng
|
|
@@ -41,17 +41,17 @@ require_paths:
|
|
|
41
41
|
- lib
|
|
42
42
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
43
43
|
requirements:
|
|
44
|
-
- -
|
|
44
|
+
- - ">="
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
46
|
version: '0'
|
|
47
47
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
48
48
|
requirements:
|
|
49
|
-
- -
|
|
49
|
+
- - ">="
|
|
50
50
|
- !ruby/object:Gem::Version
|
|
51
51
|
version: '0'
|
|
52
52
|
requirements: []
|
|
53
53
|
rubyforge_project:
|
|
54
|
-
rubygems_version: 2.
|
|
54
|
+
rubygems_version: 2.2.2
|
|
55
55
|
signing_key:
|
|
56
56
|
specification_version: 4
|
|
57
57
|
summary: Ruby Math Module for 3D Applications
|