binyo 0.0.1 → 0.0.2.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- metadata +25 -29
- data/ext/binyo/extconf.h +0 -5
- data/lib/binyo.so +0 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 70f0cf5500f0376b6495eb9636e840c46f414d1c
|
4
|
+
data.tar.gz: da307a72054e46b7e99072f73d792844ab45c561
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 0bcbdcff777964ac5d3fd0e30ee4be8f8e44f00d026b4f164358108244178d21680ade54d487c0f603f8cee02dd30a5aebc4293726d0315a72dd700c4ffb0e03
|
7
|
+
data.tar.gz: b9a1f45be72e1ac02de56b8dcf29a18c4d6ce9f5abe0e80b668a10f6f391a64f0c03d5b4f68c253019fb8e79e65187088bb3079cf348cb773092b0c75a99b378
|
metadata
CHANGED
@@ -1,15 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: binyo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
5
|
-
prerelease:
|
4
|
+
version: 0.0.2.rc1
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Martin Bosslet
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2014-02-23 00:00:00.000000000 Z
|
13
12
|
dependencies: []
|
14
13
|
description: binyo offers a generic C API for dealing with Ruby IO objects and extension
|
15
14
|
classes that allow to deal effectively with binary data
|
@@ -20,58 +19,55 @@ extensions:
|
|
20
19
|
extra_rdoc_files: []
|
21
20
|
files:
|
22
21
|
- LICENSE
|
23
|
-
- ext/binyo/
|
24
|
-
- ext/binyo/
|
25
|
-
- ext/binyo/io_out_bytes.c
|
22
|
+
- ext/binyo/binyo-error-internal.h
|
23
|
+
- ext/binyo/binyo-error.h
|
26
24
|
- ext/binyo/binyo-io-buffer.h
|
25
|
+
- ext/binyo/binyo-io.h
|
26
|
+
- ext/binyo/binyo-mem.h
|
27
27
|
- ext/binyo/binyo-missing.h
|
28
28
|
- ext/binyo/binyo.c
|
29
29
|
- ext/binyo/binyo.h
|
30
|
-
- ext/binyo/
|
31
|
-
- ext/binyo/
|
32
|
-
- ext/binyo/
|
30
|
+
- ext/binyo/byte.c
|
31
|
+
- ext/binyo/byte.h
|
32
|
+
- ext/binyo/bytelist.c
|
33
|
+
- ext/binyo/bytelist.h
|
33
34
|
- ext/binyo/error.c
|
34
|
-
- ext/binyo/binyo-error.h
|
35
35
|
- ext/binyo/extconf.rb
|
36
|
-
- ext/binyo/binyo-io.h
|
37
|
-
- ext/binyo/io_in_seq.c
|
38
|
-
- ext/binyo/io_in_cache.c
|
39
|
-
- ext/binyo/bytelist.h
|
40
|
-
- ext/binyo/bytelist.c
|
41
|
-
- ext/binyo/io_out_generic.c
|
42
|
-
- ext/binyo/extconf.h
|
43
|
-
- ext/binyo/byte.c
|
44
|
-
- ext/binyo/binyo-error-internal.h
|
45
36
|
- ext/binyo/io.c
|
46
|
-
- ext/binyo/
|
37
|
+
- ext/binyo/io_buffer.c
|
47
38
|
- ext/binyo/io_in_bytes.c
|
39
|
+
- ext/binyo/io_in_cache.c
|
40
|
+
- ext/binyo/io_in_fd.c
|
41
|
+
- ext/binyo/io_in_generic.c
|
42
|
+
- ext/binyo/io_in_seq.c
|
43
|
+
- ext/binyo/io_out_bytes.c
|
44
|
+
- ext/binyo/io_out_fd.c
|
45
|
+
- ext/binyo/io_out_generic.c
|
48
46
|
- lib/binyo.rb
|
49
|
-
- lib/binyo.so
|
50
|
-
- test/scratch.rb
|
51
47
|
- test/hex.rb
|
48
|
+
- test/scratch.rb
|
52
49
|
homepage: https://github.com/krypt/binyo
|
53
50
|
licenses:
|
54
51
|
- MIT
|
52
|
+
metadata: {}
|
55
53
|
post_install_message:
|
56
54
|
rdoc_options: []
|
57
55
|
require_paths:
|
58
56
|
- lib
|
59
57
|
required_ruby_version: !ruby/object:Gem::Requirement
|
60
|
-
none: false
|
61
58
|
requirements:
|
62
|
-
- -
|
59
|
+
- - ">="
|
63
60
|
- !ruby/object:Gem::Version
|
64
61
|
version: 1.9.3
|
65
62
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
66
|
-
none: false
|
67
63
|
requirements:
|
68
|
-
- -
|
64
|
+
- - ">"
|
69
65
|
- !ruby/object:Gem::Version
|
70
|
-
version:
|
66
|
+
version: 1.3.1
|
71
67
|
requirements: []
|
72
68
|
rubyforge_project:
|
73
|
-
rubygems_version:
|
69
|
+
rubygems_version: 2.2.0
|
74
70
|
signing_key:
|
75
|
-
specification_version:
|
71
|
+
specification_version: 4
|
76
72
|
summary: Fast binary IO for Ruby
|
77
73
|
test_files: []
|
data/ext/binyo/extconf.h
DELETED
data/lib/binyo.so
DELETED
Binary file
|