mittsu 0.1.6 → 0.1.7

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 888b8fed281195b187add2cce25a4ef54f737a11
4
- data.tar.gz: 5416e8ec76e74ab04725f9e79d5b1b2a0f744b28
3
+ metadata.gz: a15eb90a730149936c85793e1a878839f6498c71
4
+ data.tar.gz: 4e56fb37a5f51f36ecc2a8b68ce3dcae28fd3466
5
5
  SHA512:
6
- metadata.gz: 6bda9102f024f4c5f611ae1e46c603bc16fa0d7d73e7c5665d57c9711bc29767d9de6a6c79928cebe8362eeb5bbb2125b17b54cc39c28b3804a431e5393cc472
7
- data.tar.gz: dab44a21708d30c12eac2ba653e59114f5a3c61b68624ba98b3bc6b11277c435a03fcda783acf67cfe33dfd71dfdfd81dc44673be7bd2621363a90e83dd66aee
6
+ metadata.gz: cbf90e07efcdc8d6412e928bfbea0bb2026fb6e834450672f80b9c5cabc4be395fbef0dd3511f00b716baed2397a1256475e09461032fd6fdd12559c04739374
7
+ data.tar.gz: c8807939aa277079aeff28dc2b13b450b7d6161e122a0aed7903be7ac64220016e436992604052502a6ad9a2847f285f3f918cc54b9d2958a89c43e6a2c63070
data/circle.yml CHANGED
@@ -1,5 +1,9 @@
1
1
  ## Customize the test machine
2
2
  machine:
3
+ environment:
4
+ MITTSU_LIBGLFW_PATH: /usr/local/lib
5
+ MITTSU_LIBGLFW_FILE: libglfw.so
6
+ MINITEST_REPORTER: JUnit
3
7
 
4
8
  # Version of ruby to use
5
9
  ruby:
@@ -15,7 +15,7 @@ module Mittsu
15
15
  def get_world_direction(target = Vector3.new)
16
16
  @_quaternion ||= Quaternion.new
17
17
  self.get_world_quaternion(@_quaternion)
18
- target.set(0.0, 0.0, -1.0).qpply_quaternion(@_quaternion)
18
+ target.set(0.0, 0.0, -1.0).apply_quaternion(@_quaternion)
19
19
  end
20
20
 
21
21
  def look_at(vector)
@@ -1,4 +1,9 @@
1
- require 'chunky_png'
1
+ begin
2
+ require 'oily_png'
3
+ rescue LoadError
4
+ require 'chunky_png'
5
+ end
6
+
2
7
  require 'mittsu/extras/image'
3
8
 
4
9
  module Mittsu
@@ -1,4 +1,4 @@
1
1
  module Mittsu
2
- VERSION = "0.1.6"
2
+ VERSION = "0.1.7"
3
3
  REVISION = "71"
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mittsu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Smith
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-01-08 00:00:00.000000000 Z
11
+ date: 2017-01-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: opengl-bindings
@@ -384,7 +384,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
384
384
  requirements:
385
385
  - OpenGL 3.3+ capable hardware and drivers
386
386
  rubyforge_project:
387
- rubygems_version: 2.5.1
387
+ rubygems_version: 2.5.2
388
388
  signing_key:
389
389
  specification_version: 4
390
390
  summary: 3D Graphics Library for Ruby