rmath3d_plain 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/ChangeLog +4 -0
  3. data/LICENSE.txt +1 -1
  4. data/README.md +1 -1
  5. metadata +8 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b7b422319e3b48310d1f08f251af272fca707cb8
4
- data.tar.gz: 7f6a9b6f8f6a5b8726292932fb86d8332adde298
3
+ metadata.gz: 3625f1baf42745a3e10bcba93e504b9c83764180
4
+ data.tar.gz: e1f7590e0aa500ab797a31434cd1b3a397e2840f
5
5
  SHA512:
6
- metadata.gz: 90eec224b1670972296612fb159cba2ec95aeb950430f13bce280df9df2bdc703f2af600f3d3081394bc361b4683f7ad0910b570ea03752e145d7ff4aedff4eb
7
- data.tar.gz: 62f3c4f0589b3cd895cfa4e133774c124a929c4b47574859574a3ec81e53ecbcff5cc82db1475c79c3e7646b9607f4179973e91a4b3b5e85d310a48557d31ea3
6
+ metadata.gz: aba8c4dae29be93bf0beb77cc11c4a401db89fdf8e7b608d41dff379bbec96c6702c14669c23933e24df05c5d79d0500e322659f6c12a8a5818c72a09646a0c9
7
+ data.tar.gz: 2b9c55755c9aa514735e63129df3d37b6486b3b83746b549ddae0a3c87e9bb0cc77ce140632b115dbf750c8aeb68535ae500106b27d9fb4fa581f9aeadcfcc69
data/ChangeLog CHANGED
@@ -1,3 +1,7 @@
1
+ 2014-05-17 vaiorabbit <http://twitter.com/vaiorabbit>
2
+
3
+ * ext/rmath3d/rmath3d.c: Fixed memory management
4
+
1
5
  2013-10-26 vaiorabbit <http://twitter.com/vaiorabbit>
2
6
 
3
7
  * rmath3d_plain.gemspec: Packs pure ruby implementation into 'rmath3d_plain-X.Y.Z.gem'.
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
@@ -4,7 +4,7 @@
4
4
 
5
5
  rmath3d is a math module for 3D game programming and computer graphics.
6
6
 
7
- * Last Update: Oct 26, 2013
7
+ * Last Update: May 17, 2014
8
8
  * Since: Jul 20, 2008
9
9
 
10
10
  ## Features ##
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.1
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: 2013-10-26 00:00:00.000000000 Z
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.1.4
54
+ rubygems_version: 2.2.2
55
55
  signing_key:
56
56
  specification_version: 4
57
57
  summary: Ruby Math Module for 3D Applications