flight-router 0.1.18 → 0.1.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b86e18aaaaa69e156885a4eb729fbf6798f06640
4
- data.tar.gz: 8d3fb44d80cc5c075b96cc8540df766ceb4446ce
3
+ metadata.gz: 7b862902588b99e6c35c41d6bd84e3883385817f
4
+ data.tar.gz: 3da6997652c6ae0048ece47640eb1047d1c77d40
5
5
  SHA512:
6
- metadata.gz: f7dd59bd990f4dfe0e4213c06110ae94ae8c6330146a5386fbefef088216a4e8cbc1b7228126c93e5b99b06d088dc4e9f0b521a9b35bf67352ed211f3c70433b
7
- data.tar.gz: 8ae0375a8f93e31a74c49dca0eaa23269af4c55037e50fadb7be8b7ec598deb68597f5526d34dffda4afab8f1868a8548f83dd04dc93255ab8977dc54feb5213
6
+ metadata.gz: e22c3566595725beeeb5bbaf70e9dc329b4aa882df68387f35ccf780f61fa8370e0e5459cfad10b4356c026aabda43d0d092aa3077e2ed95d20b4375032e8651
7
+ data.tar.gz: 8e2b74b5d900c00ce0990a82f820c94002db69a37fcc4a5d7529d35fb6f36dcc6741edbada3ccb3bbb391078ed3d7ef3f8f4e52428b38b3bf0680b585fbb16b5
@@ -0,0 +1,5 @@
1
+ # Changelog : 0.1.19
2
+
3
+ ## commits
4
+
5
+ * fix require_cols
@@ -24,11 +24,11 @@ module Flight::Router
24
24
  command "password-hash" do |kind:,**opts|
25
25
  opts.merge(kind: kind, salt: kind)
26
26
  end
27
- command "sign" do |auth:|
28
- {key: map[:auth][auth][:key]}
27
+ command "sign" do |auth:,**opts|
28
+ opts.merge(key: map[:auth][auth][:key])
29
29
  end
30
- command "renew" do |auth:,verify:|
31
- {key: map[:auth][auth][:key], verify: map[:auth][verify][:verify]}
30
+ command "renew" do |auth:,verify:,**opts|
31
+ opts.merge(key: map[:auth][auth][:key], verify: map[:auth][verify][:verify])
32
32
  end
33
33
  end
34
34
  end
@@ -1,5 +1,5 @@
1
1
  module Flight
2
2
  module Router
3
- VERSION = "0.1.18"
3
+ VERSION = "0.1.19"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flight-router
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.18
4
+ version: 0.1.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - shun@getto.systems
@@ -86,6 +86,7 @@ files:
86
86
  - CHANGELOG/0.1.16.md
87
87
  - CHANGELOG/0.1.17.md
88
88
  - CHANGELOG/0.1.18.md
89
+ - CHANGELOG/0.1.19.md
89
90
  - CHANGELOG/0.1.2.md
90
91
  - CHANGELOG/0.1.3.md
91
92
  - CHANGELOG/0.1.4.md