acts_as_audited_rails3 1.1.1.5 → 1.1.2

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.1.5
1
+ 1.1.2
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{acts_as_audited_rails3}
8
- s.version = "1.1.1.5"
8
+ s.version = "1.1.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Brandon Keepers"]
12
- s.date = %q{2010-09-16}
12
+ s.date = %q{2010-11-30}
13
13
  s.description = %q{ActiveRecord extension that logs all changes to your models in an audits table description}
14
14
  s.email = %q{brandon@opensoul.org}
15
15
  s.extra_rdoc_files = [
@@ -103,7 +103,7 @@ module CollectiveIdea #:nodoc:
103
103
 
104
104
  after_create :audit_create if !options[:on] || (options[:on] && options[:on].include?(:create))
105
105
  before_update :audit_update if !options[:on] || (options[:on] && options[:on].include?(:update))
106
- after_destroy :audit_destroy if !options[:on] || (options[:on] && options[:on].include?(:destroy))
106
+ before_destroy :audit_destroy if !options[:on] || (options[:on] && options[:on].include?(:destroy))
107
107
 
108
108
  attr_accessor :version
109
109
 
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: acts_as_audited_rails3
3
3
  version: !ruby/object:Gem::Version
4
- hash: 89
4
+ hash: 23
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 1
9
- - 1
10
- - 5
11
- version: 1.1.1.5
9
+ - 2
10
+ version: 1.1.2
12
11
  platform: ruby
13
12
  authors:
14
13
  - Brandon Keepers
@@ -16,7 +15,7 @@ autorequire:
16
15
  bindir: bin
17
16
  cert_chain: []
18
17
 
19
- date: 2010-09-16 00:00:00 -07:00
18
+ date: 2010-11-30 00:00:00 -08:00
20
19
  default_executable:
21
20
  dependencies:
22
21
  - !ruby/object:Gem::Dependency