loggable_activity 0.1.36
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/.DS_Store +0 -0
- data/.rspec +3 -0
- data/.rspec_status +0 -0
- data/.rubocop.yml +35 -0
- data/CHANGELOG.md +5 -0
- data/CODE_OF_CONDUCT.md +84 -0
- data/CONSIDERTIONS.md +129 -0
- data/GETTING-STARTED.md +80 -0
- data/LICENSE.txt +21 -0
- data/README.md +32 -0
- data/ROADMAP.md +19 -0
- data/Rakefile +8 -0
- data/lib/.DS_Store +0 -0
- data/lib/generators/.DS_Store +0 -0
- data/lib/generators/loggable_activity/.DS_Store +0 -0
- data/lib/generators/loggable_activity/install_generator.rb +30 -0
- data/lib/generators/loggable_activity/templates/.DS_Store +0 -0
- data/lib/generators/loggable_activity/templates/create_loggable_activities.rb +15 -0
- data/lib/generators/loggable_activity/templates/create_loggable_encryption_keys.rb +11 -0
- data/lib/generators/loggable_activity/templates/create_loggable_payloads.rb +15 -0
- data/lib/generators/loggable_activity/templates/current_user.rb +26 -0
- data/lib/generators/loggable_activity/templates/loggable_activity.en.yml +36 -0
- data/lib/loggable_activity/.DS_Store +0 -0
- data/lib/loggable_activity/activity.rb +124 -0
- data/lib/loggable_activity/configuration.rb +13 -0
- data/lib/loggable_activity/encryption.rb +43 -0
- data/lib/loggable_activity/encryption_key.rb +46 -0
- data/lib/loggable_activity/hooks.rb +152 -0
- data/lib/loggable_activity/payload.rb +71 -0
- data/lib/loggable_activity/payloads_builder.rb +89 -0
- data/lib/loggable_activity/update_payloads_builder.rb +99 -0
- data/lib/loggable_activity/version.rb +5 -0
- data/lib/loggable_activity.rb +18 -0
- data/loggable_activity-0.1.32.gem +0 -0
- data/loggable_activity-0.1.33.gem +0 -0
- data/loggable_activity-0.1.34.gem +0 -0
- data/pkg/loggable_activity-0.1.35.gem +0 -0
- data/sig/loggable_activity.rbs +4 -0
- metadata +105 -0
metadata
ADDED
@@ -0,0 +1,105 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: loggable_activity
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.36
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- "Max \nGroenlund"
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-02-11 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: activerecord
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 7.1.3
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 7.1.3
|
27
|
+
description: |2
|
28
|
+
LoggableActivity is a powerful gem for Ruby on Rails that provides seamless user activity logging
|
29
|
+
prepared for GDPR compliance and supporting record relations. It allows you to effortlessly
|
30
|
+
keep track of user actions within your application, capturing who did what and when, even with
|
31
|
+
related records included in the logs. With LoggableActivity, you can maintain the privacy of
|
32
|
+
sensitive information in your logs, making it a perfect solution for applications that require
|
33
|
+
robust audit trails while adhering to strict data protection regulations.
|
34
|
+
email:
|
35
|
+
- max@synthmax.dk
|
36
|
+
executables: []
|
37
|
+
extensions: []
|
38
|
+
extra_rdoc_files: []
|
39
|
+
files:
|
40
|
+
- ".DS_Store"
|
41
|
+
- ".rspec"
|
42
|
+
- ".rspec_status"
|
43
|
+
- ".rubocop.yml"
|
44
|
+
- CHANGELOG.md
|
45
|
+
- CODE_OF_CONDUCT.md
|
46
|
+
- CONSIDERTIONS.md
|
47
|
+
- GETTING-STARTED.md
|
48
|
+
- LICENSE.txt
|
49
|
+
- README.md
|
50
|
+
- ROADMAP.md
|
51
|
+
- Rakefile
|
52
|
+
- lib/.DS_Store
|
53
|
+
- lib/generators/.DS_Store
|
54
|
+
- lib/generators/loggable_activity/.DS_Store
|
55
|
+
- lib/generators/loggable_activity/install_generator.rb
|
56
|
+
- lib/generators/loggable_activity/templates/.DS_Store
|
57
|
+
- lib/generators/loggable_activity/templates/create_loggable_activities.rb
|
58
|
+
- lib/generators/loggable_activity/templates/create_loggable_encryption_keys.rb
|
59
|
+
- lib/generators/loggable_activity/templates/create_loggable_payloads.rb
|
60
|
+
- lib/generators/loggable_activity/templates/current_user.rb
|
61
|
+
- lib/generators/loggable_activity/templates/loggable_activity.en.yml
|
62
|
+
- lib/loggable_activity.rb
|
63
|
+
- lib/loggable_activity/.DS_Store
|
64
|
+
- lib/loggable_activity/activity.rb
|
65
|
+
- lib/loggable_activity/configuration.rb
|
66
|
+
- lib/loggable_activity/encryption.rb
|
67
|
+
- lib/loggable_activity/encryption_key.rb
|
68
|
+
- lib/loggable_activity/hooks.rb
|
69
|
+
- lib/loggable_activity/payload.rb
|
70
|
+
- lib/loggable_activity/payloads_builder.rb
|
71
|
+
- lib/loggable_activity/update_payloads_builder.rb
|
72
|
+
- lib/loggable_activity/version.rb
|
73
|
+
- loggable_activity-0.1.32.gem
|
74
|
+
- loggable_activity-0.1.33.gem
|
75
|
+
- loggable_activity-0.1.34.gem
|
76
|
+
- pkg/loggable_activity-0.1.35.gem
|
77
|
+
- sig/loggable_activity.rbs
|
78
|
+
homepage: https://github.com/maxgronlund/LoggableActivity/
|
79
|
+
licenses:
|
80
|
+
- MIT
|
81
|
+
metadata:
|
82
|
+
homepage_uri: https://github.com/maxgronlund/LoggableActivity/
|
83
|
+
source_code_uri: https://github.com/maxgronlund/LoggableActivity
|
84
|
+
changelog_uri: https://github.com/maxgronlund/LoggableActivity/CHANGELOG.md
|
85
|
+
rubygems_mfa_required: 'true'
|
86
|
+
post_install_message:
|
87
|
+
rdoc_options: []
|
88
|
+
require_paths:
|
89
|
+
- lib
|
90
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
91
|
+
requirements:
|
92
|
+
- - ">="
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: '3.2'
|
95
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
96
|
+
requirements:
|
97
|
+
- - ">="
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: '0'
|
100
|
+
requirements: []
|
101
|
+
rubygems_version: 3.5.6
|
102
|
+
signing_key:
|
103
|
+
specification_version: 4
|
104
|
+
summary: Activity Logger with GDPR Compliance and Relation Support.
|
105
|
+
test_files: []
|