smaak 0.0.9 → 0.0.10

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +8 -0
  3. data/lib/smaak/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 12e1cb11d8ac0cb1bd10c7c2e790b119d89f7f78
4
- data.tar.gz: f4c4ca1fe20a2091c4f2f751c43471bc827a1e96
3
+ metadata.gz: a06ce9d26d15fda320f1c294b584a16c8cd1006d
4
+ data.tar.gz: 9b04495475ec21d1ff6f33625f30978cc1e823b0
5
5
  SHA512:
6
- metadata.gz: 2ba087f5050e285ef0c4022ba4125490e36a18858235b0077cff55c48c0cc58c3d79a929a41b7f1159220a809946667ea3227df24e158334f7dfabcf5e66a143
7
- data.tar.gz: cfd736dccbfb714961c3588304a8a12396444ae40eb081f8a710e8a11111182a3842886b3b32bea45e3de94f735cced8bf1eaec519ab8fa0e8c1f5cf45830264
6
+ metadata.gz: 165f5d90ce01a893cb9c7cf8464edebe13c3ffdb420efaed98ccc96c410fb1380b572988ec130f91749853b6136d0448fada87f196295a0fc487ae8b3b147d5d
7
+ data.tar.gz: f50c7a2da3b77aab667bcca1081b6eae07392cea03a36050f9a119f3edd964859b3298267c9a172eb200abd9c0ea9a2fa0a8440a5e79963c90ae621630c2eeb1
data/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  This gems caters for both client and server sides of a signed message interaction over HTTP or HTTPS implementing the RFC2617 Digest Access Authentication. The following compromises are protected against as specified: Man in the middle (header and payload signature- see 'Extending') / snooping (HTTPS turned on), Replay (nonce + expires), Forgery (signature), Masquerading (recipient pub key check), Clear-text password compromise (MD5 pre-shared key)
4
4
 
5
+ This gem is sponsored by Hetzner (Pty) Ltd - http://hetzner.co.za
6
+
5
7
  ## Installation
6
8
 
7
9
  Add this line to your application's Gemfile:
@@ -64,6 +66,12 @@ Inject your certs and pre-shared keys from the environment, or configuration fil
64
66
 
65
67
  ## Contributing
66
68
 
69
+ Please send feedback and comments to the author at:
70
+
71
+ Ernst van Graan <ernst.van.graan@hetzner.co.za>
72
+
73
+ Thanks to Sheldon Hearn for review and great ideas that unblocked complex challenges (https://rubygems.org/profiles/sheldonh).
74
+
67
75
  1. Fork it
68
76
  2. Create your feature branch (`git checkout -b my-new-feature`)
69
77
  3. Commit your changes (`git commit -am 'Add some feature'`)
data/lib/smaak/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Smaak
2
- VERSION = "0.0.9"
2
+ VERSION = "0.0.10"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: smaak
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ernst van Graan