vault_coh 6.2.3 → 6.2.4
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 +1 -1
- data/README.md +2 -2
- data/lib/vault_coh/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 04ec637eafa9efc73ea3bb1682e23fba592b554643b726722becae95b1657724
|
4
|
+
data.tar.gz: 0b2e02428ecbdc7ad0dbf4a3d770820b0932ea286729c613da304686ff831c0e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b10ab979808b83602859a231d23d79dcef2fb4330f689c5d03b10d8d0bfd5d91418715f32d7ea884d40f26a0269d85decd1df5553249112d2e62ad2ef2d3a31a
|
7
|
+
data.tar.gz: 1b170216999c98f5aa751fb3125f5e4c3e4565d1d3c3ddcffda784de102c33d5083d15b0f2e97759c1607da111eb807bf49938c7dd231258b2bbb6a3e669758e
|
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.4"
|
381
381
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
382
|
-
checksum = "
|
382
|
+
checksum = "b171e70209f0ef47c6bd335852c0861d576455b96b964b12561e7b7418364ac7"
|
383
383
|
dependencies = [
|
384
384
|
"byteorder",
|
385
385
|
"magnus",
|
data/Gemfile.lock
CHANGED
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.4)
|
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.4).
|
28
28
|
|
29
29
|
## Contributing
|
30
30
|
|
data/lib/vault_coh/version.rb
CHANGED