lilimg 0.0.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 +7 -0
- data/.gitignore +5 -0
- data/Rakefile +1 -0
- data/example/build.sh +2 -0
- data/example/label.jpg +0 -0
- data/example/test.c +86 -0
- data/example/test.rb +7 -0
- data/ext/extconf.rb +7 -0
- data/ext/jo_gif.h +427 -0
- data/ext/lilimg.c +71 -0
- data/ext/nanojpeg.h +928 -0
- data/lilimg.gemspec +17 -0
- metadata +54 -0
data/lilimg.gemspec
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
|
3
|
+
Gem::Specification.new do |s|
|
4
|
+
s.name = 'lilimg'
|
5
|
+
s.version = '0.0.1'
|
6
|
+
s.platform = Gem::Platform::RUBY
|
7
|
+
s.authors = ['Tomas Pollak']
|
8
|
+
s.email = ['tomas@forkhq.com']
|
9
|
+
s.homepage = "https://github.com/tomas/lilimg"
|
10
|
+
s.summary = "Native image processing in Ruby without deps."
|
11
|
+
s.required_rubygems_version = ">= 1.3.6"
|
12
|
+
s.files = `git ls-files`.split("\n")
|
13
|
+
# s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
|
14
|
+
# s.require_path = 'lib'
|
15
|
+
# s.bindir = 'bin'
|
16
|
+
# s.add_runtime_dependency 'rack-throttle', '~> 0.3'
|
17
|
+
end
|
metadata
ADDED
@@ -0,0 +1,54 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: lilimg
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Tomas Pollak
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-02-18 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description:
|
14
|
+
email:
|
15
|
+
- tomas@forkhq.com
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- ".gitignore"
|
21
|
+
- Rakefile
|
22
|
+
- example/build.sh
|
23
|
+
- example/label.jpg
|
24
|
+
- example/test.c
|
25
|
+
- example/test.rb
|
26
|
+
- ext/extconf.rb
|
27
|
+
- ext/jo_gif.h
|
28
|
+
- ext/lilimg.c
|
29
|
+
- ext/nanojpeg.h
|
30
|
+
- lilimg.gemspec
|
31
|
+
homepage: https://github.com/tomas/lilimg
|
32
|
+
licenses: []
|
33
|
+
metadata: {}
|
34
|
+
post_install_message:
|
35
|
+
rdoc_options: []
|
36
|
+
require_paths:
|
37
|
+
- lib
|
38
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
39
|
+
requirements:
|
40
|
+
- - ">="
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: '0'
|
43
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 1.3.6
|
48
|
+
requirements: []
|
49
|
+
rubyforge_project:
|
50
|
+
rubygems_version: 2.7.3
|
51
|
+
signing_key:
|
52
|
+
specification_version: 4
|
53
|
+
summary: Native image processing in Ruby without deps.
|
54
|
+
test_files: []
|