monsterid 0.3.2 → 0.4.0
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 +4 -4
- data/CHANGELOG +3 -0
- data/README.md +4 -1
- data/VERSION +1 -1
- data/lib/monsterid.rb +7 -1
- metadata +8 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b70b638dc77e81b18130ee84c99622d7b672ebe5
|
|
4
|
+
data.tar.gz: cdf780b925ce81508d0c7f94da3172ddc6726c7a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b0913884f584389ef6e4ef73c6c21b837bd2843310209b9d33faa3ce74d9499d4753f5fff841b76d712e84cdda27e57ee88ab0489ce86f585d74b13699f9b740
|
|
7
|
+
data.tar.gz: 97a52426c835a05a2c5a55001829b50b17274845b9268e59bc68efa15b95d337316794a5d45edbdf8ef3c212009dec9f98cc25b2f454bc9540acd1f68504dd28
|
data/CHANGELOG
CHANGED
data/README.md
CHANGED
|
@@ -4,6 +4,9 @@ MonsterID
|
|
|
4
4
|
A port of the php script by Andreas Gohr (http://www.splitbrain.org/projects/monsterid).
|
|
5
5
|
Actually kinda more like a rewrite.
|
|
6
6
|
|
|
7
|
+
After version 0.4 only ChunkyPNG is required, thus MonsterID now only requires pure ruby. :)
|
|
8
|
+
If OilyPNG is available, MonsterID will load it, and be as fast as before. Make sure OilyPNG is at least v1.2.1, as <=1.2.0 has a bug with transparency.
|
|
9
|
+
|
|
7
10
|
Feel free to use/steal/share/improve.
|
|
8
11
|
|
|
9
12
|
USAGE
|
|
@@ -19,6 +22,6 @@ print monster.to_datastream # Prints raw PNG
|
|
|
19
22
|
```
|
|
20
23
|
|
|
21
24
|
|
|
22
|
-
Copyright (c) 2014 Knut Aldrin
|
|
25
|
+
Copyright (c) 2014-2017 Knut Aldrin. See LICENSE for
|
|
23
26
|
further details.
|
|
24
27
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.
|
|
1
|
+
0.4.0
|
data/lib/monsterid.rb
CHANGED
metadata
CHANGED
|
@@ -1,35 +1,35 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: monsterid
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Knut Aldrin
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-04-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
|
-
name:
|
|
14
|
+
name: chunky_png
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '1.
|
|
19
|
+
version: '1.3'
|
|
20
20
|
- - ">="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 1.
|
|
22
|
+
version: 1.3.7
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
26
26
|
requirements:
|
|
27
27
|
- - "~>"
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: '1.
|
|
29
|
+
version: '1.3'
|
|
30
30
|
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 1.
|
|
32
|
+
version: 1.3.7
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: bundler
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -194,7 +194,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
194
194
|
version: '0'
|
|
195
195
|
requirements: []
|
|
196
196
|
rubyforge_project:
|
|
197
|
-
rubygems_version: 2.6.
|
|
197
|
+
rubygems_version: 2.6.11
|
|
198
198
|
signing_key:
|
|
199
199
|
specification_version: 4
|
|
200
200
|
summary: Generates tiny little monsters to discern users.
|