bin_struct 0.5.1 → 0.5.2
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 +4 -4
- data/CHANGELOG.md +10 -0
- data/lib/bin_struct/abstract_tlv.rb +1 -1
- data/lib/bin_struct/array.rb +1 -1
- data/lib/bin_struct/bit_attr.rb +1 -1
- data/lib/bin_struct/cstring.rb +1 -1
- data/lib/bin_struct/enum.rb +1 -1
- data/lib/bin_struct/int.rb +1 -1
- data/lib/bin_struct/int_string.rb +1 -1
- data/lib/bin_struct/length_from.rb +1 -1
- data/lib/bin_struct/oui.rb +1 -1
- data/lib/bin_struct/string.rb +1 -1
- data/lib/bin_struct/struct.rb +1 -1
- data/lib/bin_struct/structable.rb +1 -1
- data/lib/bin_struct/version.rb +2 -2
- data/lib/bin_struct.rb +1 -1
- metadata +7 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 18e365efdb982166cda39456fd9b1afb6c9a241aae1ed64df6a3121c0f67cee2
|
4
|
+
data.tar.gz: bb98e9835da23a370375d5879e6210015dbae8d9a0cf1676aee22fac2ab804fb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 01f96e0383d3f826f6746f8a191f32edde871470015da56dcdc0a3871aaeee357a66b846ae27f4c1a8ad35aa82207333d96e12bba00a02bbc0c5a3f52cc73f5a
|
7
|
+
data.tar.gz: 8d5a49b7702dae5b8e23617f11c03157c20eefc07857a156ee4c93df8e7429dcbb3ebbd6684230dd42e9b4ab149b3964a5e9933cda4bf4c5a1c95036346a460b
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,16 @@
|
|
3
3
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
4
4
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
5
5
|
|
6
|
+
## 0.5.2 - 2025-08-14
|
7
|
+
|
8
|
+
### Fixed
|
9
|
+
|
10
|
+
- Add Copyright header in all source files.
|
11
|
+
|
12
|
+
### Changed
|
13
|
+
|
14
|
+
- Project has moved to codeberg.org. Bye bye Github!
|
15
|
+
|
6
16
|
## 0.5.1 - 2025-04-21
|
7
17
|
|
8
18
|
### Fixed
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
# This file is part of BinStruct
|
4
|
-
# See https://
|
4
|
+
# See https://codeberg.org/lemontree55/bin_struct for more informations
|
5
5
|
# Copyright (C) 2016 Sylvain Daubert <sylvain.daubert@laposte.net>
|
6
6
|
# Copyright (C) 2024 LemonTree55 <lenontree@proton.me>
|
7
7
|
# This program is published under MIT license.
|
data/lib/bin_struct/array.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
# This file is part of BinStruct
|
4
|
-
# see https://
|
4
|
+
# see https://codeberg.org/lemontree55/bin_struct for more informations
|
5
5
|
# Copyright (C) 2016 Sylvain Daubert <sylvain.daubert@laposte.net>
|
6
6
|
# Copyright (C) 2024 LemonTree55 <lenontree@proton.me>
|
7
7
|
# This program is published under MIT license.
|
data/lib/bin_struct/bit_attr.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
# This file is part of BinStruct
|
4
|
-
# see https://
|
4
|
+
# see https://codeberg.org/lemontree55/bin_struct for more informations
|
5
5
|
# Copyright (C) 2024 LemonTree55 <lenontree@proton.me>
|
6
6
|
# This program is published under MIT license.
|
7
7
|
require 'digest'
|
data/lib/bin_struct/cstring.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
# This file is part of BinStruct
|
4
|
-
# see https://
|
4
|
+
# see https://codeberg.org/lemontree55/bin_struct for more informations
|
5
5
|
# Copyright (C) 2016 Sylvain Daubert <sylvain.daubert@laposte.net>
|
6
6
|
# Copyright (C) 2024 LemonTree55 <lenontree@proton.me>
|
7
7
|
# This program is published under MIT license.
|
data/lib/bin_struct/enum.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
# This file is part of BinStruct
|
4
|
-
# see https://
|
4
|
+
# see https://codeberg.org/lemontree55/bin_struct for more informations
|
5
5
|
# Copyright (C) 2016 Sylvain Daubert <sylvain.daubert@laposte.net>
|
6
6
|
# Copyright (C) 2024 LemonTree55 <lenontree@proton.me>
|
7
7
|
# This program is published under MIT license.
|
data/lib/bin_struct/int.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
# This file is part of BinStruct
|
4
|
-
# See https://
|
4
|
+
# See https://codeberg.org/lemontree55/bin_struct for more informations
|
5
5
|
# Copyright (C) 2016 Sylvain Daubert <sylvain.daubert@laposte.net>
|
6
6
|
# Copyright (C) 2024 LemonTree55 <lenontree@proton.me>
|
7
7
|
# This program is published under MIT license.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
# This file is part of BinStruct
|
4
|
-
# see https://
|
4
|
+
# see https://codeberg.org/lemontree55/bin_struct for more informations
|
5
5
|
# Copyright (C) 2016 Sylvain Daubert <sylvain.daubert@laposte.net>
|
6
6
|
# Copyright (C) 2024 LemonTree55 <lenontree@proton.me>
|
7
7
|
# This program is published under MIT license.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
# This file is part of BinStruct
|
4
|
-
# see https://
|
4
|
+
# see https://codeberg.org/lemontree55/bin_struct for more informations
|
5
5
|
# Copyright (C) 2016 Sylvain Daubert <sylvain.daubert@laposte.net>
|
6
6
|
# Copyright (C) 2024 LemonTree55 <lenontree@proton.me>
|
7
7
|
# This program is published under MIT license.
|
data/lib/bin_struct/oui.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
# This file is part of BinStruct
|
4
|
-
# see https://
|
4
|
+
# see https://codeberg.org/lemontree55/bin_struct for more informations
|
5
5
|
# Copyright (C) 2016 Sylvain Daubert <sylvain.daubert@laposte.net>
|
6
6
|
# Copyright (C) 2024 LemonTree55 <lenontree@proton.me>
|
7
7
|
# This program is published under MIT license.
|
data/lib/bin_struct/string.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
# This file is part of BinStruct
|
4
|
-
# see https://
|
4
|
+
# see https://codeberg.org/lemontree55/bin_struct for more informations
|
5
5
|
# Copyright (C) 2016 Sylvain Daubert <sylvain.daubert@laposte.net>
|
6
6
|
# Copyright (C) 2024 LemonTree55 <lenontree@proton.me>
|
7
7
|
# This program is published under MIT license.
|
data/lib/bin_struct/struct.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
# This file is part of BinStruct
|
4
|
-
# see https://
|
4
|
+
# see https://codeberg.org/lemontree55/bin_struct for more informations
|
5
5
|
# Copyright (C) 2016 Sylvain Daubert <sylvain.daubert@laposte.net>
|
6
6
|
# Copyright (C) 2024 LemonTree55 <lenontree@proton.me>
|
7
7
|
# This program is published under MIT license.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
# This file is part of BinStruct
|
4
|
-
# see https://
|
4
|
+
# see https://codeberg.org/lemontree55/bin_struct for more informations
|
5
5
|
# Copyright (C) 2016 Sylvain Daubert <sylvain.daubert@laposte.net>
|
6
6
|
# Copyright (C) 2024 LemonTree55 <lenontree@proton.me>
|
7
7
|
# This program is published under MIT license.
|
data/lib/bin_struct/version.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
# This file is part of BinStruct
|
4
|
-
# see https://
|
4
|
+
# see https://codeberg.org/lemontree55/bin_struct for more informations
|
5
5
|
# Copyright (C) 2016 Sylvain Daubert <sylvain.daubert@laposte.net>
|
6
6
|
# Copyright (C) 2024 LemonTree55 <lenontree@proton.me>
|
7
7
|
# This program is published under MIT license.
|
8
8
|
|
9
9
|
module BinStruct
|
10
10
|
# BinStruct version
|
11
|
-
VERSION = '0.5.
|
11
|
+
VERSION = '0.5.2'
|
12
12
|
end
|
data/lib/bin_struct.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
# This file is part of BinStruct
|
4
|
-
# see https://
|
4
|
+
# see https://codeberg.org/lemontree55/bin_struct for more informations
|
5
5
|
# Copyright (C) 2016 Sylvain Daubert <sylvain.daubert@laposte.net>
|
6
6
|
# Copyright (C) 2024 LemonTree55 <lenontree@proton.me>
|
7
7
|
# This program is published under MIT license.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bin_struct
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- LemonTree55
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-08-14 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: 'BinStruct is a binary dissector and generator. It eases manipulating
|
14
14
|
complex binary data.
|
@@ -37,13 +37,14 @@ files:
|
|
37
37
|
- lib/bin_struct/struct.rb
|
38
38
|
- lib/bin_struct/structable.rb
|
39
39
|
- lib/bin_struct/version.rb
|
40
|
-
homepage: https://
|
40
|
+
homepage: https://codeberg.org/lemontree55/bin_struct
|
41
41
|
licenses:
|
42
42
|
- MIT
|
43
43
|
metadata:
|
44
|
-
homepage_uri: https://
|
45
|
-
source_code_uri: https://
|
46
|
-
bug_tracker_uri: https://
|
44
|
+
homepage_uri: https://codeberg.org/lemontree55/bin_struct
|
45
|
+
source_code_uri: https://codeberg.org/lemontree55/bin_struct
|
46
|
+
bug_tracker_uri: https://codeberg.org/lemontree55/bin_struct/issues
|
47
|
+
rubygems_mfa_required: 'true'
|
47
48
|
post_install_message:
|
48
49
|
rdoc_options:
|
49
50
|
- "--title"
|