ar-simple-idmap 0.1.1 → 0.1.2

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.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.1
1
+ 0.1.2
@@ -17,12 +17,12 @@ module ActionController
17
17
 
18
18
  module ClassMethods
19
19
  def use_identity_map(*args)
20
- skip_around_filter :without_identity_map, *args
20
+ skip_filter :without_identity_map, *args
21
21
  around_filter :with_identity_map, *args
22
22
  end
23
23
 
24
24
  def dont_use_identity_map(*args)
25
- skip_around_filter :with_identity_map, *args
25
+ skip_filter :with_identity_map, *args
26
26
  around_filter :without_identity_map, *args
27
27
  end
28
28
 
@@ -60,4 +60,4 @@ if defined? ::ActionDispatch
60
60
  else
61
61
  ActionController::Dispatcher.send :include, DispatcherMethods
62
62
  RAILS_DEFAULT_LOGGER.warn "CACHING OBJECTS"
63
- end
63
+ end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ar-simple-idmap
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 31
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 1
10
- version: 0.1.1
9
+ - 2
10
+ version: 0.1.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Sokolov Yura aka funny_falcon