mongomapper_plugins 0.0.3 → 0.0.4

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.
@@ -1,19 +1,14 @@
1
1
  module MongoMapper
2
2
  module Plugins
3
3
  module VersionedUpdate
4
- def self.configure(mod)
5
- mod.class_eval {
6
- key :_version, Integer, :default => 1
7
- }
8
- end
9
-
10
4
  module ClassMethods
11
5
  def versioned_update
12
- plugin MongoMapper::Plugins::VersionedUpdate
6
+ include MongoMapper::Plugins::VersionedUpdate::OverriddenMethods
7
+ key :_version, Integer, :default => 1
13
8
  end
14
9
  end
15
10
 
16
- module InstanceMethods
11
+ module OverriddenMethods
17
12
  private
18
13
  def update(options={})
19
14
  version = self._version
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: mongomapper_plugins
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.3
5
+ version: 0.0.4
6
6
  platform: ruby
7
7
  authors:
8
8
  - Andrew Timberlake