encryptable 0.1.1 → 0.1.2
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 +25 -0
- data/encryptable.gemspec +2 -2
- data/lib/encryptable/version.rb +1 -1
- metadata +4 -5
- data/encryptable-0.1.0.gem +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b85491c729cc0bd369200aa2296b673d2b0358a52de828fbaf495ed48867b171
|
|
4
|
+
data.tar.gz: f8b3cf93684065b56b4a2fb8d3c5c8b220ae75db1a854039b23def5aa3fc05f3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ee06763515a7698ba3259c6ba50f490d606d59f8b6e873ae514e1b8c8a6e092634cd78fa73d021ccf52190b66fe0f16ccd7edc1340b73a8f4a001dca1d939475
|
|
7
|
+
data.tar.gz: 1b493b8b1f6c5b50ceed43bd0dd8ca29515fd89f5417329dea5742ed0469eef7fb99130189207996a5a08722e33e049fb74a105a493704189b6eb466338a138c
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,31 @@
|
|
|
2
2
|
|
|
3
3
|
- Your upcoming changes that haven't been released yet.
|
|
4
4
|
|
|
5
|
+
## [0.1.2] - 2023-08-24
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- No changes
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- Updated gem summary for clarity and detail.
|
|
14
|
+
- Removed remnants of the gem version.
|
|
15
|
+
|
|
16
|
+
### Deprecated
|
|
17
|
+
|
|
18
|
+
- No changes
|
|
19
|
+
|
|
20
|
+
### Removed
|
|
21
|
+
|
|
22
|
+
- No changes
|
|
23
|
+
|
|
24
|
+
### Fixed
|
|
25
|
+
|
|
26
|
+
- No changes
|
|
27
|
+
|
|
28
|
+
### Security
|
|
29
|
+
|
|
5
30
|
## [0.1.1] - 2023-08-24
|
|
6
31
|
|
|
7
32
|
### Added
|
data/encryptable.gemspec
CHANGED
|
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.authors = ["raketbizdev"]
|
|
9
9
|
spec.email = ["radon1284@yahoo.com"]
|
|
10
10
|
|
|
11
|
-
spec.summary = "
|
|
11
|
+
spec.summary = "A simple encryption and decryption library for Ruby and Ruby on Rails applications."
|
|
12
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"
|
|
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
|
|
|
17
17
|
spec.metadata["allowed_push_host"] = "https://rubygems.org" # Default RubyGems server
|
|
18
18
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
19
19
|
spec.metadata["source_code_uri"] = "https://github.com/raketbizdev/encryptable" # Replace with your actual repository URL
|
|
20
|
-
spec.metadata["changelog_uri"] = "https://github.com/raketbizdev/encryptable/CHANGELOG.md" # If you maintain a CHANGELOG.md file
|
|
20
|
+
spec.metadata["changelog_uri"] = "https://github.com/raketbizdev/encryptable/blob/main/CHANGELOG.md" # If you maintain a CHANGELOG.md file
|
|
21
21
|
|
|
22
22
|
# Specify which files should be added to the gem when it is released.
|
|
23
23
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
data/lib/encryptable/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- raketbizdev
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-08-
|
|
11
|
+
date: 2023-08-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Encryptable is a lightweight and versatile Ruby gem crafted to provide
|
|
14
14
|
seamless encryption and decryption functionalities. Whether you're building a standalone
|
|
@@ -27,7 +27,6 @@ files:
|
|
|
27
27
|
- LICENSE.txt
|
|
28
28
|
- README.md
|
|
29
29
|
- Rakefile
|
|
30
|
-
- encryptable-0.1.0.gem
|
|
31
30
|
- encryptable.gemspec
|
|
32
31
|
- examples/README.md
|
|
33
32
|
- examples/advanced_usage.rb
|
|
@@ -47,7 +46,7 @@ metadata:
|
|
|
47
46
|
allowed_push_host: https://rubygems.org
|
|
48
47
|
homepage_uri: https://github.com/raketbizdev/encryptable
|
|
49
48
|
source_code_uri: https://github.com/raketbizdev/encryptable
|
|
50
|
-
changelog_uri: https://github.com/raketbizdev/encryptable/CHANGELOG.md
|
|
49
|
+
changelog_uri: https://github.com/raketbizdev/encryptable/blob/main/CHANGELOG.md
|
|
51
50
|
post_install_message:
|
|
52
51
|
rdoc_options: []
|
|
53
52
|
require_paths:
|
|
@@ -66,5 +65,5 @@ requirements: []
|
|
|
66
65
|
rubygems_version: 3.3.7
|
|
67
66
|
signing_key:
|
|
68
67
|
specification_version: 4
|
|
69
|
-
summary:
|
|
68
|
+
summary: A simple encryption and decryption library for Ruby and Ruby on Rails applications.
|
|
70
69
|
test_files: []
|
data/encryptable-0.1.0.gem
DELETED
|
Binary file
|