kaitai-struct 0.9 → 0.10

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3eb5375d9ddf8772844c25d3319de5be17eaafc71d5da835191e5e61ee84fec7
4
- data.tar.gz: 82d10de0ba0c3bb004286df6a38febe40fb9b3223a7e24a6386c6ca854386b7e
3
+ metadata.gz: cbdd2b873476556b609d64f78e10c3ef35ea5ede048ac5ee57a03a24f523bfac
4
+ data.tar.gz: db41f46711b11efcf12a982e282181ae20d25831f408b7a3e7e668791f14701b
5
5
  SHA512:
6
- metadata.gz: db13f61f4b06680cb5b1e2b156fd466aa1c80a3a1e2c0ddad9a181ecdd4e66c9099c70de4cb05e25d6279ea007263db7e591d2ae0672fdba5431b93aa2b1e955
7
- data.tar.gz: 3688b04940d1b4e8fa06cc3434b5ddc441387f6a62af5811cfc66cbfbf444565393000022df3b8ea997e6034968ff3a8067d258cc5e000969880986ea37a2197
6
+ metadata.gz: ea4b2780d4efa7c645175957059073f6506ee5e39d2525b62f7a5de41816d0115dde2980948ab47e8994b1a7fc97cb94e8fab7692882244fc7d9b58b18b3e8b3
7
+ data.tar.gz: 99cec16629be56c07b1df24f4a091fbffdd6240341dc0130ef6a5d04195a91c37d6238c4991ba3782667514cf25ae7746aa2fdd3aa307c34352c0dd0698ea4c9
data/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2015-2019 Kaitai Project
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2015-2022 Kaitai Project
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md CHANGED
@@ -1,41 +1,44 @@
1
- # Kaitai Struct: runtime library for Ruby
2
-
3
- This library implements Kaitai Struct API for Ruby.
4
-
5
- Kaitai Struct is a declarative language used for describe various binary
6
- data structures, laid out in files or in memory: i.e. binary file
7
- formats, network stream packet formats, etc.
8
-
9
- Further reading:
10
-
11
- * [About Kaitai Struct](http://kaitai.io/)
12
- * [About API implemented in this library](http://doc.kaitai.io/stream_api.html)
13
-
14
- ## Installing
15
-
16
- ### Using `Gemfile`
17
-
18
- If your project uses Bundler, just include the line
19
-
20
- ```
21
- gem 'kaitai-struct'
22
- ```
23
-
24
- in your project's `Gemfile`.
25
-
26
- ### Using `gem install`
27
-
28
- If you have a RubyGems package manager installed, you can use command
29
-
30
- ```
31
- gem install kaitai-struct
32
- ```
33
-
34
- to install this runtime library.
35
-
36
- ### Manually
37
-
38
- This library is intentionally kept as very simple, one-file `.rb`
39
- file. One can just copy it to your project from this
40
- repository. Usually you won't `require` it directly, it will be loaded
41
- by Ruby source code generate by Kaitai Struct compiler.
1
+ # Kaitai Struct: runtime library for Ruby
2
+
3
+ [![Gem version](https://img.shields.io/gem/v/kaitai-struct)](https://rubygems.org/gems/kaitai-struct/)
4
+ [![Gem downloads](https://img.shields.io/gem/dt/kaitai-struct)](https://rubygems.org/gems/kaitai-struct/#:~:text=TOTAL%20DOWNLOADS)
5
+
6
+ This library implements Kaitai Struct API for Ruby.
7
+
8
+ Kaitai Struct is a declarative language used for describe various binary
9
+ data structures, laid out in files or in memory: i.e. binary file
10
+ formats, network stream packet formats, etc.
11
+
12
+ Further reading:
13
+
14
+ * [About Kaitai Struct](http://kaitai.io/)
15
+ * [About API implemented in this library](http://doc.kaitai.io/stream_api.html)
16
+
17
+ ## Installing
18
+
19
+ ### Using `Gemfile`
20
+
21
+ If your project uses Bundler, just include the line
22
+
23
+ ```
24
+ gem 'kaitai-struct'
25
+ ```
26
+
27
+ in your project's `Gemfile`.
28
+
29
+ ### Using `gem install`
30
+
31
+ If you have a RubyGems package manager installed, you can use command
32
+
33
+ ```
34
+ gem install kaitai-struct
35
+ ```
36
+
37
+ to install this runtime library.
38
+
39
+ ### Manually
40
+
41
+ This library is intentionally kept as very simple, one `.rb` file.
42
+ You can just copy it to your project from [this repository](https://github.com/kaitai-io/kaitai_struct_ruby_runtime).
43
+ Usually you won't `require` it directly, it will be loaded
44
+ by Ruby source code generated by Kaitai Struct compiler.