bindata 1.8.3 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of bindata might be problematic. Click here for more details.

metadata CHANGED
@@ -1,113 +1,56 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: bindata
3
- version: !ruby/object:Gem::Version
4
- hash: 49
5
- prerelease:
6
- segments:
7
- - 1
8
- - 8
9
- - 3
10
- version: 1.8.3
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.0.0
11
5
  platform: ruby
12
- authors:
6
+ authors:
13
7
  - Dion Mendel
14
8
  autorequire:
15
9
  bindir: bin
16
10
  cert_chain: []
17
-
18
- date: 2014-04-16 00:00:00 +08:00
19
- default_executable:
20
- dependencies:
21
- - !ruby/object:Gem::Dependency
22
- requirement: &id001 !ruby/object:Gem::Requirement
23
- none: false
24
- requirements:
25
- - - ">="
26
- - !ruby/object:Gem::Version
27
- hash: 3
28
- segments:
29
- - 0
30
- version: "0"
11
+ date: 2014-02-02 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
31
14
  name: rake
32
- version_requirements: *id001
33
- prerelease: false
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '>='
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
34
20
  type: :development
35
- - !ruby/object:Gem::Dependency
36
- requirement: &id002 !ruby/object:Gem::Requirement
37
- none: false
38
- requirements:
39
- - - ">"
40
- - !ruby/object:Gem::Version
41
- hash: 55
42
- segments:
43
- - 5
44
- - 0
45
- - 0
46
- version: 5.0.0
47
- name: minitest
48
- version_requirements: *id002
49
- prerelease: false
50
- type: :development
51
- - !ruby/object:Gem::Dependency
52
- requirement: &id003 !ruby/object:Gem::Requirement
53
- none: false
54
- requirements:
55
- - - <
56
- - !ruby/object:Gem::Version
57
- hash: 63
58
- segments:
59
- - 4
60
- - 0
61
- - 0
62
- version: 4.0.0
63
- name: haml
64
- version_requirements: *id003
65
- prerelease: false
66
- type: :development
67
- - !ruby/object:Gem::Dependency
68
- requirement: &id004 !ruby/object:Gem::Requirement
69
- none: false
70
- requirements:
71
- - - ">="
72
- - !ruby/object:Gem::Version
73
- hash: 3
74
- segments:
75
- - 0
76
- version: "0"
77
- name: maruku
78
- version_requirements: *id004
79
21
  prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '>='
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: minitest
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>'
32
+ - !ruby/object:Gem::Version
33
+ version: 5.0.0
80
34
  type: :development
81
- - !ruby/object:Gem::Dependency
82
- requirement: &id005 !ruby/object:Gem::Requirement
83
- none: false
84
- requirements:
85
- - - ">="
86
- - !ruby/object:Gem::Version
87
- hash: 3
88
- segments:
89
- - 0
90
- version: "0"
91
- name: syntax
92
- version_requirements: *id005
93
35
  prerelease: false
94
- type: :development
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>'
39
+ - !ruby/object:Gem::Version
40
+ version: 5.0.0
95
41
  description: |
96
42
  BinData is a declarative way to read and write binary file formats.
97
-
43
+
98
44
  This means the programmer specifies *what* the format of the binary
99
45
  data is, and BinData works out *how* to read and write data in this
100
46
  format. It is an easier ( and more readable ) alternative to
101
47
  ruby's #pack and #unpack methods.
102
-
103
48
  email: dion@lostrealm.com
104
49
  executables: []
105
-
106
50
  extensions: []
107
-
108
- extra_rdoc_files:
51
+ extra_rdoc_files:
109
52
  - NEWS.rdoc
110
- files:
53
+ files:
111
54
  - .gitignore
112
55
  - .travis.yml
113
56
  - BSDL
@@ -119,8 +62,6 @@ files:
119
62
  - README.md
120
63
  - Rakefile
121
64
  - bindata.gemspec
122
- - doc/manual.haml
123
- - doc/manual.md
124
65
  - examples/NBT.txt
125
66
  - examples/gzip.rb
126
67
  - examples/ip_address.rb
@@ -158,8 +99,6 @@ files:
158
99
  - lib/bindata/trace.rb
159
100
  - lib/bindata/version.rb
160
101
  - lib/bindata/virtual.rb
161
- - setup.rb
162
- - tasks/manual.rake
163
102
  - test/alignment_test.rb
164
103
  - test/array_test.rb
165
104
  - test/base_primitive_test.rb
@@ -186,40 +125,30 @@ files:
186
125
  - test/struct_test.rb
187
126
  - test/system_test.rb
188
127
  - test/virtual_test.rb
189
- has_rdoc: true
190
128
  homepage: http://github.com/dmendel/bindata
191
- licenses:
129
+ licenses:
192
130
  - Ruby
131
+ metadata: {}
193
132
  post_install_message:
194
- rdoc_options:
133
+ rdoc_options:
195
134
  - --main
196
135
  - NEWS.rdoc
197
- require_paths:
136
+ require_paths:
198
137
  - lib
199
- required_ruby_version: !ruby/object:Gem::Requirement
200
- none: false
201
- requirements:
202
- - - ">="
203
- - !ruby/object:Gem::Version
204
- hash: 3
205
- segments:
206
- - 0
207
- version: "0"
208
- required_rubygems_version: !ruby/object:Gem::Requirement
209
- none: false
210
- requirements:
211
- - - ">="
212
- - !ruby/object:Gem::Version
213
- hash: 3
214
- segments:
215
- - 0
216
- version: "0"
138
+ required_ruby_version: !ruby/object:Gem::Requirement
139
+ requirements:
140
+ - - '>='
141
+ - !ruby/object:Gem::Version
142
+ version: '0'
143
+ required_rubygems_version: !ruby/object:Gem::Requirement
144
+ requirements:
145
+ - - '>='
146
+ - !ruby/object:Gem::Version
147
+ version: '0'
217
148
  requirements: []
218
-
219
149
  rubyforge_project: bindata
220
- rubygems_version: 1.6.2
150
+ rubygems_version: 2.0.14
221
151
  signing_key:
222
- specification_version: 3
152
+ specification_version: 4
223
153
  summary: A declarative way to read and write binary file formats
224
154
  test_files: []
225
-
@@ -1,407 +0,0 @@
1
- !!!
2
- %html{ :xmlns => "http://www.w3.org/1999/xhtml", "xml:lang" => "en", :lang => "en" }
3
- %head
4
- %meta{ :content => "text/html; charset=utf-8", "http-equiv" => "Content-Type" }
5
- %meta{ :name => "description", :content =>"How to easily read and write binary data in Ruby" }
6
- %meta{ :keywords =>"ruby, binary, binary data, parse binary data, read binary data, write binary data, binary file, read binary file, write binary file" }
7
- %title
8
- Reading, writing and parsing binary data in Ruby
9
- :javascript
10
- var TINY={};function T$(i){return document.getElementById(i)}function T$$(e,p){return p.getElementsByTagName(e)}TINY.accordion=function(){function slider(n){this.n=n;this.a=[]}slider.prototype.init=function(t,e,m,o,k){var a=T$(t),i=s=0,n=a.childNodes,l=n.length;this.s=k||0;this.m=m||0;for(i;i<l;i++){var v=n[i];if(v.nodeType!=3){this.a[s]={};this.a[s].h=h=T$$(e,v)[0];this.a[s].c=c=T$$('div',v)[0];h.onclick=new Function(this.n+'.pr(0,'+s+')');if(o==s){h.className=this.s;c.style.height='auto';c.d=1}else{c.style.height=0;c.d=-1}s++}}this.l=s};slider.prototype.pr=function(f,d){for(var i=0;i<this.l;i++){var h=this.a[i].h,c=this.a[i].c,k=c.style.height;k=k=='auto'?1:parseInt(k);clearInterval(c.t);if((k!=1&&c.d==-1)&&(f==1||i==d)){c.style.height='';c.m=c.offsetHeight;c.style.height=k+'px';c.d=1;h.className=this.s;su(c,1)}else if(k>0&&(f==-1||this.m||i==d)){c.d=-1;h.className='';su(c,-1)}}};function su(c){c.t=setInterval(function(){sl(c)},20)};function sl(c){var h=c.offsetHeight,d=c.d==1?c.m-h:h;c.style.height=h+(Math.ceil(d/5)*c.d)+'px';c.style.opacity=h/c.m;c.style.filter='alpha(opacity='+h*100/c.m+')';if((c.d==1&&h>=c.m)||(c.d!=1&&h==1)){if(c.d==1){c.style.height='auto'}clearInterval(c.t)}};return{slider:slider}}();
11
-
12
- var menu1, menu2, menu3, menu4, menu5, menu6, menu7;
13
- var menu8, menu9, menu10, menu11, menu12, menu13, menu14, menu15;
14
-
15
- function init_accordion() {
16
- menu1 = new TINY.accordion.slider("menu1"); menu1.init("menu1","a",1,-1);
17
- menu2 = new TINY.accordion.slider("menu2"); menu2.init("menu2","a",1,-1);
18
- menu3 = new TINY.accordion.slider("menu3"); menu3.init("menu3","a",1,-1);
19
- menu4 = new TINY.accordion.slider("menu4"); menu4.init("menu4","a",1,-1);
20
- menu5 = new TINY.accordion.slider("menu5"); menu5.init("menu5","a",1,-1);
21
- menu6 = new TINY.accordion.slider("menu6"); menu6.init("menu6","a",1,-1);
22
- menu7 = new TINY.accordion.slider("menu7"); menu7.init("menu7","a",1,-1);
23
- menu8 = new TINY.accordion.slider("menu8"); menu8.init("menu8","a",1,-1);
24
- menu9 = new TINY.accordion.slider("menu9"); menu9.init("menu9","a",1,-1);
25
- menu10 = new TINY.accordion.slider("menu10"); menu10.init("menu10","a",1,-1);
26
- menu11 = new TINY.accordion.slider("menu11"); menu11.init("menu11","a",1,-1);
27
- menu12 = new TINY.accordion.slider("menu12"); menu12.init("menu12","a",1,-1);
28
- menu13 = new TINY.accordion.slider("menu13"); menu13.init("menu13","a",1,-1);
29
- menu14 = new TINY.accordion.slider("menu14"); menu14.init("menu14","a",1,-1);
30
- menu15 = new TINY.accordion.slider("menu15"); menu15.init("menu15","a",1,-1);
31
- };
32
- window.onload = init_accordion;
33
-
34
- %style{:type => "text/css", :media => "screen"}
35
- :plain
36
- body {
37
- margin:0; padding:0; border:0;
38
- height:100%; max-height:100%;
39
- overflow:hidden;
40
- background-color:#FFF;
41
- }
42
-
43
- #left_frame {
44
- position:absolute; overflow:hidden;
45
- top:0; bottom:0; left:0;
46
- width:240px; height:100%;
47
- }
48
-
49
- #main_frame {
50
- position:fixed; overflow:auto;
51
- top:0; right:0; bottom:0; left:240px;
52
- }
53
-
54
- * html body { /*IE6 hack*/
55
- padding: 0 0 0 240px;
56
- }
57
- * html #main_frame { /*IE6 hack*/
58
- height: 100%; width: 100%;
59
- }
60
-
61
- .menu_top_level {margin:5px;}
62
- .menu_top_level ul {list-style:none; margin:0; padding:0;}
63
- .menu_top_level li {margin-top:5px;}
64
- .menu_top_level .acc-section {overflow:hidden;}
65
- .menu_top_level .acc-content {width:100%; margin:0; padding:0; background:#FFF}
66
-
67
- .menu_top_level li a {
68
- display:block; cursor:pointer; text-decoration: none;
69
- border:1px solid #9BC;
70
- padding: 0;
71
- font:bold 12px/2 Verdana, Arial, Helvetica;
72
- }
73
- .menu_top_level li a:link, .menu_top_level li a:visited { color: #131; background:#FFE;}
74
- .menu_top_level li a:hover {background: #9C9; color:#FFE;}
75
-
76
- .menu_top_level .level1 li a { padding-left: 15px; }
77
- .menu_top_level .level2 li a { padding-left: 30px; }
78
- .menu_top_level .level3 li a { padding-left: 45px; }
79
-
80
- #main_content {
81
- margin: 20px; padding-left: 3em;
82
- width: 40em;
83
- font-family: Georgia, Times;
84
- }
85
-
86
- #main_content h1 { margin-left: -1em;}
87
- #main_content h2 { margin-left: -1em;}
88
-
89
- #main_content pre {
90
- margin-left: 2em; padding: 4px;
91
- background-color: #EFF;
92
- border: solid 1px #BDD;
93
- }
94
-
95
- #main_content .ruby .normal {}
96
- #main_content .ruby .comment { color: #005; font-style: italic; }
97
- #main_content .ruby .keyword { color: #A00; font-weight: bold; }
98
- #main_content .ruby .method { color: #077; }
99
- #main_content .ruby .class { color: #074; }
100
- #main_content .ruby .module { color: #050; }
101
- #main_content .ruby .punct { color: #447; font-weight: bold; }
102
- #main_content .ruby .symbol { color: #099; }
103
- #main_content .ruby .string { color: #944; background: #FFE; }
104
- #main_content .ruby .char { color: #F07; }
105
- #main_content .ruby .ident { color: #004; }
106
- #main_content .ruby .constant { color: #07F; }
107
- #main_content .ruby .regex { color: #B66; background: #FEF; }
108
- #main_content .ruby .number { color: #F99; }
109
- #main_content .ruby .attribute { color: #7BB; }
110
- #main_content .ruby .global { color: #7FB; }
111
- #main_content .ruby .expr { color: #227; }
112
- #main_content .ruby .escape { color: #277; }
113
- %script{:type => "text/javascript"}
114
- :plain
115
- var _gaq = _gaq || [];
116
- _gaq.push(['_setAccount', 'UA-20958115-1']);
117
- _gaq.push(['_trackPageview']);
118
-
119
- (function() {
120
- var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
121
- ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
122
- var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
123
- })();
124
-
125
- %body
126
- #left_frame
127
- .menu_top_level
128
- %ul.level1#menu1
129
- %li
130
- %a{ :href => "#bindata" }
131
- BinData
132
- .acc-section
133
- .acc-content
134
- %ul.level2#menu2
135
- %li
136
- %a{ :href => "#what_is_it_for" }
137
- What is it for?
138
- .acc-section
139
- .acc-content
140
- %li
141
- %a{ :href => "#license" }
142
- License
143
- .acc-section
144
- .acc-content
145
- %li
146
- %a{ :href => "#donate" }
147
- Donate
148
- .acc-section
149
- .acc-content
150
- %li
151
- %a{ :href => "#installation" }
152
- Installation
153
- .acc-section
154
- .acc-content
155
- %li
156
- %a{ :href => "#overview" }
157
- Overview
158
- .acc-section
159
- .acc-content
160
- %li
161
- %a{ :href => "#records" }
162
- Records
163
- .acc-section
164
- .acc-content
165
- %ul.level2#menu3
166
- %li
167
- %a{ :href => "#specifying_default_endian" }
168
- Specifying default endian
169
- .acc-section
170
- .acc-content
171
- %li
172
- %a{ :href => "#dependencies_between_fields" }
173
- Dependencies between fields
174
- .acc-section
175
- .acc-content
176
- %li
177
- %a{ :href => "#nested_records" }
178
- Nested Records
179
- .acc-section
180
- .acc-content
181
- %li
182
- %a{ :href => "#optional_fields" }
183
- Optional fields
184
- .acc-section
185
- .acc-content
186
- %li
187
- %a{ :href => "#primitive_types" }
188
- Primitive Types
189
- .acc-section
190
- .acc-content
191
- %ul.level2#menu4
192
- %li
193
- %a{ :href => "#numerics" }
194
- Numerics
195
- .acc-section
196
- .acc-content
197
- %ul.level3#menu5
198
- %li
199
- %a{ :href => "#byte_based_integers" }
200
- Byte based integers
201
- .acc-section
202
- .acc-content
203
- %li
204
- %a{ :href => "#bit_based_integers" }
205
- Bit based integers
206
- .acc-section
207
- .acc-content
208
- %li
209
- %a{ :href => "#floating_point_numbers" }
210
- Floating point numbers
211
- .acc-section
212
- .acc-content
213
- %li
214
- %a{ :href => "#example" }
215
- Example
216
- .acc-section
217
- .acc-content
218
- %li
219
- %a{ :href => "#strings" }
220
- Strings
221
- .acc-section
222
- .acc-content
223
- %ul.level3#menu6
224
- %li
225
- %a{ :href => "#fixed_sized_strings" }
226
- Fixed Sized Strings
227
- .acc-section
228
- .acc-content
229
- %li
230
- %a{ :href => "#zero_terminated_strings" }
231
- Zero Terminated Strings
232
- .acc-section
233
- .acc-content
234
- %li
235
- %a{ :href => "#user_defined_primitive_types" }
236
- User-defined Primitive Types
237
- .acc-section
238
- .acc-content
239
- %ul.level3#menu7
240
- %li
241
- %a{ :href => "#advanced_user_defined_primitive_types" }
242
- Advanced Example
243
- .acc-section
244
- .acc-content
245
- %li
246
- %a{ :href => "#compound_types" }
247
- Compound Types
248
- .acc-section
249
- .acc-content
250
- %ul.level2#menu8
251
- %li
252
- %a{ :href => "#arrays" }
253
- Arrays
254
- .acc-section
255
- .acc-content
256
- %ul.level3#menu9
257
- %li
258
- %a{ :href => "#array_syntax" }
259
- Array syntax
260
- .acc-section
261
- .acc-content
262
- %li
263
- %a{ :href => "#array_parameters" }
264
- Array parameters
265
- .acc-section
266
- .acc-content
267
- %li
268
- %a{ :href => "#choices" }
269
- Choices
270
- .acc-section
271
- .acc-content
272
- %ul.level3#menu10
273
- %li
274
- %a{ :href => "#choice_syntax" }
275
- Choice syntax
276
- .acc-section
277
- .acc-content
278
- %li
279
- %a{ :href => "#choice_parameters" }
280
- Choice parameters
281
- .acc-section
282
- .acc-content
283
- %li
284
- %a{ :href => "#default_selection" }
285
- Default Selection
286
- .acc-section
287
- .acc-content
288
- %li
289
- %a{ :href => "#common_operations" }
290
- Common Operations
291
- .acc-section
292
- .acc-content
293
- %ul.level2#menu11
294
- %li
295
- %a{ :href => "#reading_and_writing" }
296
- Reading and writing
297
- .acc-section
298
- .acc-content
299
- %li
300
- %a{ :href => "#manipulating" }
301
- Manipulating
302
- .acc-section
303
- .acc-content
304
- %li
305
- %a{ :href => "#inspecting" }
306
- Inspecting
307
- .acc-section
308
- .acc-content
309
- %li
310
- %a{ :href => "#advanced_topics" }
311
- Advanced Topics
312
- .acc-section
313
- .acc-content
314
- %ul.level2#menu12
315
- %li
316
- %a{ :href => "#debugging" }
317
- Debugging
318
- .acc-section
319
- .acc-content
320
- %ul.level3#menu13
321
- %li
322
- %a{ :href => "#tracing" }
323
- Tracing
324
- .acc-section
325
- .acc-content
326
- %li
327
- %a{ :href => "#rest" }
328
- Rest
329
- .acc-section
330
- .acc-content
331
- %li
332
- %a{ :href => "#hidden_fields" }
333
- Hidden fields
334
- .acc-section
335
- .acc-content
336
- %li
337
- %a{ :href => "#parameterizing_user_defined_types" }
338
- Parameterizing Types
339
- .acc-section
340
- .acc-content
341
- %ul.level3#menu14
342
- %li
343
- %a{ :href => "#mandatory_parameters" }
344
- Mandatory Parameters
345
- .acc-section
346
- .acc-content
347
- %li
348
- %a{ :href => "#default_parameters" }
349
- Default Parameters
350
- .acc-section
351
- .acc-content
352
- %li
353
- %a{ :href => "#extending_existing_types" }
354
- Extending existing Types
355
- .acc-section
356
- .acc-content
357
- %li
358
- %a{ :href => "#dynamically_creating_types" }
359
- Dynamically creating Types
360
- .acc-section
361
- .acc-content
362
- %li
363
- %a{ :href => "#skipping_over_unused_data" }
364
- Skipping over unused data
365
- .acc-section
366
- .acc-content
367
- %li
368
- %a{ :href => "#determining_stream_length" }
369
- Determining stream length
370
- .acc-section
371
- .acc-content
372
- %li
373
- %a{ :href => "#advanced_bitfields" }
374
- Advanced Bitfields
375
- .acc-section
376
- .acc-content
377
- %li
378
- %a{ :href => "#faq" }
379
- FAQ
380
- .acc-section
381
- .acc-content
382
- %ul.level2#menu15
383
- %li
384
- %a{ :href => "#im_using_ruby_19_how_do_i_use_string_encodings_with_bindata" }
385
- String encoding - Ruby 1.9
386
- .acc-section
387
- .acc-content
388
- %li
389
- %a{ :href => "#how_do_i_speed_up_initialization" }
390
- Performance
391
- .acc-section
392
- .acc-content
393
- %li
394
- %a{ :href => "#how_do_i_model_this_complex_nested_format" }
395
- Recursive declarations
396
- .acc-section
397
- .acc-content
398
- %li
399
- %a{ :href => "#alternatives" }
400
- Alternatives
401
- .acc-section
402
- .acc-content
403
- #main_frame
404
- #main_content
405
- :maruku
406
- #{File.read("doc/manual.md")}
407
-