binyo 0.0.1 → 0.0.2.rc1

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.
Files changed (4) hide show
  1. checksums.yaml +7 -0
  2. metadata +25 -29
  3. data/ext/binyo/extconf.h +0 -5
  4. data/lib/binyo.so +0 -0
@@ -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.1
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: 2013-02-27 00:00:00.000000000 Z
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/io_out_fd.c
24
- - ext/binyo/byte.h
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/io_in_fd.c
31
- - ext/binyo/io_in_generic.c
32
- - ext/binyo/io_buffer.c
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/binyo-mem.h
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: '0'
66
+ version: 1.3.1
71
67
  requirements: []
72
68
  rubyforge_project:
73
- rubygems_version: 1.8.23
69
+ rubygems_version: 2.2.0
74
70
  signing_key:
75
- specification_version: 3
71
+ specification_version: 4
76
72
  summary: Fast binary IO for Ruby
77
73
  test_files: []
@@ -1,5 +0,0 @@
1
- #ifndef EXTCONF_H
2
- #define EXTCONF_H
3
- #define HAVE_RUBY_IO_H 1
4
- #define HAVE_RB_IO_CHECK_BYTE_READABLE 1
5
- #endif
Binary file