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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6644843d956acabec36f996af2a3add3756ee78aaeb5cf1b9286bbf1fb3edfc3
4
- data.tar.gz: 6f4f323b250aac555eb294762811fe0c1d52c0f0288d03a41657489c2b804022
3
+ metadata.gz: 514242f508dfc7d493755adbca309fa8e0c91fc16bd1bb4ea5f7f29bfaa9e2b9
4
+ data.tar.gz: fe6988248b066247fbb03a3375acdfd96c2586cbc6313cc670376f8675239555
5
5
  SHA512:
6
- metadata.gz: 6cc3163d3cf8ba51021ce31681945d301413ee30aff9387014c86c8f522d1cca62331f9ae7d25f910b6020aa06a72ab29956e6302133a48ec1be064df5d48efe
7
- data.tar.gz: 30bbcc652985d669ef52e620a9b0e55d136d7feabdffd214b83db4ce1678b33589fe93830dee145d082f8944ec434dc428e7296e597e2fd885511d4927871a34
6
+ metadata.gz: c831d5e1ec1a73a2b181d1ec00872c98ea3a94bd2b61f6d5afecb6bc8b1b60590ddad496d5da0c6f6fa03de9dd78eb14b0234f74744716011dda9f0547cd14a3
7
+ data.tar.gz: 3bd6c417a7aa007b0d58187c60c5bc39af30cb0d869e2344dab117fe92b649ac004870d58db6de2151b7ee16d919149b58e394b1b46447fc2ff739334558d2c6
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright 2017 OnApp Ltd.
1
+ Copyright 2023 Virtuozzo
2
2
 
3
3
  Licensed under the Apache License, Version 2.0 (the "License");
4
4
  you may not use this file except in compliance with the License.
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 Version](https://badge.fury.io/rb/custom_active_record_observer.svg)][gem]
7
- [![Build Status](https://travis-ci.org/OnApp/custom_active_record_observer.svg?branch=master)][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/OnApp/custom_active_record_observer.
97
+ Bug reports and pull requests are welcome on GitHub at https://github.com/virtuozzo/custom_active_record_observer.
@@ -2,7 +2,7 @@
2
2
  module CustomActiveRecordObserver
3
3
  # A main methods that are supposed to be used within CustomActiveRecordObserver
4
4
  #
5
- # @author OnApp Ltd.
5
+ # @author Virtuozzo
6
6
  class DSL
7
7
  attr_reader :actions_and_rules
8
8
 
@@ -1,3 +1,3 @@
1
1
  module CustomActiveRecordObserver
2
- VERSION = '0.5.0'.freeze
2
+ VERSION = '0.5.1'.freeze
3
3
  end
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.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
- - OnApp Ltd.
8
- autorequire:
7
+ - Virtuozzo
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-08-19 00:00:00.000000000 Z
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: support@onapp.com
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/OnApp/custom_active_record_observer
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
- rubyforge_project:
146
- rubygems_version: 2.7.6.2
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