state_machine-audit_trail 0.1.8 → 0.1.9
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/.travis.yml +3 -3
- data/README.rdoc +6 -0
- data/lib/state_machine/audit_trail/version.rb +1 -1
- data/state_machine-audit_trail.gemspec +3 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 675c68658b85040460238c67a3892d10c6b5d806
|
|
4
|
+
data.tar.gz: d55698a6624c6ac581099191c2bbc92797734a30
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fa3659a644db2bf29a1c7262fe10fe8dacd6295dca16fecb5e760840c2ae60068ded1fe214556c8c425cc2d2aea79d7602451ded7ede6c399adb35fdaab18bd8
|
|
7
|
+
data.tar.gz: bf3a472136d1976fd96dec696ea47c19140e9317e04a4a0fd4921e3deb51f6ae417de22e3af78b45477e5c8998e7453388a06eed216fc3c24d186b2aa6d572f5
|
data/.travis.yml
CHANGED
data/README.rdoc
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
= StateMachine audit trail {<img src="https://travis-ci.org/wvanbergen/state_machine-audit_trail.png" />}[https://travis-ci.org/wvanbergen/state_machine-audit_trail]
|
|
2
2
|
|
|
3
|
+
== Superceded
|
|
4
|
+
This gem has been superceded by {state_machines-audit_trail}[https://github.com/state-machines/state_machines-audit_trail]. For more information, see {the wiki on converting to the new gem.}[https://github.com/state-machines/state_machines-audit_trail/wiki/Converting-from-former-state_machine-audit_trail-to-state_machines-audit_trail].
|
|
5
|
+
|
|
6
|
+
== Deprecated
|
|
7
|
+
This gem is deprecated and no longer maintained due to unmaintained, outdated, and conflicting depdencies.
|
|
8
|
+
|
|
3
9
|
This plugin for the state machine gem (see https://github.com/pluginaweek/state_machine) adds support for keeping an audit trail for any state machine. Having an audit trail gives you a complete history of the state changes in your model. This history allows you to investigate incidents or perform analytics, like: "How long does it take on average to go from state a to state b?", or "What percentage of cases goes from state a to b via state c?"
|
|
4
10
|
|
|
5
11
|
== ORM support
|
|
@@ -14,7 +14,9 @@ Gem::Specification.new do |s|
|
|
|
14
14
|
s.summary = %q{Log transitions on a state machine to support auditing and business process analytics.}
|
|
15
15
|
s.description = %q{Log transitions on a state machine to support auditing and business process analytics.}
|
|
16
16
|
s.license = "MIT"
|
|
17
|
-
|
|
17
|
+
|
|
18
|
+
s.post_install_message = "This gem is deprecated. Please see https://github.com/state-machines/state_machines-audit_trail/wiki/Converting-from-former-state_machine-audit_trail-to-state_machines-audit_trail for instructions on converting to the gem that now maintains this functionality."
|
|
19
|
+
|
|
18
20
|
s.rubyforge_project = "state_machine"
|
|
19
21
|
|
|
20
22
|
s.add_runtime_dependency('state_machine')
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: state_machine-audit_trail
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Willem van Bergen
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2015-03-30 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: state_machine
|
|
@@ -145,7 +145,8 @@ homepage: https://github.com/wvanbergen/state_machine-audit_trail
|
|
|
145
145
|
licenses:
|
|
146
146
|
- MIT
|
|
147
147
|
metadata: {}
|
|
148
|
-
post_install_message:
|
|
148
|
+
post_install_message: This gem is deprecated. Please see https://github.com/state-machines/state_machines-audit_trail/wiki/Converting-from-former-state_machine-audit_trail-to-state_machines-audit_trail
|
|
149
|
+
for instructions on converting to the gem that now maintains this functionality.
|
|
149
150
|
rdoc_options: []
|
|
150
151
|
require_paths:
|
|
151
152
|
- lib
|
|
@@ -161,7 +162,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
161
162
|
version: '0'
|
|
162
163
|
requirements: []
|
|
163
164
|
rubyforge_project: state_machine
|
|
164
|
-
rubygems_version: 2.0.
|
|
165
|
+
rubygems_version: 2.0.14
|
|
165
166
|
signing_key:
|
|
166
167
|
specification_version: 4
|
|
167
168
|
summary: Log transitions on a state machine to support auditing and business process
|
|
@@ -173,4 +174,3 @@ test_files:
|
|
|
173
174
|
- spec/state_machine/active_record_spec.rb
|
|
174
175
|
- spec/state_machine/audit_trail_spec.rb
|
|
175
176
|
- spec/state_machine/mongoid_spec.rb
|
|
176
|
-
has_rdoc:
|