funes-rails 0.1.0
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 +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +180 -0
- data/Rakefile +135 -0
- data/app/assets/stylesheets/funes/application.css +15 -0
- data/app/controllers/funes/application_controller.rb +4 -0
- data/app/event_streams/funes/event_stream.rb +274 -0
- data/app/helpers/funes/application_helper.rb +4 -0
- data/app/helpers/funes/projection_test_helper.rb +54 -0
- data/app/jobs/funes/application_job.rb +4 -0
- data/app/jobs/funes/persist_projection_job.rb +8 -0
- data/app/mailers/funes/application_mailer.rb +6 -0
- data/app/models/funes/application_record.rb +5 -0
- data/app/models/funes/event.rb +137 -0
- data/app/models/funes/event_entry.rb +9 -0
- data/app/projections/funes/projection.rb +203 -0
- data/app/views/layouts/funes/application.html.erb +17 -0
- data/config/locales/en.yml +5 -0
- data/config/routes.rb +2 -0
- data/lib/funes/engine.rb +10 -0
- data/lib/funes/unknown_event.rb +24 -0
- data/lib/funes/unknown_materialization_model.rb +29 -0
- data/lib/funes/version.rb +3 -0
- data/lib/funes.rb +72 -0
- data/lib/generators/funes/install_generator.rb +41 -0
- data/lib/generators/funes/templates/migration.rb.tt +16 -0
- data/lib/tasks/funes_tasks.rake +4 -0
- metadata +85 -0
metadata
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: funes-rails
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Vinícius Almeida da Silva
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2026-01-07 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: rails
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 8.0.2.1
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 8.0.2.1
|
|
27
|
+
description: A comprehensive event sourcing framework for Rails applications
|
|
28
|
+
email:
|
|
29
|
+
executables: []
|
|
30
|
+
extensions: []
|
|
31
|
+
extra_rdoc_files: []
|
|
32
|
+
files:
|
|
33
|
+
- MIT-LICENSE
|
|
34
|
+
- README.md
|
|
35
|
+
- Rakefile
|
|
36
|
+
- app/assets/stylesheets/funes/application.css
|
|
37
|
+
- app/controllers/funes/application_controller.rb
|
|
38
|
+
- app/event_streams/funes/event_stream.rb
|
|
39
|
+
- app/helpers/funes/application_helper.rb
|
|
40
|
+
- app/helpers/funes/projection_test_helper.rb
|
|
41
|
+
- app/jobs/funes/application_job.rb
|
|
42
|
+
- app/jobs/funes/persist_projection_job.rb
|
|
43
|
+
- app/mailers/funes/application_mailer.rb
|
|
44
|
+
- app/models/funes/application_record.rb
|
|
45
|
+
- app/models/funes/event.rb
|
|
46
|
+
- app/models/funes/event_entry.rb
|
|
47
|
+
- app/projections/funes/projection.rb
|
|
48
|
+
- app/views/layouts/funes/application.html.erb
|
|
49
|
+
- config/locales/en.yml
|
|
50
|
+
- config/routes.rb
|
|
51
|
+
- lib/funes.rb
|
|
52
|
+
- lib/funes/engine.rb
|
|
53
|
+
- lib/funes/unknown_event.rb
|
|
54
|
+
- lib/funes/unknown_materialization_model.rb
|
|
55
|
+
- lib/funes/version.rb
|
|
56
|
+
- lib/generators/funes/install_generator.rb
|
|
57
|
+
- lib/generators/funes/templates/migration.rb.tt
|
|
58
|
+
- lib/tasks/funes_tasks.rake
|
|
59
|
+
homepage: https://funes.org/
|
|
60
|
+
licenses:
|
|
61
|
+
- MIT
|
|
62
|
+
metadata:
|
|
63
|
+
homepage_uri: https://funes.org/
|
|
64
|
+
source_code_uri: https://github.com/funes-org/funes
|
|
65
|
+
changelog_uri: https://github.com/funes-org/funes
|
|
66
|
+
post_install_message:
|
|
67
|
+
rdoc_options: []
|
|
68
|
+
require_paths:
|
|
69
|
+
- lib
|
|
70
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
71
|
+
requirements:
|
|
72
|
+
- - ">="
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
version: '0'
|
|
75
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
76
|
+
requirements:
|
|
77
|
+
- - ">="
|
|
78
|
+
- !ruby/object:Gem::Version
|
|
79
|
+
version: '0'
|
|
80
|
+
requirements: []
|
|
81
|
+
rubygems_version: 3.4.10
|
|
82
|
+
signing_key:
|
|
83
|
+
specification_version: 4
|
|
84
|
+
summary: Rails event sourcing framework
|
|
85
|
+
test_files: []
|