xfcc_parser_ruby 0.1.1-x86_64-linux → 0.1.2-x86_64-linux

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: 0027ba6ff4b83a3dd45d43e69341d13036aeb077bc2f22f9ed854a69bf068741
4
- data.tar.gz: 47f1fa07c75eb059a02a430915d3396a603e01ebe4ae726d4b710dd06651b6ff
3
+ metadata.gz: 3d9db4785f0ec6823a6c562b6e81d197ce5dbeab193bbb7578d06220d14a4946
4
+ data.tar.gz: 1b147fdfacc1368b39d5732673e84078dcc4b9fc6f4e3d2a422ffbca39d5e97e
5
5
  SHA512:
6
- metadata.gz: 45582f14f07ac69ccf6804ce49e8684b679f753659ffe3f00fdd19e471c2bae6cd38db320aca20fbf653359f7161ed3dc30ccc1430de99d9015f88431f3aff6e
7
- data.tar.gz: 5fbd57d5c5290809b97048b62244b7a3a92a328b9f38a5625ec4c7de4188c1adef8bc73753d494e32e27faac2a7b72a367a021cb9eb58964fadf5b99dcfe5039
6
+ metadata.gz: 3345ccbb7911c3e7de0c17d63017124bd9c10c01a551013ba7e4f61d11c8c6ec435ad724879a5360762bd0161a76419a37571924770e73cefe2f1468441495be
7
+ data.tar.gz: 70385f45e3a32f7fa79798bca9228888ecf83647fc51d8f188897ca0e90e94592a5c9595e7c23165823d25195ef439bdaa93e567aed630596cb7b33cf8f3fd8c
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ <a name="v0.1.2"></a>
2
+ ## v0.1.2 (2023-03-30)
3
+
4
+
5
+
6
+
1
7
  <a name="v0.1.1"></a>
2
8
  ## v0.1.1 (2023-03-28)
3
9
 
data/Cargo.lock CHANGED
@@ -127,7 +127,7 @@ dependencies = [
127
127
 
128
128
  [[package]]
129
129
  name = "xfcc_parser_ruby"
130
- version = "0.1.1"
130
+ version = "0.1.2"
131
131
  dependencies = [
132
132
  "rutie",
133
133
  "xfcc-parser",
data/Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "xfcc_parser_ruby"
3
- version = "0.1.1"
3
+ version = "0.1.2"
4
4
  authors = ["Frederick Zhang <frederick888@tsundere.moe>"]
5
5
  edition = "2021"
6
6
  description = "Envoy x-forwarded-client-cert (XFCC) parser written in Rust for Ruby"
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- xfcc_parser_ruby (0.1.1-x86_64-linux)
4
+ xfcc_parser_ruby (0.1.2-x86_64-linux)
5
5
  rutie (~> 0.0.3)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -16,7 +16,7 @@ If bundler is not being used to manage dependencies, install the gem by executin
16
16
 
17
17
  Note that some distributions have different names for `libruby`, and if you've installed the gems with bundled binaries, you'll see errors like `libruby.so.3.0: cannot open shared object file: No such file or directory` when you load the library.
18
18
 
19
- In this case, you can either link the `libruby` shared library to `libruby.[so|dylib|dll].[<version>]`, so simply install the source gem instead.
19
+ In this case, you can either link the `libruby` shared library to `libruby.[so|dylib|dll].[<version>]`, or simply install the source gem instead.
20
20
 
21
21
  ## Usage
22
22
 
Binary file
Binary file
Binary file
Binary file
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module XfccParserRuby
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.2"
5
5
  end
@@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
16
16
  spec.homepage = "https://github.com/Frederick888/xfcc_parser_ruby/"
17
17
  spec.required_ruby_version = [">= 2.6.0", "< 3.2.0"]
18
18
  spec.required_rubygems_version = ">= 3.3.11"
19
- spec.platform = Gem::Platform.local if binary_gem
19
+ spec.platform = Gem::Platform.local.tap { |p| p.version = nil } if binary_gem
20
20
 
21
21
  # spec.metadata['allowed_push_host'] = "TODO: Set to your gem server 'https://example.com'"
22
22
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xfcc_parser_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - Frederick Zhang
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-03-28 00:00:00.000000000 Z
11
+ date: 2023-03-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rutie