password_security 0.2.0 → 0.2.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: 1dfe9bb37e9c0a6222aca90b292ba42197ad92b85765646affa59a65b3612da1
4
- data.tar.gz: 3526242c6400814923a3ad47280a696a429221184bb0508fed302ff78c832f62
3
+ metadata.gz: '09dcc4b2ed1a5b3d4179623b1b0c75f42b01684f0234882ab1b5b08e0a889989'
4
+ data.tar.gz: 830bbd901e7280c72c4f2f91b93a93e981af61f3afc69a5b97f63932e4d70dee
5
5
  SHA512:
6
- metadata.gz: 28574deff15259d20a1da91f3fce2410a96def2aeafb724915f53f7f434a91741eac3ef853112263a8c583ee04ab98787980a8da5396cd9201bc2f4810c5434e
7
- data.tar.gz: 93748a160f7ccda094d46176f4c39160d8394e43fdcf9d5887ff2dde16320e454866bf393879f5fab0b763f3341806d44004b6bcfcf59b074711f12efe2c3c8a
6
+ metadata.gz: 911de57f54fd374c7dcea5508be15a385c1ab435f3b472eb71efed22bba61e409b799abc9ebf93066eb5152a8202a26aebddb57b8bfdd67cdbf53bdfbc1826ff
7
+ data.tar.gz: 3e8353faa40967c1e7c1dea923f20adccdf1d4a33c22ead16ca75b7f4b2cc259fe3f2a2abe26db0c16b692686e5d991ea42f984516978f288438a152a28dbf53
data/CHANGELOG.md CHANGED
@@ -1,11 +1,12 @@
1
1
  # Changelog
2
2
 
3
3
  ## [Unreleased]
4
- - Initial release of the gem
5
- - Implementation of password security validation
4
+ - The gem is now compatible with Ruby 2.7.1
5
+ - Fix file locales
6
6
 
7
7
  ## [0.2.0] - 2025-01-14
8
8
  - The gem is now compatible with Ruby 2.7.1
9
+ - Fix file locales
9
10
 
10
11
  ## [0.1.0] - 2025-01-14
11
12
  - Initial release of the gem
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PasswordSecurity
4
- VERSION = "0.2.0"
4
+ VERSION = "0.2.1"
5
5
  end
@@ -4,7 +4,6 @@ require "active_support"
4
4
  require "active_support/core_ext"
5
5
  require_relative "password_security/version"
6
6
  require "password_security/model_extension"
7
- require "./config/i18n"
8
7
 
9
8
  # PasswordSecurity
10
9
  module PasswordSecurity
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: password_security
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kejoss
@@ -25,13 +25,13 @@ files:
25
25
  - CODE_OF_CONDUCT.md
26
26
  - README.md
27
27
  - Rakefile
28
- - config/i18n.rb
29
28
  - lib/locales/en.yml
30
29
  - lib/locales/es.yml
31
30
  - lib/password_security.rb
32
31
  - lib/password_security/model_extension.rb
33
32
  - lib/password_security/version.rb
34
33
  - password_security-0.1.0.gem
34
+ - password_security-0.2.0.gem
35
35
  - password_security.gemspec
36
36
  - sig/password_security.rbs
37
37
  homepage: https://rubygems.org/gems/password_security
data/config/i18n.rb DELETED
@@ -1,8 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # Lib/config/i18n.rb o similar
4
- require "i18n"
5
-
6
- # Cargar los archivos de traducción
7
- I18n.load_path += Dir[File.expand_path("../lib/locales/**/*.yml", __dir__)]
8
- I18n.default_locale = :en