transaction_changes 2.2.1 → 2.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c50679191750d1bb76de32cfc6c1a1d6a0b3c9df67526c23e13171a946cd13e9
4
- data.tar.gz: c4d1f0d6a77e2f470b43cfe1b0908ef207865e8c6a0e8bf8141b478c4e614bf1
3
+ metadata.gz: d6661775605f6bd248398cfc8941d089178288668f4e1de6a322800900b4de57
4
+ data.tar.gz: 8e4ed6ceb477a28cdae6b4a477781c68ba0bb693885c09828ad19d38a8f80e17
5
5
  SHA512:
6
- metadata.gz: 4d9117e8fcf65c6804fa93fb0b338906201925516a43dc14357d99fb72200c10d79d94886ea7eef09ad0a274f1ebeb759bf4c27da55299e22d7d276795662156
7
- data.tar.gz: c5168534f284beeea51a2327a0a08256ce4236a8e2f98e971a631ae1fdacfc3ace34bdc6b615332011fd560e7a1461f67506770fe5f4ea33a1c7211a3510b4d8
6
+ metadata.gz: ccdfbfcec630629dd81acabf2f427d82bc199ec041f0a8cf66c362667e6f6015c9eef90f21b3d93d82a6718cc90dfaf0c020218743b7c093814c375c1cc8fc4e
7
+ data.tar.gz: 40e6e3ebbd89647be9d1a719eab66edb3dc3fe0a11599a66ef3a8e30e00ca075f0ce5b0026b5f341c7d529128893e86617fafa2854fb7b56a7a4b8b61f135ba7
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- transaction_changes (2.1.2)
4
+ transaction_changes (2.2.1)
5
5
  activerecord
6
6
  activesupport
7
7
 
@@ -7,14 +7,10 @@ module TransactionChanges
7
7
  include ActiveSupport::Callbacks
8
8
 
9
9
  included do
10
- after_save -> { accumulate_changes }
10
+ after_save :accumulate_changes
11
11
  set_callback :commit, :before, :setting_variables
12
12
  end
13
13
 
14
- def setting_variables
15
- @new_transaction_changes, @old_transaction_changes = HashWithIndifferentAccess.new, @new_transaction_changes
16
- end
17
-
18
14
  def transaction_changes
19
15
  @old_transaction_changes || HashWithIndifferentAccess.new
20
16
  end
@@ -33,6 +29,10 @@ module TransactionChanges
33
29
 
34
30
  private
35
31
 
32
+ def setting_variables
33
+ @new_transaction_changes, @old_transaction_changes = HashWithIndifferentAccess.new, @new_transaction_changes
34
+ end
35
+
36
36
  def accumulate_changes
37
37
  @new_transaction_changes ||= HashWithIndifferentAccess.new
38
38
 
@@ -1,3 +1,3 @@
1
1
  module TransactionChanges
2
- VERSION = "2.2.1"
2
+ VERSION = "2.2.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: transaction_changes
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.1
4
+ version: 2.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Priyanka
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-06-09 00:00:00.000000000 Z
11
+ date: 2018-06-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler