mongoid-auditor 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.
metadata ADDED
@@ -0,0 +1,115 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mongoid-auditor
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Pralad Mishra
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: mongoid
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: '7.0'
19
+ - - "<"
20
+ - !ruby/object:Gem::Version
21
+ version: '9.1'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ version: '7.0'
29
+ - - "<"
30
+ - !ruby/object:Gem::Version
31
+ version: '9.1'
32
+ - !ruby/object:Gem::Dependency
33
+ name: rails
34
+ requirement: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '7.0'
39
+ - - "<"
40
+ - !ruby/object:Gem::Version
41
+ version: 8.1.1
42
+ type: :runtime
43
+ prerelease: false
44
+ version_requirements: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: '7.0'
49
+ - - "<"
50
+ - !ruby/object:Gem::Version
51
+ version: 8.1.1
52
+ description: |2-
53
+
54
+ Provides an easy way to track changes, creations, and errors across your Rails
55
+ application. This gem automatically records model and controller activity,
56
+ including request context and error details, with flexible configuration
57
+ through an initializer. Ideal for debugging, compliance, and tracking user actions
58
+ email:
59
+ - praladmishra3@gmail.com
60
+ executables: []
61
+ extensions: []
62
+ extra_rdoc_files: []
63
+ files:
64
+ - CHANGELOG.md
65
+ - CODE_OF_CONDUCT.md
66
+ - LICENSE.txt
67
+ - README.md
68
+ - Rakefile
69
+ - lib/mongoid/auditor.rb
70
+ - lib/mongoid/auditor/audit.rb
71
+ - lib/mongoid/auditor/configuration.rb
72
+ - lib/mongoid/auditor/generators/install_generator.rb
73
+ - lib/mongoid/auditor/generators/templates/mongoid_auditor_initializer.rb
74
+ - lib/mongoid/auditor/helpers/controller_helpers/audit_controller_error_log.rb
75
+ - lib/mongoid/auditor/helpers/controller_helpers/controller_audit_helper.rb
76
+ - lib/mongoid/auditor/helpers/controller_helpers/init_audit_log.rb
77
+ - lib/mongoid/auditor/helpers/jobs/auditor_job.rb
78
+ - lib/mongoid/auditor/helpers/jobs/concerns/auditable_job_error.rb
79
+ - lib/mongoid/auditor/helpers/jobs/concerns/init_job_audit_log.rb
80
+ - lib/mongoid/auditor/helpers/models/audit_log.rb
81
+ - lib/mongoid/auditor/helpers/models/concerns/audit_log_helpers.rb
82
+ - lib/mongoid/auditor/helpers/models/concerns/auditable.rb
83
+ - lib/mongoid/auditor/helpers/models/concerns/model_logs_helper.rb
84
+ - lib/mongoid/auditor/helpers/models/current.rb
85
+ - lib/mongoid/auditor/helpers/models/request_context.rb
86
+ - lib/mongoid/auditor/railtie.rb
87
+ - lib/mongoid/auditor/version.rb
88
+ - sig/mongoid/auditor.rbs
89
+ homepage: https://github.com/SELISEdigitalplatforms/l3-ruby-mongoid-auditor
90
+ licenses:
91
+ - MIT
92
+ metadata:
93
+ allowed_push_host: https://rubygems.org
94
+ homepage_uri: https://github.com/SELISEdigitalplatforms/l3-ruby-mongoid-auditor
95
+ source_code_uri: https://github.com/SELISEdigitalplatforms/l3-ruby-mongoid-auditor
96
+ changelog_uri: https://github.com/SELISEdigitalplatforms/l3-ruby-mongoid-auditor/blob/main/CHANGELOG.md
97
+ rubygems_mfa_required: 'true'
98
+ rdoc_options: []
99
+ require_paths:
100
+ - lib
101
+ required_ruby_version: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - ">="
104
+ - !ruby/object:Gem::Version
105
+ version: 3.2.0
106
+ required_rubygems_version: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ requirements: []
112
+ rubygems_version: 3.6.9
113
+ specification_version: 4
114
+ summary: Lightweight audit logging for Rails models and controllers.
115
+ test_files: []