GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Description: ehcache
Clone URL: git://github.com/dylanz/ehcache.git
small fixes
dylanz (author)
Tue Aug 19 20:44:15 -0700 2008
commit  d587dbc828c5499fb0c28f59735e68b268d5d406
tree    075d228fcf797e83825d2f4c557b19e588d17eaf
parent  cd361bd8afda2fba283624824e01ddc319809025
...
 
 
 
 
 
 
1
2
3
...
1
2
3
4
5
6
7
8
9
0
@@ -1,3 +1,9 @@
0
+== 0.0.3 2008-08-20
0
+* 1 bug fix
0
+ * removed un-needed marshalling
0
+* 1 major enhancement
0
+ * added support for configurable bootstrap cache loader and event listener
0
+
0
 == 0.0.2 2008-06-08
0
 
0
 * 1 bug fix
...
66
67
68
69
 
70
71
72
...
104
105
106
 
107
108
109
...
66
67
68
 
69
70
71
72
...
104
105
106
107
108
109
110
0
@@ -66,7 +66,7 @@ module Ehcache
0
       end
0
 
0
       # creates and sets up cache configurations
0
- def create_cache_configuration(data)
0
+ def create_cache_configuration(cache_name, data)
0
         config = instance_variable_get("@#{cache_name}".intern)
0
         data.each { |k,v|
0
           # included hashes will be event listener factories, exception handler
0
@@ -104,6 +104,7 @@ module Ehcache
0
       def setter(factory, config)
0
         factory = instance_variable_get("@#{factory}".intern)
0
         config.each { |k,v| factory.send("set_#{k.to_s}",v) unless v.is_a?(Hash) }
0
+ end
0
     end
0
   end
0
 end
...
2
3
4
5
 
6
7
8
...
2
3
4
 
5
6
7
8
0
@@ -2,7 +2,7 @@ module Ehcache #:nodoc:
0
   module VERSION #:nodoc:
0
     MAJOR = 0
0
     MINOR = 0
0
- TINY = 2
0
+ TINY = 3
0
 
0
     STRING = [MAJOR, MINOR, TINY].join('.')
0
   end

Comments

    No one has commented yet.