kaitai-struct 0.9 → 0.11

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3eb5375d9ddf8772844c25d3319de5be17eaafc71d5da835191e5e61ee84fec7
4
- data.tar.gz: 82d10de0ba0c3bb004286df6a38febe40fb9b3223a7e24a6386c6ca854386b7e
3
+ metadata.gz: dd4bb9d0b8c7befee55e055dd8eb8aba8e13f08074600f3ed2a49e1b32f11ebc
4
+ data.tar.gz: 24fe1b2e85d6682c71afb4fd80824634b9113453e3fb80736c12c8051c09c5d9
5
5
  SHA512:
6
- metadata.gz: db13f61f4b06680cb5b1e2b156fd466aa1c80a3a1e2c0ddad9a181ecdd4e66c9099c70de4cb05e25d6279ea007263db7e591d2ae0672fdba5431b93aa2b1e955
7
- data.tar.gz: 3688b04940d1b4e8fa06cc3434b5ddc441387f6a62af5811cfc66cbfbf444565393000022df3b8ea997e6034968ff3a8067d258cc5e000969880986ea37a2197
6
+ metadata.gz: 9f88733d357dbe3962c34437bf775cfd0d9a4c3f48dbc9c88be7a08606c9d4ec8a2adfb8e61804b61bb28ff10cb5cd1178f7ef0397edf0d6d2703e1846ce2afe
7
+ data.tar.gz: 53e735516abfafc05f0218b93cabfeece0978a3d41aec1afb04c21d89dc76085cb83ecfd5b13bc0d41fe2d8dfec67a4c7acb96e283c62e0fa0b27cded490b48b
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-2025 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](https://kaitai.io/)
15
+ * [About API implemented in this library](https://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.