libjpeg-ruby 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
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
@@ -0,0 +1,7 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in libjpeg-ruby.gemspec
6
+ gemspec
7
+ gem "rake-compiler"
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
@@ -0,0 +1,2 @@
1
+ # libjpeg-ruby
2
+ libjpeg interface for ruby.
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
@@ -0,0 +1,6 @@
1
+ require 'mkmf'
2
+
3
+ have_library( "jpeg")
4
+ have_header( "jpeglib.h")
5
+
6
+ create_makefile( "jpeg/jpeg")