Skip to content

Commit b2d1916

Browse files
author
Daniel Smith
authored
Merge pull request #33 from jellymann/bump-version
Bump version
2 parents e59af90 + 28bc5cd commit b2d1916

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

README.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Mittsu
22

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)
44

55
3D Graphics Library for Ruby
66

@@ -16,17 +16,22 @@ Mittsu makes 3D graphics easier by providing an abstraction over OpenGL, and is
1616

1717
Install the prerequisites:
1818

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
2020

2121
```bash
2222
# OSX
23-
$ brew install glfw3 imagemagick
23+
$ brew install glfw3
2424

2525
# Ubuntu
26-
$ sudo apt-get install libglfw3-dev libmagickwand-dev
26+
$ sudo apt-get install libglfw3-dev
2727
```
2828

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:\path\to\glfw3.dll
33+
> ruby your_awesome_mittsu_app.rb
34+
```
3035

3136
Add this line to your application's Gemfile:
3237

lib/mittsu/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
module Mittsu
2-
VERSION = "0.1.4"
2+
VERSION = "0.1.5"
33
REVISION = "71"
44
end

0 commit comments

Comments
 (0)