vault_coh 6.2.2 → 6.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Cargo.lock +2 -2
- data/Gemfile.lock +2 -2
- data/README.md +2 -2
- data/lib/vault_coh/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8a17205d94c7d67560d646c3c02a030353207725b4c422d5777013cdf4cf712f
|
4
|
+
data.tar.gz: 732443dbf1ffce307dfda988040fbf466525aebbaabbd32d170ea5ace2ed386f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 551a49f24dc6275d696a0613f473469b8bb09b78d18564936d1033c91c33b48f6916c6b0e172c1a4bd2db254388cf30d438214a3fdc5a20b297d1ea79858cdae
|
7
|
+
data.tar.gz: 122a26acd21e80c9e78367e944ccb39d06308811e729d4f1425556bfc7362fa2287b7dc9f6655a064effb94c30c23d1bc09650baa8b94868f58311c841813bdd
|
data/Cargo.lock
CHANGED
@@ -377,9 +377,9 @@ dependencies = [
|
|
377
377
|
|
378
378
|
[[package]]
|
379
379
|
name = "vault"
|
380
|
-
version = "10.1.
|
380
|
+
version = "10.1.3"
|
381
381
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
382
|
-
checksum = "
|
382
|
+
checksum = "f34ca93cbdd9ad52e7f7b11bb42d0e2b19355591b6018cc573461cfdfc74b8c9"
|
383
383
|
dependencies = [
|
384
384
|
"byteorder",
|
385
385
|
"magnus",
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
vault_coh (6.2.
|
4
|
+
vault_coh (6.2.3)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
@@ -51,7 +51,7 @@ GEM
|
|
51
51
|
rubocop-rspec (3.0.5)
|
52
52
|
rubocop (~> 1.61)
|
53
53
|
ruby-progressbar (1.13.0)
|
54
|
-
unicode-display_width (2.
|
54
|
+
unicode-display_width (2.6.0)
|
55
55
|
|
56
56
|
PLATFORMS
|
57
57
|
arm64-darwin-21
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Vault
|
2
2
|
|
3
|
-
[![Gem Version](https://badge.fury.io/rb/vault_coh.svg)](https://badge.fury.io/rb/vault_coh) [![Documentation](https://img.shields.io/badge/View-Documentation-blue.svg)](https://rubydoc.info/github/ryantaylor/vault-rb/v6.2.
|
3
|
+
[![Gem Version](https://badge.fury.io/rb/vault_coh.svg)](https://badge.fury.io/rb/vault_coh) [![Documentation](https://img.shields.io/badge/View-Documentation-blue.svg)](https://rubydoc.info/github/ryantaylor/vault-rb/v6.2.3)
|
4
4
|
|
5
5
|
A native Ruby client wrapper for the [vault](https://github.com/ryantaylor/vault) Company of Heroes replay parser, integrated via a Rust native extension.
|
6
6
|
|
@@ -24,7 +24,7 @@ bytes = File.read('/path/to/replay.rec').unpack('C*')
|
|
24
24
|
replay = VaultCoh::Replay.from_bytes(bytes)
|
25
25
|
puts replay.version
|
26
26
|
```
|
27
|
-
All information available from parsing can be found in the [documentation](https://rubydoc.info/github/ryantaylor/vault-rb/v6.2.
|
27
|
+
All information available from parsing can be found in the [documentation](https://rubydoc.info/github/ryantaylor/vault-rb/v6.2.3).
|
28
28
|
|
29
29
|
## Contributing
|
30
30
|
|
data/lib/vault_coh/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vault_coh
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.2.
|
4
|
+
version: 6.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ryantaylor
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-09-
|
11
|
+
date: 2024-09-16 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Company of Heroes replay parsing in Ruby using the vault parsing library
|
14
14
|
via a Rust native extension.
|