vault_coh 6.2.0 → 6.2.2

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: 44c6a84b707d7776593802a20d2f8544d05792b5d64bc0d21dde79c0a8ae8375
4
- data.tar.gz: 4ad2e8a4e6ef5f51de5edebcf4fdd0a03685b994586172d8e39ee4f13afc3329
3
+ metadata.gz: 347598b0346b0a2837eaa112ca42d3043a943f6e23ee1da7d6a68693fbda449e
4
+ data.tar.gz: 697727092e7be28c9ae65a1a851b8addf93a37427965647a25f464dc49da4b2e
5
5
  SHA512:
6
- metadata.gz: 4287800ef946caf2aab3a73a403a4629d7c6e28f75e5aa28e456e849a0190dc84b6243e9bab18a4f080c71dd230d65efeac37ee1d3a3b6d42112d927ca8899fb
7
- data.tar.gz: 592b0a11bc30fdcbd6be7316193ebfccba8a34ea5e12d1b1ba510471becf2e3226330454e72e410570a68b3253b1f05d5a2f9c69e6f68ece5e8b1d26c5f49210
6
+ metadata.gz: 4533a74be5fac5aeb0d219fd8ac248e4564f66d29cde65be202382e6bcb05da3a0db5e73d4c86a996bd5fec7ee0ba1f906d0dae0e17f5c9832970a3eb7eecbfd
7
+ data.tar.gz: 0115d4df319aba82bb1e15f5f991209ec5d7fc1cdf98b71c783e5d98d52712c1f7b0113e8f33919a612d6408a00e4d33ad5ce12e485a984fdc715dbfd1ad8c91
data/Cargo.lock CHANGED
@@ -377,9 +377,9 @@ dependencies = [
377
377
 
378
378
  [[package]]
379
379
  name = "vault"
380
- version = "10.1.0"
380
+ version = "10.1.2"
381
381
  source = "registry+https://github.com/rust-lang/crates.io-index"
382
- checksum = "d74ed53a53f51c4e4efb47d9cf128738b8775a28ab06ff7dc272f93d9a421e84"
382
+ checksum = "ff80a9f2aed07c44a27883b8853899e245e84ce06a1b076e46dbec70ccd2c3da"
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.0)
4
+ vault_coh (6.2.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
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.0)
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.2)
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.0).
27
+ All information available from parsing can be found in the [documentation](https://rubydoc.info/github/ryantaylor/vault-rb/v6.2.2).
28
28
 
29
29
  ## Contributing
30
30
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module VaultCoh
4
- VERSION = '6.2.0'
4
+ VERSION = '6.2.2'
5
5
  end
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.0
4
+ version: 6.2.2
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 00:00:00.000000000 Z
11
+ date: 2024-09-13 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.