encryptable 0.1.0 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4b63346e699987deec098df1553a41c40af7e9f3bf65524adfd2e24e9150cbca
4
- data.tar.gz: 8fdcdace4cfe4bb291cbf3aca5ffc90b89fb1cf32bd232b4db82ad008c52351a
3
+ metadata.gz: b85491c729cc0bd369200aa2296b673d2b0358a52de828fbaf495ed48867b171
4
+ data.tar.gz: f8b3cf93684065b56b4a2fb8d3c5c8b220ae75db1a854039b23def5aa3fc05f3
5
5
  SHA512:
6
- metadata.gz: ae726fe9c441a375b1d10ab858b79b93e6923e459119f85ce958a343672eb028f21a2f2e2f4e5c124e13a4e9abc2b43f2421d495d2b715b73e51060624d20e50
7
- data.tar.gz: dfb35ad838c75836ef1477a0f3e17ebb82c0c7fe0c5df3c2ebf252d30e77325e78048b3f9e938d9f5d17416db328272f0fa09359819e6f4fcc4c443df1925667
6
+ metadata.gz: ee06763515a7698ba3259c6ba50f490d606d59f8b6e873ae514e1b8c8a6e092634cd78fa73d021ccf52190b66fe0f16ccd7edc1340b73a8f4a001dca1d939475
7
+ data.tar.gz: 1b493b8b1f6c5b50ceed43bd0dd8ca29515fd89f5417329dea5742ed0469eef7fb99130189207996a5a08722e33e049fb74a105a493704189b6eb466338a138c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,66 @@
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.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
+
30
+ ## [0.1.1] - 2023-08-24
31
+
32
+ ### Added
33
+
34
+ - (Any new features or functionalities that were added in this version.)
35
+
36
+ ### Changed
37
+
38
+ - Updated gem description for clarity and detail.
39
+
40
+ ### Deprecated
41
+
42
+ - (Any features that are deprecated but still exist.)
43
+
44
+ ### Removed
45
+
46
+ - (Any features or functionalities that were removed.)
47
+
48
+ ### Fixed
49
+
50
+ - (Any bug fixes.)
51
+
52
+ ### Security
53
+
54
+ - (Any security improvements or fixes.)
55
+ [0.1.0] - 2023-08-23
56
+
57
+ ### Added
58
+
59
+ - Initial release of the Encryptable gem.
60
+ - Basic encryption and decryption functionalities.
61
+ - Generation of keys and IVs.
62
+ - Detailed documentation and usage guide in README.
63
+
64
+ ### [Earlier versions]
65
+
66
+ - 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.
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 = "A simple encryption and decryption library for Ruby and Ruby on Rails applications."
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"
@@ -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.
@@ -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.2"
5
5
  end
metadata CHANGED
@@ -1,18 +1,19 @@
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.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-24 00:00:00.000000000 Z
11
+ date: 2023-08-25 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: []
@@ -45,7 +46,7 @@ metadata:
45
46
  allowed_push_host: https://rubygems.org
46
47
  homepage_uri: https://github.com/raketbizdev/encryptable
47
48
  source_code_uri: https://github.com/raketbizdev/encryptable
48
- changelog_uri: https://github.com/raketbizdev/encryptable/CHANGELOG.md
49
+ changelog_uri: https://github.com/raketbizdev/encryptable/blob/main/CHANGELOG.md
49
50
  post_install_message:
50
51
  rdoc_options: []
51
52
  require_paths:
@@ -64,5 +65,5 @@ requirements: []
64
65
  rubygems_version: 3.3.7
65
66
  signing_key:
66
67
  specification_version: 4
67
- summary: A simple encryption and decryption library for Ruby on Rails applications.
68
+ summary: A simple encryption and decryption library for Ruby and Ruby on Rails applications.
68
69
  test_files: []