encryptable 0.1.0 → 0.1.1
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 +4 -4
- data/CHANGELOG.md +38 -2
- data/README.md +2 -0
- data/encryptable-0.1.0.gem +0 -0
- data/encryptable.gemspec +2 -2
- data/lib/encryptable/version.rb +1 -1
- metadata +7 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cc02b8c1eb90693db0d08bbf3323769991a4a3963c36e3a91e9e2f162a2d8772
|
|
4
|
+
data.tar.gz: 1104bfeab5ca134c5b5d1432eef6622b097928c5f552286819200ec2edb0a02d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 94c9c20a6cff67e22929bc255da2eac803478f54407aae04dd14f2c2f27c873d7fc32bdfea01cf727906b175491d39895f3b36ffeab79b63ba417f8ae8220fa3
|
|
7
|
+
data.tar.gz: '08f40efdcefd4961a8d78e2128bbcaa0d9a6111dff13b13fd410877d696938459799426634a1a3a50cad639b7cde854be569138ad0f0708dffdd0ef1acc03a91'
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
## [Unreleased]
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
- Your upcoming changes that haven't been released yet.
|
|
4
4
|
|
|
5
|
-
-
|
|
5
|
+
## [0.1.1] - 2023-08-24
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- (Any new features or functionalities that were added in this version.)
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- Updated gem description for clarity and detail.
|
|
14
|
+
|
|
15
|
+
### Deprecated
|
|
16
|
+
|
|
17
|
+
- (Any features that are deprecated but still exist.)
|
|
18
|
+
|
|
19
|
+
### Removed
|
|
20
|
+
|
|
21
|
+
- (Any features or functionalities that were removed.)
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
|
|
25
|
+
- (Any bug fixes.)
|
|
26
|
+
|
|
27
|
+
### Security
|
|
28
|
+
|
|
29
|
+
- (Any security improvements or fixes.)
|
|
30
|
+
[0.1.0] - 2023-08-23
|
|
31
|
+
|
|
32
|
+
### Added
|
|
33
|
+
|
|
34
|
+
- Initial release of the Encryptable gem.
|
|
35
|
+
- Basic encryption and decryption functionalities.
|
|
36
|
+
- Generation of keys and IVs.
|
|
37
|
+
- Detailed documentation and usage guide in README.
|
|
38
|
+
|
|
39
|
+
### [Earlier versions]
|
|
40
|
+
|
|
41
|
+
- Initial development and private releases.
|
data/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
[](https://badge.fury.io/rb/encryptable)
|
|
2
|
+
|
|
1
3
|
# Encryptable
|
|
2
4
|
|
|
3
5
|
**Encryptable** is a lightweight and versatile Ruby gem crafted to provide seamless encryption and decryption functionalities. Whether you're building a standalone Ruby application or a Rails-powered web service, Encryptable allows you to maintain the confidentiality of your data with ease.
|
|
Binary file
|
data/encryptable.gemspec
CHANGED
|
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.authors = ["raketbizdev"]
|
|
9
9
|
spec.email = ["radon1284@yahoo.com"]
|
|
10
10
|
|
|
11
|
-
spec.summary = "
|
|
12
|
-
spec.description = "
|
|
11
|
+
spec.summary = "Encryption and decryption toolkit for Rails."
|
|
12
|
+
spec.description = "Encryptable is a lightweight and versatile Ruby gem crafted to provide seamless encryption and decryption functionalities. Whether you're building a standalone Ruby application or a Rails-powered web service, Encryptable allows you to maintain the confidentiality of your data with ease."
|
|
13
13
|
spec.homepage = "https://github.com/raketbizdev/encryptable" # Replace with your actual repository URL
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
spec.required_ruby_version = ">= 2.6.0"
|
data/lib/encryptable/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: encryptable
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- raketbizdev
|
|
@@ -10,9 +10,10 @@ bindir: exe
|
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2023-08-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
|
-
description:
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
description: Encryptable is a lightweight and versatile Ruby gem crafted to provide
|
|
14
|
+
seamless encryption and decryption functionalities. Whether you're building a standalone
|
|
15
|
+
Ruby application or a Rails-powered web service, Encryptable allows you to maintain
|
|
16
|
+
the confidentiality of your data with ease.
|
|
16
17
|
email:
|
|
17
18
|
- radon1284@yahoo.com
|
|
18
19
|
executables: []
|
|
@@ -26,6 +27,7 @@ files:
|
|
|
26
27
|
- LICENSE.txt
|
|
27
28
|
- README.md
|
|
28
29
|
- Rakefile
|
|
30
|
+
- encryptable-0.1.0.gem
|
|
29
31
|
- encryptable.gemspec
|
|
30
32
|
- examples/README.md
|
|
31
33
|
- examples/advanced_usage.rb
|
|
@@ -64,5 +66,5 @@ requirements: []
|
|
|
64
66
|
rubygems_version: 3.3.7
|
|
65
67
|
signing_key:
|
|
66
68
|
specification_version: 4
|
|
67
|
-
summary:
|
|
69
|
+
summary: Encryption and decryption toolkit for Rails.
|
|
68
70
|
test_files: []
|