lzoruby 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (126) hide show
  1. data/LICENSE.txt +339 -0
  2. data/README.txt +57 -0
  3. data/ext/compr1b.h +81 -0
  4. data/ext/compr1c.h +81 -0
  5. data/ext/config1.h +61 -0
  6. data/ext/config1a.h +196 -0
  7. data/ext/config1b.h +140 -0
  8. data/ext/config1c.h +145 -0
  9. data/ext/config1f.h +97 -0
  10. data/ext/config1x.h +118 -0
  11. data/ext/config1y.h +66 -0
  12. data/ext/config1z.h +65 -0
  13. data/ext/config2a.h +155 -0
  14. data/ext/extconf.rb +2 -0
  15. data/ext/lzo/lzo1.h +96 -0
  16. data/ext/lzo/lzo1a.h +96 -0
  17. data/ext/lzo/lzo1b.h +160 -0
  18. data/ext/lzo/lzo1c.h +160 -0
  19. data/ext/lzo/lzo1f.h +108 -0
  20. data/ext/lzo/lzo1x.h +177 -0
  21. data/ext/lzo/lzo1y.h +145 -0
  22. data/ext/lzo/lzo1z.h +150 -0
  23. data/ext/lzo/lzo2a.h +92 -0
  24. data/ext/lzo/lzo_asm.h +139 -0
  25. data/ext/lzo/lzoconf.h +417 -0
  26. data/ext/lzo/lzodefs.h +1807 -0
  27. data/ext/lzo/lzoutil.h +73 -0
  28. data/ext/lzo1.c +635 -0
  29. data/ext/lzo1_99.c +130 -0
  30. data/ext/lzo1_cm.ch +52 -0
  31. data/ext/lzo1_d.ch +155 -0
  32. data/ext/lzo1a.c +657 -0
  33. data/ext/lzo1a_99.c +130 -0
  34. data/ext/lzo1a_cm.ch +242 -0
  35. data/ext/lzo1a_cr.ch +128 -0
  36. data/ext/lzo1a_de.h +158 -0
  37. data/ext/lzo1b_1.c +46 -0
  38. data/ext/lzo1b_2.c +46 -0
  39. data/ext/lzo1b_3.c +46 -0
  40. data/ext/lzo1b_4.c +46 -0
  41. data/ext/lzo1b_5.c +46 -0
  42. data/ext/lzo1b_6.c +46 -0
  43. data/ext/lzo1b_7.c +46 -0
  44. data/ext/lzo1b_8.c +46 -0
  45. data/ext/lzo1b_9.c +46 -0
  46. data/ext/lzo1b_99.c +49 -0
  47. data/ext/lzo1b_9x.c +365 -0
  48. data/ext/lzo1b_c.ch +270 -0
  49. data/ext/lzo1b_cc.c +167 -0
  50. data/ext/lzo1b_cc.h +93 -0
  51. data/ext/lzo1b_cm.ch +294 -0
  52. data/ext/lzo1b_cr.ch +126 -0
  53. data/ext/lzo1b_d.ch +282 -0
  54. data/ext/lzo1b_d1.c +46 -0
  55. data/ext/lzo1b_d2.c +46 -0
  56. data/ext/lzo1b_de.h +344 -0
  57. data/ext/lzo1b_r.ch +117 -0
  58. data/ext/lzo1b_rr.c +43 -0
  59. data/ext/lzo1b_sm.ch +210 -0
  60. data/ext/lzo1b_tm.ch +99 -0
  61. data/ext/lzo1b_xx.c +98 -0
  62. data/ext/lzo1c_1.c +46 -0
  63. data/ext/lzo1c_2.c +46 -0
  64. data/ext/lzo1c_3.c +46 -0
  65. data/ext/lzo1c_4.c +46 -0
  66. data/ext/lzo1c_5.c +46 -0
  67. data/ext/lzo1c_6.c +46 -0
  68. data/ext/lzo1c_7.c +46 -0
  69. data/ext/lzo1c_8.c +46 -0
  70. data/ext/lzo1c_9.c +46 -0
  71. data/ext/lzo1c_99.c +49 -0
  72. data/ext/lzo1c_9x.c +379 -0
  73. data/ext/lzo1c_cc.c +167 -0
  74. data/ext/lzo1c_cc.h +93 -0
  75. data/ext/lzo1c_d1.c +46 -0
  76. data/ext/lzo1c_d2.c +46 -0
  77. data/ext/lzo1c_rr.c +43 -0
  78. data/ext/lzo1c_xx.c +98 -0
  79. data/ext/lzo1f_1.c +312 -0
  80. data/ext/lzo1f_9x.c +345 -0
  81. data/ext/lzo1f_d.ch +223 -0
  82. data/ext/lzo1f_d1.c +46 -0
  83. data/ext/lzo1f_d2.c +46 -0
  84. data/ext/lzo1x_1.c +50 -0
  85. data/ext/lzo1x_1k.c +50 -0
  86. data/ext/lzo1x_1l.c +50 -0
  87. data/ext/lzo1x_1o.c +50 -0
  88. data/ext/lzo1x_9x.c +881 -0
  89. data/ext/lzo1x_c.ch +351 -0
  90. data/ext/lzo1x_d.ch +466 -0
  91. data/ext/lzo1x_d1.c +46 -0
  92. data/ext/lzo1x_d2.c +46 -0
  93. data/ext/lzo1x_d3.c +108 -0
  94. data/ext/lzo1x_o.c +45 -0
  95. data/ext/lzo1x_oo.ch +366 -0
  96. data/ext/lzo1y_1.c +50 -0
  97. data/ext/lzo1y_9x.c +42 -0
  98. data/ext/lzo1y_d1.c +46 -0
  99. data/ext/lzo1y_d2.c +46 -0
  100. data/ext/lzo1y_d3.c +45 -0
  101. data/ext/lzo1y_o.c +45 -0
  102. data/ext/lzo1z_9x.c +42 -0
  103. data/ext/lzo1z_d1.c +46 -0
  104. data/ext/lzo1z_d2.c +46 -0
  105. data/ext/lzo1z_d3.c +45 -0
  106. data/ext/lzo2a_9x.c +357 -0
  107. data/ext/lzo2a_d.ch +188 -0
  108. data/ext/lzo2a_d1.c +46 -0
  109. data/ext/lzo2a_d2.c +46 -0
  110. data/ext/lzo_conf.h +323 -0
  111. data/ext/lzo_crc.c +167 -0
  112. data/ext/lzo_dict.h +316 -0
  113. data/ext/lzo_dll.ch +64 -0
  114. data/ext/lzo_init.c +176 -0
  115. data/ext/lzo_mchw.ch +242 -0
  116. data/ext/lzo_ptr.c +92 -0
  117. data/ext/lzo_ptr.h +154 -0
  118. data/ext/lzo_str.c +71 -0
  119. data/ext/lzo_swd.ch +707 -0
  120. data/ext/lzo_util.c +165 -0
  121. data/ext/lzoruby.c +149 -0
  122. data/ext/miniacc.h +6553 -0
  123. data/ext/stats1a.h +137 -0
  124. data/ext/stats1b.h +142 -0
  125. data/ext/stats1c.h +61 -0
  126. metadata +180 -0
data/ext/stats1a.h ADDED
@@ -0,0 +1,137 @@
1
+ /* stats1a.h -- statistics for the the LZO1A algorithm
2
+
3
+ This file is part of the LZO real-time data compression library.
4
+
5
+ Copyright (C) 2008 Markus Franz Xaver Johannes Oberhumer
6
+ Copyright (C) 2007 Markus Franz Xaver Johannes Oberhumer
7
+ Copyright (C) 2006 Markus Franz Xaver Johannes Oberhumer
8
+ Copyright (C) 2005 Markus Franz Xaver Johannes Oberhumer
9
+ Copyright (C) 2004 Markus Franz Xaver Johannes Oberhumer
10
+ Copyright (C) 2003 Markus Franz Xaver Johannes Oberhumer
11
+ Copyright (C) 2002 Markus Franz Xaver Johannes Oberhumer
12
+ Copyright (C) 2001 Markus Franz Xaver Johannes Oberhumer
13
+ Copyright (C) 2000 Markus Franz Xaver Johannes Oberhumer
14
+ Copyright (C) 1999 Markus Franz Xaver Johannes Oberhumer
15
+ Copyright (C) 1998 Markus Franz Xaver Johannes Oberhumer
16
+ Copyright (C) 1997 Markus Franz Xaver Johannes Oberhumer
17
+ Copyright (C) 1996 Markus Franz Xaver Johannes Oberhumer
18
+ All Rights Reserved.
19
+
20
+ The LZO library is free software; you can redistribute it and/or
21
+ modify it under the terms of the GNU General Public License as
22
+ published by the Free Software Foundation; either version 2 of
23
+ the License, or (at your option) any later version.
24
+
25
+ The LZO library is distributed in the hope that it will be useful,
26
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
27
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28
+ GNU General Public License for more details.
29
+
30
+ You should have received a copy of the GNU General Public License
31
+ along with the LZO library; see the file COPYING.
32
+ If not, write to the Free Software Foundation, Inc.,
33
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
34
+
35
+ Markus F.X.J. Oberhumer
36
+ <markus@oberhumer.com>
37
+ http://www.oberhumer.com/opensource/lzo/
38
+ */
39
+
40
+
41
+ /* WARNING: this file should *not* be used by applications. It is
42
+ part of the implementation of the LZO package and is subject
43
+ to change.
44
+ */
45
+
46
+
47
+ #ifndef __LZO_STATS1A_H
48
+ #define __LZO_STATS1A_H
49
+
50
+ #ifdef __cplusplus
51
+ extern "C" {
52
+ #endif
53
+
54
+
55
+
56
+ /***********************************************************************
57
+ // collect statistical information when compressing
58
+ // used for finetuning, view with a debugger
59
+ ************************************************************************/
60
+
61
+ #if defined(LZO_COLLECT_STATS)
62
+ # define LZO_STATS(expr) expr
63
+ #else
64
+ # define LZO_STATS(expr) ((void) 0)
65
+ #endif
66
+
67
+
68
+ /***********************************************************************
69
+ //
70
+ ************************************************************************/
71
+
72
+ typedef struct {
73
+
74
+ /* configuration */
75
+ unsigned rbits;
76
+ unsigned clevel;
77
+
78
+ /* internal configuration */
79
+ unsigned dbits;
80
+ unsigned lbits;
81
+
82
+ /* constants */
83
+ unsigned min_match_short;
84
+ unsigned max_match_short;
85
+ unsigned min_match_long;
86
+ unsigned max_match_long;
87
+ unsigned min_offset;
88
+ unsigned max_offset;
89
+ unsigned r0min;
90
+ unsigned r0fast;
91
+ unsigned r0max;
92
+
93
+ /* counts */
94
+ long short_matches;
95
+ long long_matches;
96
+ long r1_matches;
97
+ long lit_runs;
98
+ long lit_runs_after_long_match;
99
+ long r0short_runs;
100
+ long r0fast_runs;
101
+ long r0long_runs;
102
+
103
+ /* */
104
+ long lit_run[RSIZE];
105
+ long lit_run_after_long_match[RSIZE];
106
+ long short_match[MAX_MATCH_SHORT + 1];
107
+ long long_match[MAX_MATCH_LONG + 1];
108
+ long marker[256];
109
+
110
+ /* these could prove useful for further optimizations */
111
+ long short_match_offset_osize[MAX_MATCH_SHORT + 1];
112
+ long short_match_offset_256[MAX_MATCH_SHORT + 1];
113
+ long short_match_offset_1024[MAX_MATCH_SHORT + 1];
114
+ long matches_out_of_range;
115
+ long matches_out_of_range_2;
116
+ long matches_out_of_range_4;
117
+ long match_out_of_range[MAX_MATCH_SHORT + 1];
118
+
119
+ /* */
120
+ long in_len;
121
+ long out_len;
122
+ }
123
+ lzo1a_stats_t;
124
+
125
+ extern lzo1a_stats_t *lzo1a_stats;
126
+
127
+
128
+
129
+ #ifdef __cplusplus
130
+ } /* extern "C" */
131
+ #endif
132
+
133
+ #endif /* already included */
134
+
135
+ /*
136
+ vi:ts=4:et
137
+ */
data/ext/stats1b.h ADDED
@@ -0,0 +1,142 @@
1
+ /* stats1b.h -- statistics for the the LZO library
2
+
3
+ This file is part of the LZO real-time data compression library.
4
+
5
+ Copyright (C) 2008 Markus Franz Xaver Johannes Oberhumer
6
+ Copyright (C) 2007 Markus Franz Xaver Johannes Oberhumer
7
+ Copyright (C) 2006 Markus Franz Xaver Johannes Oberhumer
8
+ Copyright (C) 2005 Markus Franz Xaver Johannes Oberhumer
9
+ Copyright (C) 2004 Markus Franz Xaver Johannes Oberhumer
10
+ Copyright (C) 2003 Markus Franz Xaver Johannes Oberhumer
11
+ Copyright (C) 2002 Markus Franz Xaver Johannes Oberhumer
12
+ Copyright (C) 2001 Markus Franz Xaver Johannes Oberhumer
13
+ Copyright (C) 2000 Markus Franz Xaver Johannes Oberhumer
14
+ Copyright (C) 1999 Markus Franz Xaver Johannes Oberhumer
15
+ Copyright (C) 1998 Markus Franz Xaver Johannes Oberhumer
16
+ Copyright (C) 1997 Markus Franz Xaver Johannes Oberhumer
17
+ Copyright (C) 1996 Markus Franz Xaver Johannes Oberhumer
18
+ All Rights Reserved.
19
+
20
+ The LZO library is free software; you can redistribute it and/or
21
+ modify it under the terms of the GNU General Public License as
22
+ published by the Free Software Foundation; either version 2 of
23
+ the License, or (at your option) any later version.
24
+
25
+ The LZO library is distributed in the hope that it will be useful,
26
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
27
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28
+ GNU General Public License for more details.
29
+
30
+ You should have received a copy of the GNU General Public License
31
+ along with the LZO library; see the file COPYING.
32
+ If not, write to the Free Software Foundation, Inc.,
33
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
34
+
35
+ Markus F.X.J. Oberhumer
36
+ <markus@oberhumer.com>
37
+ http://www.oberhumer.com/opensource/lzo/
38
+ */
39
+
40
+
41
+ /* WARNING: this file should *not* be used by applications. It is
42
+ part of the implementation of the library and is subject
43
+ to change.
44
+ */
45
+
46
+
47
+ #ifndef __LZO_STATS1B_H
48
+ #define __LZO_STATS1B_H
49
+
50
+ #ifdef __cplusplus
51
+ extern "C" {
52
+ #endif
53
+
54
+
55
+ /***********************************************************************
56
+ // Collect statistical information when compressing.
57
+ // Useful for finetuning the compression algorithm.
58
+ // Examine the symbol 'lzo1b_stats' with a debugger.
59
+ ************************************************************************/
60
+
61
+ #if defined(LZO_COLLECT_STATS)
62
+ # define LZO_STATS(expr) expr
63
+ #else
64
+ # define LZO_STATS(expr) ((void) 0)
65
+ #endif
66
+
67
+
68
+ #if defined(LZO_COLLECT_STATS)
69
+
70
+ typedef struct
71
+ {
72
+ /* algorithm configuration */
73
+ unsigned r_bits;
74
+ unsigned m3o_bits;
75
+ unsigned dd_bits;
76
+ unsigned clevel;
77
+
78
+ /* internal configuration */
79
+ unsigned d_bits;
80
+ long min_lookahead;
81
+ long max_lookbehind;
82
+ const char *compress_id;
83
+
84
+ /* counts */
85
+ long lit_runs;
86
+ long r0short_runs;
87
+ long r0fast_runs;
88
+ long r0long_runs;
89
+ long m1_matches;
90
+ long m2_matches;
91
+ long m3_matches;
92
+ long m4_matches;
93
+ long r1_matches;
94
+
95
+ /* */
96
+ long lit_run[R0MIN];
97
+ long m2_match[M2_MAX_LEN + 1];
98
+ long m3_match[M3_MAX_LEN + 1];
99
+ #if (M3O_BITS < 8)
100
+ long lit_runs_after_m3_match;
101
+ long lit_run_after_m3_match[LZO_SIZE(8-M3O_BITS)];
102
+ #endif
103
+
104
+ /* */
105
+ long matches;
106
+ long match_bytes;
107
+ long literals;
108
+ long literal_overhead;
109
+ long literal_bytes;
110
+ double literal_overhead_percent;
111
+
112
+ /* */
113
+ long unused_dict_entries;
114
+ double unused_dict_entries_percent;
115
+
116
+ /* */
117
+ long in_len;
118
+ long out_len;
119
+ }
120
+ lzo1b_stats_t;
121
+
122
+
123
+ void _lzo1b_stats_init(lzo1b_stats_t *lzo_stats);
124
+ void _lzo1b_stats_calc(lzo1b_stats_t *lzo_stats);
125
+
126
+ extern lzo1b_stats_t * const lzo1b_stats;
127
+
128
+ #define lzo_stats_t lzo1b_stats_t
129
+ #define lzo_stats lzo1b_stats
130
+
131
+ #endif
132
+
133
+
134
+ #ifdef __cplusplus
135
+ } /* extern "C" */
136
+ #endif
137
+
138
+ #endif /* already included */
139
+
140
+ /*
141
+ vi:ts=4:et
142
+ */
data/ext/stats1c.h ADDED
@@ -0,0 +1,61 @@
1
+ /* stats1c.h -- statistics for the the LZO library
2
+
3
+ This file is part of the LZO real-time data compression library.
4
+
5
+ Copyright (C) 2008 Markus Franz Xaver Johannes Oberhumer
6
+ Copyright (C) 2007 Markus Franz Xaver Johannes Oberhumer
7
+ Copyright (C) 2006 Markus Franz Xaver Johannes Oberhumer
8
+ Copyright (C) 2005 Markus Franz Xaver Johannes Oberhumer
9
+ Copyright (C) 2004 Markus Franz Xaver Johannes Oberhumer
10
+ Copyright (C) 2003 Markus Franz Xaver Johannes Oberhumer
11
+ Copyright (C) 2002 Markus Franz Xaver Johannes Oberhumer
12
+ Copyright (C) 2001 Markus Franz Xaver Johannes Oberhumer
13
+ Copyright (C) 2000 Markus Franz Xaver Johannes Oberhumer
14
+ Copyright (C) 1999 Markus Franz Xaver Johannes Oberhumer
15
+ Copyright (C) 1998 Markus Franz Xaver Johannes Oberhumer
16
+ Copyright (C) 1997 Markus Franz Xaver Johannes Oberhumer
17
+ Copyright (C) 1996 Markus Franz Xaver Johannes Oberhumer
18
+ All Rights Reserved.
19
+
20
+ The LZO library is free software; you can redistribute it and/or
21
+ modify it under the terms of the GNU General Public License as
22
+ published by the Free Software Foundation; either version 2 of
23
+ the License, or (at your option) any later version.
24
+
25
+ The LZO library is distributed in the hope that it will be useful,
26
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
27
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28
+ GNU General Public License for more details.
29
+
30
+ You should have received a copy of the GNU General Public License
31
+ along with the LZO library; see the file COPYING.
32
+ If not, write to the Free Software Foundation, Inc.,
33
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
34
+
35
+ Markus F.X.J. Oberhumer
36
+ <markus@oberhumer.com>
37
+ http://www.oberhumer.com/opensource/lzo/
38
+ */
39
+
40
+
41
+ /* WARNING: this file should *not* be used by applications. It is
42
+ part of the implementation of the library and is subject
43
+ to change.
44
+ */
45
+
46
+
47
+ #ifndef __LZO_STATS1C_H
48
+ #define __LZO_STATS1C_H
49
+
50
+ #define lzo1b_stats_t lzo1c_stats_t
51
+ #define lzo1b_stats lzo1c_stats
52
+ #define _lzo1b_stats_init _lzo1c_stats_init
53
+ #define _lzo1b_stats_calc _lzo1c_stats_calc
54
+
55
+ #include "stats1b.h"
56
+
57
+ #endif /* already included */
58
+
59
+ /*
60
+ vi:ts=4:et
61
+ */
metadata ADDED
@@ -0,0 +1,180 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: lzoruby
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - winebarrel
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-08-02 00:00:00 +09:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description:
17
+ email: sgwr_dts@yahoo.co.jp
18
+ executables: []
19
+
20
+ extensions:
21
+ - ext/extconf.rb
22
+ extra_rdoc_files:
23
+ - README.txt
24
+ - LICENSE.txt
25
+ - ext/lzoruby.c
26
+ files:
27
+ - ext/compr1b.h
28
+ - ext/compr1c.h
29
+ - ext/config1.h
30
+ - ext/config1a.h
31
+ - ext/config1b.h
32
+ - ext/config1c.h
33
+ - ext/config1f.h
34
+ - ext/config1x.h
35
+ - ext/config1y.h
36
+ - ext/config1z.h
37
+ - ext/config2a.h
38
+ - ext/extconf.rb
39
+ - ext/lzo/lzo1.h
40
+ - ext/lzo/lzo1a.h
41
+ - ext/lzo/lzo1b.h
42
+ - ext/lzo/lzo1c.h
43
+ - ext/lzo/lzo1f.h
44
+ - ext/lzo/lzo1x.h
45
+ - ext/lzo/lzo1y.h
46
+ - ext/lzo/lzo1z.h
47
+ - ext/lzo/lzo2a.h
48
+ - ext/lzo/lzoconf.h
49
+ - ext/lzo/lzodefs.h
50
+ - ext/lzo/lzoutil.h
51
+ - ext/lzo/lzo_asm.h
52
+ - ext/lzo1.c
53
+ - ext/lzo1a.c
54
+ - ext/lzo1a_99.c
55
+ - ext/lzo1a_cm.ch
56
+ - ext/lzo1a_cr.ch
57
+ - ext/lzo1a_de.h
58
+ - ext/lzo1b_1.c
59
+ - ext/lzo1b_2.c
60
+ - ext/lzo1b_3.c
61
+ - ext/lzo1b_4.c
62
+ - ext/lzo1b_5.c
63
+ - ext/lzo1b_6.c
64
+ - ext/lzo1b_7.c
65
+ - ext/lzo1b_8.c
66
+ - ext/lzo1b_9.c
67
+ - ext/lzo1b_99.c
68
+ - ext/lzo1b_9x.c
69
+ - ext/lzo1b_c.ch
70
+ - ext/lzo1b_cc.c
71
+ - ext/lzo1b_cc.h
72
+ - ext/lzo1b_cm.ch
73
+ - ext/lzo1b_cr.ch
74
+ - ext/lzo1b_d.ch
75
+ - ext/lzo1b_d1.c
76
+ - ext/lzo1b_d2.c
77
+ - ext/lzo1b_de.h
78
+ - ext/lzo1b_r.ch
79
+ - ext/lzo1b_rr.c
80
+ - ext/lzo1b_sm.ch
81
+ - ext/lzo1b_tm.ch
82
+ - ext/lzo1b_xx.c
83
+ - ext/lzo1c_1.c
84
+ - ext/lzo1c_2.c
85
+ - ext/lzo1c_3.c
86
+ - ext/lzo1c_4.c
87
+ - ext/lzo1c_5.c
88
+ - ext/lzo1c_6.c
89
+ - ext/lzo1c_7.c
90
+ - ext/lzo1c_8.c
91
+ - ext/lzo1c_9.c
92
+ - ext/lzo1c_99.c
93
+ - ext/lzo1c_9x.c
94
+ - ext/lzo1c_cc.c
95
+ - ext/lzo1c_cc.h
96
+ - ext/lzo1c_d1.c
97
+ - ext/lzo1c_d2.c
98
+ - ext/lzo1c_rr.c
99
+ - ext/lzo1c_xx.c
100
+ - ext/lzo1f_1.c
101
+ - ext/lzo1f_9x.c
102
+ - ext/lzo1f_d.ch
103
+ - ext/lzo1f_d1.c
104
+ - ext/lzo1f_d2.c
105
+ - ext/lzo1x_1.c
106
+ - ext/lzo1x_1k.c
107
+ - ext/lzo1x_1l.c
108
+ - ext/lzo1x_1o.c
109
+ - ext/lzo1x_9x.c
110
+ - ext/lzo1x_c.ch
111
+ - ext/lzo1x_d.ch
112
+ - ext/lzo1x_d1.c
113
+ - ext/lzo1x_d2.c
114
+ - ext/lzo1x_d3.c
115
+ - ext/lzo1x_o.c
116
+ - ext/lzo1x_oo.ch
117
+ - ext/lzo1y_1.c
118
+ - ext/lzo1y_9x.c
119
+ - ext/lzo1y_d1.c
120
+ - ext/lzo1y_d2.c
121
+ - ext/lzo1y_d3.c
122
+ - ext/lzo1y_o.c
123
+ - ext/lzo1z_9x.c
124
+ - ext/lzo1z_d1.c
125
+ - ext/lzo1z_d2.c
126
+ - ext/lzo1z_d3.c
127
+ - ext/lzo1_99.c
128
+ - ext/lzo1_cm.ch
129
+ - ext/lzo1_d.ch
130
+ - ext/lzo2a_9x.c
131
+ - ext/lzo2a_d.ch
132
+ - ext/lzo2a_d1.c
133
+ - ext/lzo2a_d2.c
134
+ - ext/lzoruby.c
135
+ - ext/lzo_conf.h
136
+ - ext/lzo_crc.c
137
+ - ext/lzo_dict.h
138
+ - ext/lzo_dll.ch
139
+ - ext/lzo_init.c
140
+ - ext/lzo_mchw.ch
141
+ - ext/lzo_ptr.c
142
+ - ext/lzo_ptr.h
143
+ - ext/lzo_str.c
144
+ - ext/lzo_swd.ch
145
+ - ext/lzo_util.c
146
+ - ext/miniacc.h
147
+ - ext/stats1a.h
148
+ - ext/stats1b.h
149
+ - ext/stats1c.h
150
+ - README.txt
151
+ - LICENSE.txt
152
+ has_rdoc: true
153
+ homepage: http://lzoruby.rubyforge.org
154
+ post_install_message:
155
+ rdoc_options:
156
+ - --title
157
+ - LZO/Ruby - Ruby bindings for LZO.
158
+ require_paths:
159
+ - lib
160
+ required_ruby_version: !ruby/object:Gem::Requirement
161
+ requirements:
162
+ - - ">="
163
+ - !ruby/object:Gem::Version
164
+ version: "0"
165
+ version:
166
+ required_rubygems_version: !ruby/object:Gem::Requirement
167
+ requirements:
168
+ - - ">="
169
+ - !ruby/object:Gem::Version
170
+ version: "0"
171
+ version:
172
+ requirements: []
173
+
174
+ rubyforge_project: lzoruby
175
+ rubygems_version: 1.1.1
176
+ signing_key:
177
+ specification_version: 2
178
+ summary: Ruby bindings for LZO.
179
+ test_files: []
180
+