jekyll-crypto 0.1.2 → 0.1.3

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: 802666c022fcf5c10e2b10836b99ebf38415279caeea307a1dd489c3d03bea0b
4
- data.tar.gz: 2e7faa26958afb5be5ba5f39f79a5488a85d3948a49039f40d798accc36af80a
3
+ metadata.gz: f10bd180b6c1f5a57d3123d209268ae49cf644053a032f795c2c2cf82c553fab
4
+ data.tar.gz: 4a6b594cfc52077278e29ff0dcd5e0513d4edf8b4ae2ce1145710daff7302bb5
5
5
  SHA512:
6
- metadata.gz: d7fbaf5a058e303deb9bf3aca5f87a9fd0ae33a94650dec856fa1bb576ee5f5090109eab80ddb9c28f39b8b85a579a4ef946604517422960307afa0968f7cb67
7
- data.tar.gz: 3fe26483bb2fd7c2c436082a93d7f749e90462786aa0310644de0322623f2aadb7b4326381f36d1b3beed1eea3995f696e87993b4f41037bc90953bdcb662dca
6
+ metadata.gz: d7af95ca08cb1157ec919153ccb8b194368c05bdbbf641346a7077fab6839cb3d7da997a86431e09be59ae7bf222ff76b290dbcabefa65bcfe6458fccb60acd1
7
+ data.tar.gz: 6407e6262db4df1debfa728d493d76cc92562d42075f39f9843c9bd4ba93782d0e1540b1be931fd3f5c250c53dc5996590230f6d9cd4624264ff0ddad6fc6337
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.3 -- 2020-11-04
4
+
5
+ * Hide ciphertext
6
+
7
+ ## 0.1.2 - 2020-09-28
8
+
9
+ * Support Ruby 2.7
10
+
3
11
  ## 0.1.1 - 2020-03-06
4
12
 
5
13
  * Prevent password autocompletion
@@ -148,7 +148,7 @@ module Jekyll
148
148
  <input type="submit" />
149
149
  </form>
150
150
 
151
- <span class="ciphertext" style="word-wrap: break-word">
151
+ <span class="ciphertext" style="word-wrap: break-word;display: none;">
152
152
  #{JSON.dump ciphertext.bytes.concat(auth_tag.bytes)}
153
153
  </span>
154
154
  </div>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-crypto
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - f
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-09-28 00:00:00.000000000 Z
11
+ date: 2020-11-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -80,9 +80,7 @@ dependencies:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
- description: 'Encrypts post so only people with the password can decrypt them!
84
-
85
- '
83
+ description: Encrypts post so only people with the password can decrypt them!
86
84
  email:
87
85
  - f@sutty.nl
88
86
  executables: []
@@ -97,16 +95,15 @@ files:
97
95
  - README.md
98
96
  - lib/jekyll-crypto.rb
99
97
  - lib/jekyll/crypto.rb
100
- - lib/jekyll/crypto/version.rb
101
98
  - lib/jekyll/renderer.rb
102
- homepage: https://0xacab.org/sutty/jekyll/jekyll-jekyll-crypto
99
+ homepage: https://0xacab.org/sutty/jekyll/jekyll-crypto
103
100
  licenses:
104
101
  - GPL-3.0
105
102
  metadata:
106
- bug_tracker_uri: https://0xacab.org/sutty/jekyll/jekyll-jekyll-crypto/issues
107
- homepage_uri: https://0xacab.org/sutty/jekyll/jekyll-jekyll-crypto
108
- source_code_uri: https://0xacab.org/sutty/jekyll/jekyll-jekyll-crypto
109
- changelog_uri: https://0xacab.org/sutty/jekyll/jekyll-jekyll-crypto/-/blob/master/CHANGELOG.md
103
+ bug_tracker_uri: https://0xacab.org/sutty/jekyll/jekyll-crypto/issues
104
+ homepage_uri: https://0xacab.org/sutty/jekyll/jekyll-crypto
105
+ source_code_uri: https://0xacab.org/sutty/jekyll/jekyll-crypto
106
+ changelog_uri: https://0xacab.org/sutty/jekyll/jekyll-crypto/-/blob/master/CHANGELOG.md
110
107
  documentation_uri: https://rubydoc.info/gems/jekyll-crypto
111
108
  post_install_message:
112
109
  rdoc_options:
@@ -130,7 +127,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
130
127
  - !ruby/object:Gem::Version
131
128
  version: '0'
132
129
  requirements: []
133
- rubygems_version: 3.0.3
130
+ rubygems_version: 3.1.2
134
131
  signing_key:
135
132
  specification_version: 4
136
133
  summary: Symmetrically encrypt posts
@@ -1,5 +0,0 @@
1
- module Jekyll
2
- class Crypto
3
- VERSION = '0.1.2'.freeze
4
- end
5
- end