jruby-memcached 0.5.2 → 0.5.3
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/CHANGELOG.md +23 -0
- data/lib/memcached.rb +1 -1
- data/lib/memcached/version.rb +1 -1
- metadata +2 -2
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,26 @@
|
|
|
1
|
+
## 0.5.3 (Apr 1, 2013)
|
|
2
|
+
|
|
3
|
+
Bugfixes:
|
|
4
|
+
|
|
5
|
+
- use the absolute path to the JAR file
|
|
6
|
+
|
|
7
|
+
## 0.5.2 (Feb 15, 2013)
|
|
8
|
+
|
|
9
|
+
Bugfixes:
|
|
10
|
+
|
|
11
|
+
- do not throw error when get/read cache failed by Memcached::Rails
|
|
12
|
+
|
|
13
|
+
## 0.5.1 (Nov 10, 2012)
|
|
14
|
+
|
|
15
|
+
Bugfixes:
|
|
16
|
+
|
|
17
|
+
- ignore nil value in Memcached options
|
|
18
|
+
|
|
19
|
+
Features:
|
|
20
|
+
|
|
21
|
+
- clean up java code
|
|
22
|
+
- separate slow timeout tests
|
|
23
|
+
|
|
1
24
|
## 0.5.0 (Aug 22, 2012)
|
|
2
25
|
|
|
3
26
|
Bugfixes:
|
data/lib/memcached.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
require 'java'
|
|
2
2
|
require 'memcached/version'
|
|
3
|
-
require File.
|
|
3
|
+
require File.expand_path('../../target/spymemcached-ext-0.0.1.jar', __FILE__)
|
|
4
4
|
require 'com/openfeint/memcached/memcached'
|
|
5
5
|
|
|
6
6
|
class Memcached::Rails
|
data/lib/memcached/version.rb
CHANGED
metadata
CHANGED
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
name: jruby-memcached
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.5.
|
|
5
|
+
version: 0.5.3
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Richard Huang
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
12
|
+
date: 2013-04-01 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rspec
|