custom_active_record_observer 0.5.0 → 0.5.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 +4 -4
- data/LICENSE +1 -1
- data/README.md +1 -3
- data/lib/custom_active_record_observer/dsl.rb +1 -1
- data/lib/custom_active_record_observer/version.rb +1 -1
- metadata +9 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 514242f508dfc7d493755adbca309fa8e0c91fc16bd1bb4ea5f7f29bfaa9e2b9
|
|
4
|
+
data.tar.gz: fe6988248b066247fbb03a3375acdfd96c2586cbc6313cc670376f8675239555
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c831d5e1ec1a73a2b181d1ec00872c98ea3a94bd2b61f6d5afecb6bc8b1b60590ddad496d5da0c6f6fa03de9dd78eb14b0234f74744716011dda9f0547cd14a3
|
|
7
|
+
data.tar.gz: 3bd6c417a7aa007b0d58187c60c5bc39af30cb0d869e2344dab117fe92b649ac004870d58db6de2151b7ee16d919149b58e394b1b46447fc2ff739334558d2c6
|
data/LICENSE
CHANGED
data/README.md
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
[gem]: https://rubygems.org/gems/custom_active_record_observer
|
|
2
|
-
[travis]: https://travis-ci.org/OnApp/custom_active_record_observer
|
|
3
2
|
|
|
4
3
|
# CustomActiveRecordObserver
|
|
5
4
|
|
|
6
5
|
[][gem]
|
|
7
|
-
[][travis]
|
|
8
6
|
|
|
9
7
|
A DSL to track create/update/destroy operations based on AR callbacks.
|
|
10
8
|
|
|
@@ -96,4 +94,4 @@ end
|
|
|
96
94
|
See `LICENSE` file.
|
|
97
95
|
|
|
98
96
|
## Contributing
|
|
99
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
|
97
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/virtuozzo/custom_active_record_observer.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: custom_active_record_observer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
8
|
-
autorequire:
|
|
7
|
+
- Virtuozzo
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 1980-01-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activerecord
|
|
@@ -97,7 +97,7 @@ dependencies:
|
|
|
97
97
|
description: |2
|
|
98
98
|
This gem delivers a simple DSL based on the after_commit callback
|
|
99
99
|
which can be used as an alternative to hooks from inside the model
|
|
100
|
-
email:
|
|
100
|
+
email: igor.sidorov@virtuozzo.com
|
|
101
101
|
executables: []
|
|
102
102
|
extensions: []
|
|
103
103
|
extra_rdoc_files: []
|
|
@@ -123,11 +123,11 @@ files:
|
|
|
123
123
|
- lib/custom_active_record_observer/rules/update_rule.rb
|
|
124
124
|
- lib/custom_active_record_observer/schema.rb
|
|
125
125
|
- lib/custom_active_record_observer/version.rb
|
|
126
|
-
homepage: https://github.com/
|
|
126
|
+
homepage: https://github.com/virtuozzo/custom_active_record_observer
|
|
127
127
|
licenses:
|
|
128
128
|
- Apache 2.0
|
|
129
129
|
metadata: {}
|
|
130
|
-
post_install_message:
|
|
130
|
+
post_install_message:
|
|
131
131
|
rdoc_options: []
|
|
132
132
|
require_paths:
|
|
133
133
|
- lib
|
|
@@ -142,9 +142,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
142
142
|
- !ruby/object:Gem::Version
|
|
143
143
|
version: '0'
|
|
144
144
|
requirements: []
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
signing_key:
|
|
145
|
+
rubygems_version: 3.2.16
|
|
146
|
+
signing_key:
|
|
148
147
|
specification_version: 4
|
|
149
148
|
summary: A small handy library to track create/update/destroy actions on active_record
|
|
150
149
|
models
|