lilimg 0.0.4 → 0.0.5
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/ext/lilimg/lilimg.c +2 -0
- data/lilimg.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a481601efdbfee1207caf955c5b6a960993616f0c782535008161db0af347889
|
|
4
|
+
data.tar.gz: 45467059c45516fdaa001d6bbc81c1d8eee3621b13291f29a528231013ec712c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6714c43c1968013726971eef0bc1509e72de27e94aeeba884d3caae49269d65a1dba4a417cde9ad7357025d2b1b2c979bf20335e9bf61c05ce21a43f2980748a
|
|
7
|
+
data.tar.gz: 29b5e20ffe33806ec63f889f9c86882804ae2f1b08d9ae02ee57098c48864f4c892bf4eef8f1ee99e86faf73cb6a845449ea62e63dd684a7c4a007035a000113
|
data/ext/lilimg/lilimg.c
CHANGED
|
@@ -26,6 +26,7 @@ static VALUE jpeg_to_gif(VALUE self, VALUE buf) {
|
|
|
26
26
|
int size = RSTRING_LEN(buf);
|
|
27
27
|
char * jpeg = StringValuePtr(buf);
|
|
28
28
|
|
|
29
|
+
/*
|
|
29
30
|
unsigned int first, second;
|
|
30
31
|
first = jpeg[0];
|
|
31
32
|
second = jpeg[1];
|
|
@@ -34,6 +35,7 @@ static VALUE jpeg_to_gif(VALUE self, VALUE buf) {
|
|
|
34
35
|
rb_raise(rb_eRuntimeError, "Not a JPEG image!");
|
|
35
36
|
return Qnil;
|
|
36
37
|
}
|
|
38
|
+
*/
|
|
37
39
|
|
|
38
40
|
njInit();
|
|
39
41
|
|
data/lilimg.gemspec
CHANGED