jruby-hazelcast-store 0.2.0 → 0.3.0

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.2.0
1
+ 0.3.0
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{jruby-hazelcast-store}
8
- s.version = "0.2.0"
8
+ s.version = "0.3.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Adam Denenberg"]
@@ -18,7 +18,6 @@ module ActiveSupport
18
18
  end
19
19
 
20
20
  def read_entry(key, options = nil)
21
- super
22
21
  @cache.get(key)
23
22
  rescue CacheException => e
24
23
  logger.error("HazelcastCacheStore Creation Error (#{e}): #{e.message}")
@@ -26,7 +25,6 @@ module ActiveSupport
26
25
  end
27
26
 
28
27
  def write_entry(key, value, options = nil)
29
- super
30
28
  @data.put(key, value, options)
31
29
  true
32
30
  rescue CacheException => e
@@ -35,7 +33,6 @@ module ActiveSupport
35
33
  end
36
34
 
37
35
  def delete_entry(key, options = nil)
38
- super
39
36
  @data.evict(key)
40
37
  rescue CacheException => e
41
38
  logger.error("HazelcastCacheStore Creation Error (#{e}): #{e.message}")
@@ -43,7 +40,6 @@ module ActiveSupport
43
40
  end
44
41
 
45
42
  def keys
46
- super
47
43
  raise "Not supported by HazelcastCacheClient"
48
44
  end
49
45
 
@@ -55,7 +51,6 @@ module ActiveSupport
55
51
  end
56
52
 
57
53
  def delete_matched(matcher, options = nil)
58
- super
59
54
  raise "Not supported by HazelcastCacheClient"
60
55
  end
61
56
 
metadata CHANGED
@@ -4,9 +4,9 @@ version: !ruby/object:Gem::Version
4
4
  prerelease: false
5
5
  segments:
6
6
  - 0
7
- - 2
7
+ - 3
8
8
  - 0
9
- version: 0.2.0
9
+ version: 0.3.0
10
10
  platform: ruby
11
11
  authors:
12
12
  - Adam Denenberg