depix 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/DPX_HEADER_STRUCTURE.txt +91 -94
- data/History.txt +5 -0
- data/Manifest.txt +3 -0
- data/README.txt +4 -6
- data/Rakefile +8 -4
- data/bin/depix-describe +15 -6
- data/lib/depix.rb +69 -100
- data/lib/depix/compact_structs.rb +42 -0
- data/lib/depix/dict.rb +343 -0
- data/lib/depix/enums.rb +43 -0
- data/lib/depix/struct_explainer.rb +37 -40
- data/lib/depix/structs.rb +112 -232
- data/test/test_depix.rb +23 -90
- data/test/test_dict.rb +650 -0
- metadata +6 -2
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: depix
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Julik Tarkhanov
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-12-
|
12
|
+
date: 2008-12-21 00:00:00 +01:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -44,6 +44,9 @@ files:
|
|
44
44
|
- lib/depix.rb
|
45
45
|
- lib/depix/struct_explainer.rb
|
46
46
|
- lib/depix/structs.rb
|
47
|
+
- lib/depix/compact_structs.rb
|
48
|
+
- lib/depix/enums.rb
|
49
|
+
- lib/depix/dict.rb
|
47
50
|
- test/test_depix.rb
|
48
51
|
- test/samples/E012_P001_L000002_lin.0001.dpx
|
49
52
|
- test/samples/E012_P001_L000002_lin.0002.dpx
|
@@ -78,3 +81,4 @@ specification_version: 2
|
|
78
81
|
summary: Read DPX file metadata
|
79
82
|
test_files:
|
80
83
|
- test/test_depix.rb
|
84
|
+
- test/test_dict.rb
|