pikl 0.2.7-x86-mswin32 → 0.2.8-x86-mswin32

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.
@@ -0,0 +1,12 @@
1
+ #ifndef _LIB_PIKL_SCRAP_
2
+ #define _LIB_PIKL_SCRAP_
3
+
4
+ #include <stdio.h>
5
+ #include <stdlib.h>
6
+ #include <string.h>
7
+ #include <math.h>
8
+
9
+ #include "pikl.h"
10
+ #include "pikl_private.h"
11
+
12
+ #endif
@@ -2,7 +2,7 @@ module Pikl #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 2
5
- TINY = 7
5
+ TINY = 8
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pikl
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.7
4
+ version: 0.2.8
5
5
  platform: x86-mswin32
6
6
  authors:
7
7
  - Ryota Maruko
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-09-27 00:00:00 +09:00
12
+ date: 2008-10-09 00:00:00 +09:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -32,15 +32,36 @@ files:
32
32
  - README.txt
33
33
  - config/hoe.rb
34
34
  - config/requirements.rb
35
+ - ext/pikl/decrease/fsdither.h
36
+ - ext/pikl/decrease/median.c
37
+ - ext/pikl/decrease/median.h
38
+ - ext/pikl/decrease/neuquan5.c
39
+ - ext/pikl/decrease/neuquant.h
40
+ - ext/pikl/decrease/wu.c
41
+ - ext/pikl/decrease/wu.h
35
42
  - ext/pikl/pikl.h
43
+ - ext/pikl/pikl_affine.c
44
+ - ext/pikl/pikl_affine.h
36
45
  - ext/pikl/pikl_bitmap.c
37
46
  - ext/pikl/pikl_bitmap.h
47
+ - ext/pikl/pikl_blur.c
48
+ - ext/pikl/pikl_blur.h
49
+ - ext/pikl/pikl_decrease.c
50
+ - ext/pikl/pikl_decrease.h
38
51
  - ext/pikl/pikl_effect.c
39
52
  - ext/pikl/pikl_effect.h
53
+ - ext/pikl/pikl_effect2.c
54
+ - ext/pikl/pikl_effect2.h
55
+ - ext/pikl/pikl_effect3.c
56
+ - ext/pikl/pikl_effect3.h
57
+ - ext/pikl/pikl_effect4.c
58
+ - ext/pikl/pikl_effect4.h
40
59
  - ext/pikl/pikl_io.c
41
60
  - ext/pikl/pikl_io.h
42
61
  - ext/pikl/pikl_jpeg.c
43
62
  - ext/pikl/pikl_jpeg.h
63
+ - ext/pikl/pikl_pattern.c
64
+ - ext/pikl/pikl_pattern.h
44
65
  - ext/pikl/pikl_png.c
45
66
  - ext/pikl/pikl_png.h
46
67
  - ext/pikl/pikl_private.h
@@ -50,6 +71,8 @@ files:
50
71
  - ext/pikl/pikl_rotate.h
51
72
  - ext/pikl/pikl_rotate2.c
52
73
  - ext/pikl/pikl_rotate2.h
74
+ - ext/pikl/pikl_scrap.c
75
+ - ext/pikl/pikl_scrap.h
53
76
  - ext/pikl/pikl_trim.c
54
77
  - ext/pikl/pikl_trim.h
55
78
  - lib/pikl.rb
@@ -87,7 +110,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
110
  requirements: []
88
111
 
89
112
  rubyforge_project: pikl-mswin32
90
- rubygems_version: 1.0.1
113
+ rubygems_version: 1.3.0
91
114
  signing_key:
92
115
  specification_version: 2
93
116
  summary: Pikl is an image librarry for JPEG, PNG and Bitmap.Pikl's API is designed to process the image easily with method chain.