xfcc_parser_ruby 0.1.0-x86_64-darwin-19 → 0.1.1-x86_64-darwin-19

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: 98fcb8a1eaf6f9681443f1fe52670f071423293dd518742dd2d01936b6015429
4
- data.tar.gz: 06f4593f553a2b3edcf861bb94efadad1a0566b7f3c0fc4f6103874b0a9d93c1
3
+ metadata.gz: fc9d8b8ca1035406f9f9c8615d007804c78b721a8f597c873f723294a298484e
4
+ data.tar.gz: 50665b9973d31d038a9c3418d55b321277fa5174e679671f41b683b4574996c7
5
5
  SHA512:
6
- metadata.gz: 8fcec6a427b9f845e7ccced624c48231f047b107c2151deebb3939235cdd474ec96a7ac30e8cd4def0abb9089bdf2c418cc3b24b6af788a01a125d4a2707c6e0
7
- data.tar.gz: f741e85b9f6e105901f8d252da30d95b1a99827938d65a3500b88f4e52aed584af9e464ceba31763b33623df45317081350069373ef364e4aaef4ed2931d5267
6
+ metadata.gz: 809955db291ff8d9af363539d9033b1dee20b244d473b46ab00b9401a632eb59a73d90e14b1cb844a54b1e393f69cd4521c8a7284cac38afab0583f4ca54f6f3
7
+ data.tar.gz: b1941de01a83095034b1212cb64d6f5535b556f0e0abcbcd8e4537e602c017829dc4b977db50963751793aece6898237a865478838885fbd45b62da985c0260b
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ <a name="v0.1.1"></a>
2
+ ## v0.1.1 (2023-03-28)
3
+
4
+
5
+
6
+
1
7
  <a name="v0.1.0"></a>
2
8
  ## v0.1.0 (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.0"
130
+ version = "0.1.1"
131
131
  dependencies = [
132
132
  "rutie",
133
133
  "xfcc-parser",
data/Cargo.toml CHANGED
@@ -1,7 +1,13 @@
1
1
  [package]
2
2
  name = "xfcc_parser_ruby"
3
- version = "0.1.0"
3
+ version = "0.1.1"
4
+ authors = ["Frederick Zhang <frederick888@tsundere.moe>"]
4
5
  edition = "2021"
6
+ description = "Envoy x-forwarded-client-cert (XFCC) parser written in Rust for Ruby"
7
+ repository = "https://github.com/Frederick888/xfcc_parser_ruby/"
8
+ license = "BSD-3-Clause"
9
+ keywords = ["envoy", "xfcc", "http"]
10
+ categories = ["parser-implementations", "web-programming"]
5
11
 
6
12
  [dependencies]
7
13
  rutie = "0.8.4"
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- xfcc_parser_ruby (0.1.0-x86_64-darwin-19)
4
+ xfcc_parser_ruby (0.1.1-x86_64-darwin-19)
5
5
  rutie (~> 0.0.3)
6
6
 
7
7
  GEM
data/Justfile CHANGED
@@ -26,10 +26,10 @@ release version:
26
26
  sed 's/^version = ".*"$/version = "{{version}}"/' -i ./Cargo.toml
27
27
  git add ./Cargo.toml
28
28
  # ruby
29
- sed 's/^VERSION = ".*"$/VERSION = "{{version}}"/' -i ./lib/xfcc_parser_ruby/version.rb
29
+ sed 's/VERSION = ".*"$/VERSION = "{{version}}"/' -i ./lib/xfcc_parser_ruby/version.rb
30
30
  # update lock files and test
31
31
  just
32
- git add ./Cargo.lock ./Gemfile.lock
32
+ git add ./Cargo.lock ./Gemfile.lock ./lib/xfcc_parser_ruby/version.rb
33
33
  # commit and tag
34
34
  git status
35
35
  git diff --exit-code
data/README.md CHANGED
@@ -4,15 +4,15 @@ Wrapper of Envoy [`x-forwarded-client-cert`][1] (XFCC) header parser [`xfcc-pars
4
4
 
5
5
  ## Installation
6
6
 
7
- TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
7
+ First download the [Rust][3] toolchain >= 1.56.0 if you would like to install the source gem.
8
8
 
9
- Install the gem and add to the application's Gemfile by executing:
9
+ Then install the gem and add to the application's Gemfile by executing:
10
10
 
11
- $ bundle add UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
11
+ $ bundle add xfcc_parser_ruby
12
12
 
13
13
  If bundler is not being used to manage dependencies, install the gem by executing:
14
14
 
15
- $ gem install UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
15
+ $ gem install xfcc_parser_ruby
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
 
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.0"
4
+ VERSION = "0.1.1"
5
5
  end
@@ -9,6 +9,7 @@ Gem::Specification.new do |spec|
9
9
  spec.version = XfccParserRuby::VERSION
10
10
  spec.authors = ["Frederick Zhang"]
11
11
  spec.email = ["frederick888@tsundere.moe"]
12
+ spec.license = "BSD-3-Clause"
12
13
 
13
14
  spec.summary = "Envoy x-forwarded-client-cert (XFCC) parser"
14
15
  spec.description = "Envoy x-forwarded-client-cert (XFCC) parser written in Rust for Ruby"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xfcc_parser_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: x86_64-darwin-19
6
6
  authors:
7
7
  - Frederick Zhang
@@ -137,7 +137,8 @@ files:
137
137
  - src/lib.rs
138
138
  - xfcc_parser_ruby.gemspec
139
139
  homepage: https://github.com/Frederick888/xfcc_parser_ruby/
140
- licenses: []
140
+ licenses:
141
+ - BSD-3-Clause
141
142
  metadata:
142
143
  homepage_uri: https://github.com/Frederick888/xfcc_parser_ruby/
143
144
  source_code_uri: https://github.com/Frederick888/xfcc_parser_ruby/