libjpeg-ruby 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Gemfile +7 -0
- data/LICENSE +21 -0
- data/README.md +2 -0
- data/Rakefile +2 -0
- data/ext/jpeg/extconf.rb +6 -0
- data/ext/jpeg/jpeg.c +1506 -0
- data/lib/jpeg/version.rb +3 -0
- data/lib/jpeg.rb +5 -0
- data/libjpeg-ruby.gemspec +37 -0
- metadata +96 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: ca94a8b3e9236b03b8ec0ca9f9b30837a6f3cb0c7014f9e48b169601a701fc44
|
4
|
+
data.tar.gz: cefa3b898236cc01e540ca6003cfa6792c39acf4b5793bf438dd47b6f8c23b75
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: f3b89c866bdc6fbe311d40b221e67c718068f9920e1db3b33a728478a79910808ce0b25f1a81628d7590d2f907d57572ddd91068b3e07330c562d34cab66e5be
|
7
|
+
data.tar.gz: b41ac45a2640e54bf341a8bb684d7740c8d17cdf25bdbeb1bce369bbc9d4a13dd29c570486cbbf72ea6ff5300fdfe0ba237ce1a6175a6d5da02c39b582a65d9c
|
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2018 Hiroshi Kuwagata
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/README.md
ADDED
data/Rakefile
ADDED