rails-persona 0.2.4 → 0.2.5

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: b194d6b38b3b3e4255d41b0b6e27f03d445ad9dd490858ebf8064d700d57c933
4
- data.tar.gz: 2a30f2bed7d8feb3892d13f69b6105b795e6e3d7bc2222b2431c068b520b9b14
3
+ metadata.gz: 7cd4ad28dad5d2ebcdab27c083d921fd06f87e8b5d0b7e03fd74c6dad21df97c
4
+ data.tar.gz: f0daa7069d9b5e332457a25b8d5e4f54f77011735f32e28aedea2d2c24996168
5
5
  SHA512:
6
- metadata.gz: f69dae3e686d6e896bd7369db5fe59723e48290bda068d32a63f61eadb50a5e8c35e49f6c4f9df29eb7c6e06467ac71ee9e067401c1d7d39cc79018917aae3ac
7
- data.tar.gz: ca433078eecb7fcf164d9162f6bacf7658bad6bddd09adccf57950721e99dcf0b22af8d034ab3879965d5738024b87645886e2b175e2a88a964f3b288c77622b
6
+ metadata.gz: 9577118fc4ded8ba9f062bc3466806541efdd98909f94e58e67dcfba567326b4f9ff8bd33b243e597d9053e273920d43a37e9df392efb3247e6a4fa9c6036e25
7
+ data.tar.gz: 34dafcbcc3b499f950eeaa94091f98fa402244e3c70453ee5d86887728d44f578da9adde27244cf2119b182ace7ed3973d4a39e6f4748fd3a81429a6a0441ffb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.5] - 2026-06-01
4
+ ### Fixed
5
+ - Add gem app/ directory to Rails autoload paths so PersonaEvent is accessible (fixes #12)
6
+
3
7
  ## [0.2.4] - 2026-06-01
4
8
  ### Fixed
5
9
  - Replace `t.jsonb` with `t.text` in migration for SQLite compatibility (fixes #10)
@@ -9,6 +9,10 @@ module Persona
9
9
  end
10
10
  end
11
11
 
12
+ initializer "persona.autoload_paths" do |app|
13
+ app.config.autoload_paths << File.expand_path("../../app/models", __dir__)
14
+ end
15
+
12
16
  rake_tasks do
13
17
  load File.expand_path("../../tasks/persona_tasks.rake", __dir__)
14
18
  end
@@ -1,3 +1,3 @@
1
1
  module Persona
2
- VERSION = "0.2.4"
2
+ VERSION = "0.2.5"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-persona
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Syed M. Ghani