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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4b63346e699987deec098df1553a41c40af7e9f3bf65524adfd2e24e9150cbca
4
- data.tar.gz: 8fdcdace4cfe4bb291cbf3aca5ffc90b89fb1cf32bd232b4db82ad008c52351a
3
+ metadata.gz: cc02b8c1eb90693db0d08bbf3323769991a4a3963c36e3a91e9e2f162a2d8772
4
+ data.tar.gz: 1104bfeab5ca134c5b5d1432eef6622b097928c5f552286819200ec2edb0a02d
5
5
  SHA512:
6
- metadata.gz: ae726fe9c441a375b1d10ab858b79b93e6923e459119f85ce958a343672eb028f21a2f2e2f4e5c124e13a4e9abc2b43f2421d495d2b715b73e51060624d20e50
7
- data.tar.gz: dfb35ad838c75836ef1477a0f3e17ebb82c0c7fe0c5df3c2ebf252d30e77325e78048b3f9e938d9f5d17416db328272f0fa09359819e6f4fcc4c443df1925667
6
+ metadata.gz: 94c9c20a6cff67e22929bc255da2eac803478f54407aae04dd14f2c2f27c873d7fc32bdfea01cf727906b175491d39895f3b36ffeab79b63ba417f8ae8220fa3
7
+ data.tar.gz: '08f40efdcefd4961a8d78e2128bbcaa0d9a6111dff13b13fd410877d696938459799426634a1a3a50cad639b7cde854be569138ad0f0708dffdd0ef1acc03a91'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,41 @@
1
1
  ## [Unreleased]
2
2
 
3
- ## [0.1.0] - 2023-08-23
3
+ - Your upcoming changes that haven't been released yet.
4
4
 
5
- - Initial release
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
+ [![Gem Version](https://badge.fury.io/rb/encryptable.svg)](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 = "A simple encryption and decryption library for Ruby on Rails applications."
12
- spec.description = "The Encryptable gem provides an easy-to-use module for encrypting and decrypting data in Ruby on Rails applications. It utilizes the AES-256-CBC encryption method from the OpenSSL library."
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"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Encryptable
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
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.0
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: The Encryptable gem provides an easy-to-use module for encrypting and
14
- decrypting data in Ruby on Rails applications. It utilizes the AES-256-CBC encryption
15
- method from the OpenSSL library.
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: A simple encryption and decryption library for Ruby on Rails applications.
69
+ summary: Encryption and decryption toolkit for Rails.
68
70
  test_files: []