File tree Expand file tree Collapse file tree 2 files changed +11
-6
lines changed Expand file tree Collapse file tree 2 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 1
1
# Mittsu
2
2
3
- [ ![ Gem Version] ( https://badge.fury.io/rb/mittsu.svg )] ( https://badge.fury.io/rb/mittsu ) [ ![ Dependency Status] ( https://gemnasium.com/jellymann/mittsu.svg )] ( https://gemnasium.com/jellymann/mittsu ) [ ![ Circle CI] ( https://circleci.com/gh/jellymann/mittsu/tree/master.svg?style=shield )] ( https://circleci.com/gh/jellymann/mittsu/tree/master ) [ ![ Test Coverage] ( https://codeclimate.com/github/jellymann/mittsu/badges/coverage.svg )] ( https://codeclimate.com/github/jellymann/mittsu/coverage ) [ ![ Code Climate] ( https://codeclimate.com/github/jellymann/mittsu/badges/gpa.svg )] ( https://codeclimate.com/github/jellymann/mittsu )
3
+ [ ![ Gem Version] ( https://badge.fury.io/rb/mittsu.svg )] ( https://badge.fury.io/rb/mittsu ) [ ![ Dependency Status] ( https://gemnasium.com/jellymann/mittsu.svg )] ( https://gemnasium.com/jellymann/mittsu ) [ ![ Circle CI] ( https://circleci.com/gh/jellymann/mittsu/tree/master.svg?style=shield )] ( https://circleci.com/gh/jellymann/mittsu/tree/master ) [ ![ Build status ] ( https://ci.appveyor.com/api/projects/status/x7k8r95m5f5fg9cu/branch/master?svg=true )] ( https://ci.appveyor.com/project/jellymann/mittsu/branch/master ) [ ![ Test Coverage] ( https://codeclimate.com/github/jellymann/mittsu/badges/coverage.svg )] ( https://codeclimate.com/github/jellymann/mittsu/coverage ) [ ![ Code Climate] ( https://codeclimate.com/github/jellymann/mittsu/badges/gpa.svg )] ( https://codeclimate.com/github/jellymann/mittsu )
4
4
5
5
3D Graphics Library for Ruby
6
6
@@ -16,17 +16,22 @@ Mittsu makes 3D graphics easier by providing an abstraction over OpenGL, and is
16
16
17
17
Install the prerequisites:
18
18
19
- Mittsu depends on Ruby 2.x, OpenGL 3.3+, GLFW 3.1.x and ImageMagick 6.4.9+
19
+ Mittsu depends on Ruby 2.x, OpenGL 3.3+, and GLFW 3.1.x
20
20
21
21
``` bash
22
22
# OSX
23
- $ brew install glfw3 imagemagick
23
+ $ brew install glfw3
24
24
25
25
# Ubuntu
26
- $ sudo apt-get install libglfw3-dev libmagickwand-dev
26
+ $ sudo apt-get install libglfw3-dev
27
27
```
28
28
29
- ** NOTE** : On Ubuntu, you may need to install ` libgl1-mesa-dev ` for the OpenGL dependency.
29
+ ** NOTE:** On Windows, you will have to manually specify the glfw3.dll path in an environment variable
30
+ (you can download it [ here] ( http://www.glfw.org/download.html ) )
31
+ ``` bash
32
+ > set MITTSU_LIBGLFW_PATH=C:\p ath\t o\g lfw3.dll
33
+ > ruby your_awesome_mittsu_app.rb
34
+ ```
30
35
31
36
Add this line to your application's Gemfile:
32
37
Original file line number Diff line number Diff line change 1
1
module Mittsu
2
- VERSION = "0.1.4 "
2
+ VERSION = "0.1.5 "
3
3
REVISION = "71"
4
4
end
You can’t perform that action at this time.
0 commit comments