simple_action 2.0.5 → 2.0.6

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: 251fe5dd84800b8479a11280c5f70e9c9307e307c8ca7e0039f44c62d7a7c0da
4
- data.tar.gz: 805924d30301d49f594d9c991512142c98a8c4a54612d155641745384d9f0551
3
+ metadata.gz: 217c7ba90316a0753a557aa0bf2d261323fc56538da9514ba9693942b565352f
4
+ data.tar.gz: 82fecc8486863e6d700a50ffaa8c4a16a14bd8f92b638c6ee0937af23140edee
5
5
  SHA512:
6
- metadata.gz: 103e62593fd15e4a0418854928ae581e51df5842e112c8959854a1f9d11c5c70d45e1573b2574f19d917d7da677000c2bf7697776bdaf3a2e06a35b03ffe47c1
7
- data.tar.gz: f1d78302fe40ed31f856daf3daf392266f6237825698cf525f678bed965e115c79789c489c0c42b84586187d3c5bada337b036d4aa282b4bbac92063fa92da21
6
+ metadata.gz: 55422909b72d5529ce5bf80c88a47df66ab84ea101c50ac4d02c7d837426555198651d5ed80d36a1149755c00a279d4c856133e1437dcf9f370c9726555f1103
7
+ data.tar.gz: 3c1f3c4fe7068bda16b0178df3191d0007e8f2052d86a56b3f00a10a803c1982209739ccf0b1be7c12de2262a878ed2fe444ad5839adb6d79ecd7a6aac471840
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- simple_action (2.0.4)
4
+ simple_action (2.0.6)
5
5
  simple_params
6
6
 
7
7
  GEM
@@ -26,7 +26,7 @@ GEM
26
26
  coderay (1.1.0)
27
27
  coercible (1.0.0)
28
28
  descendants_tracker (~> 0.0.1)
29
- concurrent-ruby (1.1.6)
29
+ concurrent-ruby (1.1.7)
30
30
  descendants_tracker (0.0.4)
31
31
  thread_safe (~> 0.3, >= 0.3.1)
32
32
  diff-lcs (1.2.5)
@@ -33,12 +33,12 @@ module SimpleAction
33
33
  end
34
34
 
35
35
  def transaction=(bool)
36
- @transaction = !!bool
36
+ @@transaction = !!bool
37
37
  end
38
38
 
39
39
  # @return [Boolean]
40
40
  def transaction?
41
- defined?(@transaction) ? @transaction : true
41
+ defined?(@@transaction) ? @@transaction : true
42
42
  end
43
43
 
44
44
  # @return [Hash]
@@ -1,3 +1,3 @@
1
1
  module SimpleAction
2
- VERSION = "2.0.5"
2
+ VERSION = "2.0.6"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_action
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.5
4
+ version: 2.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - brycesenz
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-07-01 00:00:00.000000000 Z
11
+ date: 2021-09-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: simple_params