bitstream 0.0.1

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.
metadata ADDED
@@ -0,0 +1,85 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bitstream
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Natsuki Kawai
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2011-12-28 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: random-accessible
16
+ requirement: &80676780 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: 0.2.0
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: *80676780
25
+ description: ! 'BitStream is a mixin to write data structures of bit streams such
26
+ as picture, music, movie files, and e.t.c.. You can refer contents of bit streams
27
+ even when you are defining the data structures. With the function, you can write
28
+ a data structure easily that the header contains the data length of the body field.
29
+
30
+ '
31
+ email: natsuki.kawai@gmail.com
32
+ executables: []
33
+ extensions: []
34
+ extra_rdoc_files:
35
+ - README.en
36
+ files:
37
+ - lib/bitstream.rb
38
+ - lib/types/integer.rb
39
+ - lib/types/cstring.rb
40
+ - lib/types/string.rb
41
+ - lib/types/string-utils.rb
42
+ - lib/types/character.rb
43
+ - test/test-dynarray.rb
44
+ - test/test-simple-properties.rb
45
+ - test/test-suite.rb
46
+ - test/test-primitives.rb
47
+ - test/test-condition.rb
48
+ - test/test-array.rb
49
+ - test/test-nesting.rb
50
+ - test/types/test-character.rb
51
+ - test/types/test-string.rb
52
+ - test/types/test-integer.rb
53
+ - test/types/test-cstring.rb
54
+ - sample/gzip-viewer.rb
55
+ - sample/tar-viewer.rb
56
+ - sample/gzip.rb
57
+ - README.en
58
+ homepage: https://github.com/natsuki14/bitstream
59
+ licenses:
60
+ - Ruby's
61
+ - 2-clause BSDL
62
+ post_install_message:
63
+ rdoc_options: []
64
+ require_paths:
65
+ - lib
66
+ required_ruby_version: !ruby/object:Gem::Requirement
67
+ none: false
68
+ requirements:
69
+ - - ! '>='
70
+ - !ruby/object:Gem::Version
71
+ version: 1.9.1
72
+ required_rubygems_version: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ requirements: []
79
+ rubyforge_project:
80
+ rubygems_version: 1.8.12
81
+ signing_key:
82
+ specification_version: 3
83
+ summary: A bitstream parser supports dynamic-defined fields
84
+ test_files:
85
+ - test/test-suite.rb