public
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/rails/rails.git
Updated included memcache-client to the 1.5.0.5 version which includes fixes 
from fiveruns and 37signals to deal with failover and timeouts (Joshua Sierles) 
[#1535 state:committed]

Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
dhh (author)
Tue Dec 09 02:13:02 -0800 2008
commit  e54f17920fddebdfa241a5d9253ad5810972af87
tree    9f59954743619e0478c359849905585d150e793e
parent  9adcf951ea7e5342c913dda40594cbb382995e3b
...
1
2
 
 
3
4
5
...
1
2
3
4
5
6
7
0
@@ -1,5 +1,7 @@
0
 *2.3.0 [Edge]*
0
 
0
+* Updated included memcache-client to the 1.5.0.5 version which includes fixes from fiveruns and 37signals to deal with failover and timeouts #1535 [Joshua Sierles]
0
+
0
 * Multibyte: add multibyte-safe Chars#ord rather than falling back to String#ord.  #1483 [Jason Cheow]
0
 
0
 * I18n support for Array#to_sentence. Introduces support.array.words_connector, .two_words_connector, and .last_word_connector translation keys.  #1397 [Akira Matsuda]
...
9
10
11
12
 
13
14
 
15
16
17
...
9
10
11
 
12
13
 
14
15
16
17
0
@@ -9,9 +9,9 @@ end
0
 require 'builder'
0
 
0
 begin
0
-  gem 'memcache-client', '~> 1.5.1'
0
+  gem 'memcache-client', '~> 1.5.0.5'
0
 rescue Gem::LoadError
0
-  $:.unshift "#{File.dirname(__FILE__)}/vendor/memcache-client-1.5.1"
0
+  $:.unshift "#{File.dirname(__FILE__)}/vendor/memcache-client-1.5.0.5"
0
 end
0
 
0
 begin

Comments