audited_logfile 0.0.7 → 0.0.8

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.
Files changed (2) hide show
  1. data/lib/audited_logfile.rb +1 -1
  2. metadata +1 -1
@@ -67,7 +67,7 @@ module ActiveRecord
67
67
  alias_method :inherited_orig, :inherited
68
68
 
69
69
  def inherited(subclass)
70
- unless subclass.name.in? AuditedLogfile.skip
70
+ unless AuditedLogfile.skip.include? subclass.name
71
71
  subclass.class_eval %(
72
72
  audited :allow_mass_assignment => true
73
73
  attr_protected :audit_ids
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: audited_logfile
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.7
5
+ version: 0.0.8
6
6
  platform: ruby
7
7
  authors:
8
8
  - Alexander Kiseliov