img_overlay 0.1.0 → 0.1.1
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/README.md +5 -1
- data/lib/img_overlay.rb +1 -1
- data/lib/img_overlay/helper.rb +3 -3
- data/lib/img_overlay/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e5c3f3491729174d4e61185567879377270668de
|
|
4
|
+
data.tar.gz: 5eebd35dabd08feccd8a963e29315c9d0786eb14
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c530b4e55d9037218f2fc1d667d8c89d3ed55e532fa145e43f8251abf872214be8e6bfd59ef1f6eff8d012f557d5420596a2d297509fd736420978aefb8c817f
|
|
7
|
+
data.tar.gz: 7d69e5f6c8fe0f5649104dd2ed602fcca79eb5868253d3b0836dfa72b85070a3ae403406f969b898c3ef22d62e5ba6c9a78f7aaa9657ad93b62ef678e9ce1bd8
|
data/README.md
CHANGED
|
@@ -12,7 +12,7 @@ See how the title "The smartest way to manage your data" is on some image that i
|
|
|
12
12
|
|
|
13
13
|
## Dependencies
|
|
14
14
|
|
|
15
|
-
The gem depends on ImageMagic to be installed on your computer. It just shells out and runs ImageMagic commands.
|
|
15
|
+
The gem depends on **ImageMagic** to be installed on your computer. It just shells out and runs ImageMagic commands.
|
|
16
16
|
|
|
17
17
|
## Installation
|
|
18
18
|
|
|
@@ -65,6 +65,10 @@ success = make_image_with_overlay(
|
|
|
65
65
|
|
|
66
66
|
That's it. It all works, you will get a true or a false.
|
|
67
67
|
|
|
68
|
+
#### Fixed Bug
|
|
69
|
+
|
|
70
|
+
There was a bug in version 0.1.0 where it would not reuturn false if it failed to make the image. Fixed that bug with an update to version 0.1.1
|
|
71
|
+
|
|
68
72
|
## Testing
|
|
69
73
|
|
|
70
74
|
This gem needs more tests and development around validating user input and giving helpful error messages. Just now, it will simply fail. It needs better feedback for users when the inputs are not right. It also needs better error messages when the inputs are funny.
|
data/lib/img_overlay.rb
CHANGED
data/lib/img_overlay/helper.rb
CHANGED
data/lib/img_overlay/version.rb
CHANGED