extzstd 0.0.1.CONCEPT
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +24 -0
- data/README.md +47 -0
- data/Rakefile +147 -0
- data/contrib/zstd/LICENSE +26 -0
- data/contrib/zstd/Makefile +114 -0
- data/contrib/zstd/fse.c +1521 -0
- data/contrib/zstd/fse.h +380 -0
- data/contrib/zstd/fse_static.h +108 -0
- data/contrib/zstd/libzstd.pc.in +14 -0
- data/contrib/zstd/zstd.c +1801 -0
- data/contrib/zstd/zstd.h +102 -0
- data/contrib/zstd/zstd_static.h +80 -0
- data/ext/extconf.rb +17 -0
- data/ext/extzstd-stream.c +219 -0
- data/ext/extzstd.c +134 -0
- data/ext/extzstd.h +52 -0
- data/gemstub.rb +19 -0
- data/lib/extzstd/version.rb +5 -0
- data/lib/extzstd.rb +12 -0
- metadata +85 -0
metadata
ADDED
@@ -0,0 +1,85 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: extzstd
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1.CONCEPT
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- dearblue
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-03-26 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rake
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '10.0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '10.0'
|
27
|
+
description: |
|
28
|
+
ruby bindings for Zstandard (zstd) <https://github.com/Cyan4973/zstd>.
|
29
|
+
email: dearblue@users.sourceforge.jp
|
30
|
+
executables: []
|
31
|
+
extensions:
|
32
|
+
- ext/extconf.rb
|
33
|
+
extra_rdoc_files:
|
34
|
+
- LICENSE
|
35
|
+
- README.md
|
36
|
+
- ext/extzstd-stream.c
|
37
|
+
- ext/extzstd.c
|
38
|
+
- ext/extzstd.h
|
39
|
+
- lib/extzstd.rb
|
40
|
+
- lib/extzstd/version.rb
|
41
|
+
files:
|
42
|
+
- LICENSE
|
43
|
+
- README.md
|
44
|
+
- Rakefile
|
45
|
+
- contrib/zstd/LICENSE
|
46
|
+
- contrib/zstd/Makefile
|
47
|
+
- contrib/zstd/fse.c
|
48
|
+
- contrib/zstd/fse.h
|
49
|
+
- contrib/zstd/fse_static.h
|
50
|
+
- contrib/zstd/libzstd.pc.in
|
51
|
+
- contrib/zstd/zstd.c
|
52
|
+
- contrib/zstd/zstd.h
|
53
|
+
- contrib/zstd/zstd_static.h
|
54
|
+
- ext/extconf.rb
|
55
|
+
- ext/extzstd-stream.c
|
56
|
+
- ext/extzstd.c
|
57
|
+
- ext/extzstd.h
|
58
|
+
- gemstub.rb
|
59
|
+
- lib/extzstd.rb
|
60
|
+
- lib/extzstd/version.rb
|
61
|
+
homepage: http://sourceforge.jp/projects/rutsubo/
|
62
|
+
licenses:
|
63
|
+
- 2-clause BSD License
|
64
|
+
metadata: {}
|
65
|
+
post_install_message:
|
66
|
+
rdoc_options: []
|
67
|
+
require_paths:
|
68
|
+
- lib
|
69
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
70
|
+
requirements:
|
71
|
+
- - ">="
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
version: '2.0'
|
74
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
75
|
+
requirements:
|
76
|
+
- - ">"
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: 1.3.1
|
79
|
+
requirements: []
|
80
|
+
rubyforge_project:
|
81
|
+
rubygems_version: 2.4.6
|
82
|
+
signing_key:
|
83
|
+
specification_version: 4
|
84
|
+
summary: ruby bindings for Zstandard (zstd)
|
85
|
+
test_files: []
|