AdoccaMemcache 0.1.1 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -5,7 +5,6 @@ Rakefile
5
5
  bin/adocca_memcache
6
6
  lib/adocca_memcache.rb
7
7
  lib/am_memcache.rb
8
- lib/am_action_view.rb
9
8
  lib/am_caching.rb
10
9
  lib/am_memcache_store.rb
11
10
  lib/am_memcache_memoize.rb
data/README.txt CHANGED
@@ -6,6 +6,13 @@ AdoccaMemcache
6
6
 
7
7
  A client library to simplify usage of memcached within Ruby on Rails projects.
8
8
 
9
+ Based on memcache-client by <a href="http://dev.robotcoop.com/">robotcoop</a>. We started out with
10
+ their code, but ended up with an almost complete rewrite after having added code
11
+ for our own needs and requirements.
12
+
13
+ Apologies for not doing proper contributions to their project instead of building our own, but
14
+ we are limited by commercial requirements rather than open source idealism.
15
+
9
16
  == FEATURES/PROBLEMS:
10
17
 
11
18
  * FIX (list of features or problems)
@@ -24,17 +31,25 @@ A client library to simplify usage of memcached within Ruby on Rails projects.
24
31
 
25
32
  == LICENSE:
26
33
 
27
- This program is free software; you can redistribute it and/or
28
- modify it under the terms of the GNU General Public License
29
- as published by the Free Software Foundation; either version 2
30
- of the License, or (at your option) any later version.
34
+ (The MIT License)
35
+
36
+ Copyright (c) 2006 Albert Ramstedt, Adocca AB
31
37
 
32
- This program is distributed in the hope that it will be useful,
33
- but WITHOUT ANY WARRANTY; without even the implied warranty of
34
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
35
- GNU General Public License for more details.
38
+ Permission is hereby granted, free of charge, to any person obtaining
39
+ a copy of this software and associated documentation files (the
40
+ 'Software'), to deal in the Software without restriction, including
41
+ without limitation the rights to use, copy, modify, merge, publish,
42
+ distribute, sublicense, and/or sell copies of the Software, and to
43
+ permit persons to whom the Software is furnished to do so, subject to
44
+ the following conditions:
36
45
 
37
- You should have received a copy of the GNU General Public License
38
- along with this program; if not, write to the Free Software
39
- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
46
+ The above copyright notice and this permission notice shall be
47
+ included in all copies or substantial portions of the Software.
40
48
 
49
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
50
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
51
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
52
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
53
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
54
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
55
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile CHANGED
@@ -4,8 +4,9 @@ require 'rubygems'
4
4
  require 'hoe'
5
5
  require './lib/adocca_memcache.rb'
6
6
 
7
- Hoe.new('AdoccaMemcache', '0.1.1') do |p|
7
+ Hoe.new('AdoccaMemcache', '0.1.3') do |p|
8
8
  p.rubyforge_name = 'adocca-plugins'
9
+ p.author = 'adocca Entertainment AB'
9
10
  p.summary = 'A client library to simplify using memcached with Ruby on Rails projects.'
10
11
  p.description = p.paragraphs_of('README.txt', 2..5).join("\n\n")
11
12
  p.url = p.paragraphs_of('README.txt', 0).first.split(/\n/)[1..-1]
@@ -3,7 +3,6 @@
3
3
  $: << File.dirname(__FILE__)
4
4
 
5
5
  require_gem 'rails'
6
- require 'am_action_view.rb'
7
6
  require 'am_memcache.rb'
8
7
  require 'am_memcache_store.rb'
9
8
  require 'am_caching.rb'
metadata CHANGED
@@ -3,15 +3,15 @@ rubygems_version: 0.8.11
3
3
  specification_version: 1
4
4
  name: AdoccaMemcache
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.1.1
7
- date: 2006-11-16 00:00:00 +01:00
6
+ version: 0.1.3
7
+ date: 2006-12-22 00:00:00 +01:00
8
8
  summary: A client library to simplify using memcached with Ruby on Rails projects.
9
9
  require_paths:
10
10
  - lib
11
11
  email: ryand-ruby@zenspider.com
12
12
  homepage: " by Adocca AB"
13
13
  rubyforge_project: adocca-plugins
14
- description: "== FEATURES/PROBLEMS: * FIX (list of features or problems) == SYNOPSYS: FIX (code sample of usage) == REQUIREMENTS:"
14
+ description: "Based on memcache-client by <a href=\"http://dev.robotcoop.com/\">robotcoop</a>. We started out with their code, but ended up with an almost complete rewrite after having added code for our own needs and requirements. Apologies for not doing proper contributions to their project instead of building our own, but we are limited by commercial requirements rather than open source idealism. == FEATURES/PROBLEMS: * FIX (list of features or problems) == SYNOPSYS:"
15
15
  autorequire:
16
16
  default_executable:
17
17
  bindir: bin
@@ -26,7 +26,7 @@ platform: ruby
26
26
  signing_key:
27
27
  cert_chain:
28
28
  authors:
29
- - Ryan Davis
29
+ - adocca Entertainment AB
30
30
  files:
31
31
  - History.txt
32
32
  - Manifest.txt
@@ -35,7 +35,6 @@ files:
35
35
  - bin/adocca_memcache
36
36
  - lib/adocca_memcache.rb
37
37
  - lib/am_memcache.rb
38
- - lib/am_action_view.rb
39
38
  - lib/am_caching.rb
40
39
  - lib/am_memcache_store.rb
41
40
  - lib/am_memcache_memoize.rb
@@ -1,6 +0,0 @@
1
- # Customized the Rails own error handling
2
- ActionView::Base.field_error_proc = Proc.new do |html_tag, instance|
3
- msg = instance.error_message
4
- title = msg.kind_of?(Array) ? '* ' + msg.join("\n* ") : msg
5
- "<span class=\"field-with-errors\">#{html_tag}</span>"
6
- end