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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1d5ee2c13387ab1270a616717c204ceddd3e0cff
4
- data.tar.gz: 1134c034ff9a27b4f2954cfd27ec5950fc364c7f
3
+ metadata.gz: 675c68658b85040460238c67a3892d10c6b5d806
4
+ data.tar.gz: d55698a6624c6ac581099191c2bbc92797734a30
5
5
  SHA512:
6
- metadata.gz: 220617450fd6439a7decddafc0dffc4ca2a1fd3ef0a1cb10d1d60400e710bc318c2153e64cd06049b5e38e39ebbfc5955507c61ce96bfb75875e17025b43bd74
7
- data.tar.gz: 2e8c5702276277406e7031be5df9e538fd502fec261dd7941ff10145cfdf2179ccb04756a55c645043a27c541ad7e5b11f8f5a2a9dccd962830759b9f42a6cae
6
+ metadata.gz: fa3659a644db2bf29a1c7262fe10fe8dacd6295dca16fecb5e760840c2ae60068ded1fe214556c8c425cc2d2aea79d7602451ded7ede6c399adb35fdaab18bd8
7
+ data.tar.gz: bf3a472136d1976fd96dec696ea47c19140e9317e04a4a0fd4921e3deb51f6ae417de22e3af78b45477e5c8998e7453388a06eed216fc3c24d186b2aa6d572f5
@@ -2,11 +2,11 @@ language: ruby
2
2
  script: bundle exec rake
3
3
  services: mongodb
4
4
  rvm:
5
- - 1.8.7
6
5
  - 1.9.3
7
6
  - 2.0.0
8
- - ree
7
+ - 2.1.1
9
8
  - ruby-head
10
9
  matrix:
11
10
  allow_failures:
12
- - rvm: ruby-head
11
+ - rvm: ruby-head
12
+ sudo: false
@@ -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
@@ -1,5 +1,5 @@
1
1
  module StateMachine
2
2
  module AuditTrail
3
- VERSION = "0.1.8"
3
+ VERSION = "0.1.9"
4
4
  end
5
5
  end
@@ -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.8
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: 2014-03-10 00:00:00.000000000 Z
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.3
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: