minigl 1.3.4 → 1.3.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +4 -7
- metadata +2 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 16b214afd8da667badd44dc33f301fe6b16b6d68
|
4
|
+
data.tar.gz: 89bf036f2140e402f24f15e53d0cbacdd5d68ca1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 34688232785899c45df79cad456ba3a364466afc43e4d517376545b97980dfa146de90384f68d92c6fc6dbb515da64beeb3a19dad0923d435ad93b8c4619a245
|
7
|
+
data.tar.gz: f2f7bc46164c3b129b2a9c447030673657e59e59712dc01bbccfe4b52ac764f568ada3336350d92765a5018af93c024feed6d1f94e2a6a52dcdb3328be3e6334
|
data/README.md
CHANGED
@@ -21,7 +21,7 @@ dependencies for compiling extensions. Visit
|
|
21
21
|
[this page](https://github.com/jlnr/gosu/wiki/Getting-Started-on-Linux) for
|
22
22
|
details.
|
23
23
|
|
24
|
-
After installing
|
24
|
+
After installing the gosu dependencies, you can just `gem install minigl`.
|
25
25
|
|
26
26
|
Please note:
|
27
27
|
|
@@ -32,10 +32,7 @@ this [working game example](https://github.com/victords/aventura-do-saber).
|
|
32
32
|
* An auxiliary, tutorial-like documentation is under construction
|
33
33
|
[here](https://github.com/victords/minigl/wiki).
|
34
34
|
|
35
|
-
**Version 1.3.
|
35
|
+
**Version 1.3.5**
|
36
36
|
|
37
|
-
* Fixed
|
38
|
-
|
39
|
-
* Added `prefix=` method to `Res`, allowing specification of the prefix for
|
40
|
-
the 'data' directory.
|
41
|
-
* Added the `limit_cam` and `isometric` options to the `Map` class.
|
37
|
+
* Fixed Gosu version dependency.
|
38
|
+
* Added Gemfile, for developers.
|
metadata
CHANGED
@@ -1,23 +1,20 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: minigl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Victor David Santos
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-10-
|
11
|
+
date: 2014-10-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gosu
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
17
|
- - ~>
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '0.7'
|
20
|
-
- - '>='
|
21
18
|
- !ruby/object:Gem::Version
|
22
19
|
version: 0.7.50
|
23
20
|
type: :runtime
|
@@ -25,9 +22,6 @@ dependencies:
|
|
25
22
|
version_requirements: !ruby/object:Gem::Requirement
|
26
23
|
requirements:
|
27
24
|
- - ~>
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
version: '0.7'
|
30
|
-
- - '>='
|
31
25
|
- !ruby/object:Gem::Version
|
32
26
|
version: 0.7.50
|
33
27
|
description: A minimal 2D Game Library built on top of the Gosu gem.
|