mem_mappr 0.0.0.beta1

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/.document ADDED
@@ -0,0 +1,5 @@
1
+ README.rdoc
2
+ lib/**/*.rb
3
+ bin/*
4
+ features/**/*.feature
5
+ LICENSE
data/.gitignore ADDED
@@ -0,0 +1,21 @@
1
+ ## MAC OS
2
+ .DS_Store
3
+
4
+ ## TEXTMATE
5
+ *.tmproj
6
+ tmtags
7
+
8
+ ## EMACS
9
+ *~
10
+ \#*
11
+ .\#*
12
+
13
+ ## VIM
14
+ *.swp
15
+
16
+ ## PROJECT::GENERAL
17
+ coverage
18
+ rdoc
19
+ pkg
20
+
21
+ ## PROJECT::SPECIFIC
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2009 Luke van der Hoeven
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,17 @@
1
+ = mem_mappr
2
+
3
+ Description goes here.
4
+
5
+ == Note on Patches/Pull Requests
6
+
7
+ * Fork the project.
8
+ * Make your feature addition or bug fix.
9
+ * Add tests for it. This is important so I don't break it in a
10
+ future version unintentionally.
11
+ * Commit, do not mess with rakefile, version, or history.
12
+ (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
13
+ * Send me a pull request. Bonus points for topic branches.
14
+
15
+ == Copyright
16
+
17
+ Copyright (c) 2010 Luke van der Hoeven. See LICENSE for details.
data/Rakefile ADDED
@@ -0,0 +1,53 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+
4
+ begin
5
+ require 'jeweler'
6
+ Jeweler::Tasks.new do |gem|
7
+ gem.name = "mem_mappr"
8
+ gem.summary = %Q{Quick and dirty way to memcache ActiveRecord objects}
9
+ gem.description = %Q{This is a simple way to memcache ActiveRecord objects, mostly by serializing them into objects that memcache can understand.}
10
+ gem.email = "hungerandthirst@gmail.com"
11
+ gem.homepage = "http://github.com/plukevdh/mem_mappr"
12
+ gem.authors = ["Luke van der Hoeven"]
13
+ gem.add_development_dependency "memcache-client", ">= 0"
14
+ # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
15
+ end
16
+ Jeweler::GemcutterTasks.new
17
+ rescue LoadError
18
+ puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
19
+ end
20
+
21
+ require 'rake/testtask'
22
+ Rake::TestTask.new(:test) do |test|
23
+ test.libs << 'lib' << 'test'
24
+ test.pattern = 'test/**/test_*.rb'
25
+ test.verbose = true
26
+ end
27
+
28
+ begin
29
+ require 'rcov/rcovtask'
30
+ Rcov::RcovTask.new do |test|
31
+ test.libs << 'test'
32
+ test.pattern = 'test/**/test_*.rb'
33
+ test.verbose = true
34
+ end
35
+ rescue LoadError
36
+ task :rcov do
37
+ abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
38
+ end
39
+ end
40
+
41
+ task :test => :check_dependencies
42
+
43
+ task :default => :test
44
+
45
+ require 'rake/rdoctask'
46
+ Rake::RDocTask.new do |rdoc|
47
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
48
+
49
+ rdoc.rdoc_dir = 'rdoc'
50
+ rdoc.title = "mem_mappr #{version}"
51
+ rdoc.rdoc_files.include('README*')
52
+ rdoc.rdoc_files.include('lib/**/*.rb')
53
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.0.beta1
data/cli.rb ADDED
File without changes
@@ -0,0 +1,3 @@
1
+ defaults:
2
+ servers: ['itwebpriv1.hargray.org:11211']
3
+
data/init.rb ADDED
@@ -0,0 +1,15 @@
1
+ begin
2
+ require 'memcache'
3
+ rescue LoadError
4
+ end
5
+
6
+ unless File.exists? config_file = File.join(RAILS_ENV, 'config', 'memcache.yml')
7
+ error = "Looks like you don't have a config file. Please add one to the Rails.root/config folder before continuing."
8
+ puts error
9
+ Rails.logger.info error
10
+ exit!
11
+ end
12
+
13
+ MemMappr.config = YAML.load_file(config_file)
14
+
15
+
@@ -0,0 +1,13 @@
1
+ module MemMappr
2
+ module Config
3
+ def set(options)
4
+ return CACHE if Object.const_defined?(:CACHE)
5
+
6
+ silence_warnings do
7
+ Object.const_set :CACHE, MemCache.new(options['servers'])
8
+ end
9
+
10
+ CACHE
11
+ end
12
+ end
13
+ end
data/lib/mem_mappr.rb ADDED
@@ -0,0 +1,43 @@
1
+ require 'mem_mappr/config'
2
+
3
+ module MemMappr
4
+ @@config = {}
5
+ mattr_reader :config
6
+
7
+ class << self
8
+
9
+ def config=(options)
10
+ @@config = Config.set(options)
11
+ end
12
+
13
+ def map(name, object)
14
+ CACHE.set name, srlz(object)
15
+ end
16
+
17
+ def unmap(name)
18
+ data = CACHE.get name
19
+ object = de_srlz(data)
20
+ end
21
+
22
+ def map_array(name, objects)
23
+ CACHE.set = name, objects.map{|obj| srlz(obj)}
24
+ end
25
+
26
+ def unmap_array(name)
27
+ data = CACHE.get name
28
+ object_array = []
29
+ data.each do |object|
30
+ object_array << de_srlz(object)
31
+ end
32
+
33
+ object_array
34
+ end
35
+
36
+ def srlz(data)
37
+ {:class => data.class, :data => data.attributes}
38
+ end
39
+
40
+ def de_srlz(data)
41
+ eval("#{data[:class]}.new(#{data[:data]})"
42
+ end
43
+ end
data/mem_mappr.gemspec ADDED
@@ -0,0 +1,58 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{mem_mappr}
8
+ s.version = "0.0.0.beta1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Luke van der Hoeven"]
12
+ s.date = %q{2010-06-09}
13
+ s.description = %q{This is a simple way to memcache ActiveRecord objects, mostly by serializing them into objects that memcache can understand.}
14
+ s.email = %q{hungerandthirst@gmail.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README.rdoc"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ ".gitignore",
22
+ "LICENSE",
23
+ "README.rdoc",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "cli.rb",
27
+ "defaults/memcache.yml",
28
+ "init.rb",
29
+ "lib/mem_mappr.rb",
30
+ "lib/mem_mappr/config.rb",
31
+ "mem_mappr.gemspec",
32
+ "test/helper.rb",
33
+ "test/test_mem_mappr.rb"
34
+ ]
35
+ s.homepage = %q{http://github.com/plukevdh/mem_mappr}
36
+ s.rdoc_options = ["--charset=UTF-8"]
37
+ s.require_paths = ["lib"]
38
+ s.rubygems_version = %q{1.3.6}
39
+ s.summary = %q{Quick and dirty way to memcache ActiveRecord objects}
40
+ s.test_files = [
41
+ "test/helper.rb",
42
+ "test/test_mem_mappr.rb"
43
+ ]
44
+
45
+ if s.respond_to? :specification_version then
46
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
47
+ s.specification_version = 3
48
+
49
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
50
+ s.add_development_dependency(%q<memcache-client>, [">= 0"])
51
+ else
52
+ s.add_dependency(%q<memcache-client>, [">= 0"])
53
+ end
54
+ else
55
+ s.add_dependency(%q<memcache-client>, [">= 0"])
56
+ end
57
+ end
58
+
data/test/helper.rb ADDED
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ require 'test/unit'
3
+ require 'shoulda'
4
+
5
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
6
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
7
+ require 'mem_mappr'
8
+
9
+ class Test::Unit::TestCase
10
+ end
@@ -0,0 +1,7 @@
1
+ require 'helper'
2
+
3
+ class TestMemMappr < Test::Unit::TestCase
4
+ should "probably rename this file and start testing for real" do
5
+ flunk "hey buddy, you should probably rename this file and start testing for real"
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,91 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mem_mappr
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: true
5
+ segments:
6
+ - 0
7
+ - 0
8
+ - 0
9
+ - beta1
10
+ version: 0.0.0.beta1
11
+ platform: ruby
12
+ authors:
13
+ - Luke van der Hoeven
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2010-06-09 00:00:00 -04:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ name: memcache-client
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ segments:
29
+ - 0
30
+ version: "0"
31
+ type: :development
32
+ version_requirements: *id001
33
+ description: This is a simple way to memcache ActiveRecord objects, mostly by serializing them into objects that memcache can understand.
34
+ email: hungerandthirst@gmail.com
35
+ executables: []
36
+
37
+ extensions: []
38
+
39
+ extra_rdoc_files:
40
+ - LICENSE
41
+ - README.rdoc
42
+ files:
43
+ - .document
44
+ - .gitignore
45
+ - LICENSE
46
+ - README.rdoc
47
+ - Rakefile
48
+ - VERSION
49
+ - cli.rb
50
+ - defaults/memcache.yml
51
+ - init.rb
52
+ - lib/mem_mappr.rb
53
+ - lib/mem_mappr/config.rb
54
+ - mem_mappr.gemspec
55
+ - test/helper.rb
56
+ - test/test_mem_mappr.rb
57
+ has_rdoc: true
58
+ homepage: http://github.com/plukevdh/mem_mappr
59
+ licenses: []
60
+
61
+ post_install_message:
62
+ rdoc_options:
63
+ - --charset=UTF-8
64
+ require_paths:
65
+ - lib
66
+ required_ruby_version: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ segments:
71
+ - 0
72
+ version: "0"
73
+ required_rubygems_version: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - ">"
76
+ - !ruby/object:Gem::Version
77
+ segments:
78
+ - 1
79
+ - 3
80
+ - 1
81
+ version: 1.3.1
82
+ requirements: []
83
+
84
+ rubyforge_project:
85
+ rubygems_version: 1.3.6
86
+ signing_key:
87
+ specification_version: 3
88
+ summary: Quick and dirty way to memcache ActiveRecord objects
89
+ test_files:
90
+ - test/helper.rb
91
+ - test/test_mem_mappr.rb