gemfire-jruby 0.0.1
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 +5 -0
- data/.gitignore +23 -0
- data/LICENSE +20 -0
- data/README.rdoc +17 -0
- data/Rakefile +52 -0
- data/VERSION +1 -0
- data/doc/classes/ActiveSupport.html +111 -0
- data/doc/classes/ActiveSupport/Cache.html +111 -0
- data/doc/classes/ActiveSupport/Cache/GemFire.html +373 -0
- data/doc/classes/ActiveSupport/Cache/GemFire.src/M000001.html +18 -0
- data/doc/classes/ActiveSupport/Cache/GemFire.src/M000002.html +27 -0
- data/doc/classes/ActiveSupport/Cache/GemFire.src/M000003.html +22 -0
- data/doc/classes/ActiveSupport/Cache/GemFire.src/M000004.html +23 -0
- data/doc/classes/ActiveSupport/Cache/GemFire.src/M000005.html +22 -0
- data/doc/classes/ActiveSupport/Cache/GemFire.src/M000006.html +18 -0
- data/doc/classes/ActiveSupport/Cache/GemFire.src/M000007.html +19 -0
- data/doc/classes/ActiveSupport/Cache/GemFire.src/M000008.html +23 -0
- data/doc/classes/ActiveSupport/Cache/GemFire.src/M000009.html +18 -0
- data/doc/classes/ActiveSupport/Cache/GemFire.src/M000010.html +18 -0
- data/doc/classes/ActiveSupport/Cache/GemFire.src/M000011.html +18 -0
- data/doc/classes/ActiveSupport/Cache/GemFire/CacheException.html +111 -0
- data/doc/created.rid +1 -0
- data/doc/files/lib/gemfire-jruby_rb.html +115 -0
- data/doc/fr_class_index.html +30 -0
- data/doc/fr_file_index.html +27 -0
- data/doc/fr_method_index.html +37 -0
- data/doc/index.html +24 -0
- data/doc/rdoc-style.css +208 -0
- data/gemfire-jruby-demo/README +243 -0
- data/gemfire-jruby-demo/Rakefile +10 -0
- data/gemfire-jruby-demo/app/controllers/application_controller.rb +14 -0
- data/gemfire-jruby-demo/app/helpers/application_helper.rb +3 -0
- data/gemfire-jruby-demo/cache.xml +8 -0
- data/gemfire-jruby-demo/config/boot.rb +110 -0
- data/gemfire-jruby-demo/config/database.yml +22 -0
- data/gemfire-jruby-demo/config/environment.rb +42 -0
- data/gemfire-jruby-demo/config/environments/development.rb +17 -0
- data/gemfire-jruby-demo/config/environments/production.rb +28 -0
- data/gemfire-jruby-demo/config/environments/test.rb +28 -0
- data/gemfire-jruby-demo/config/initializers/backtrace_silencers.rb +7 -0
- data/gemfire-jruby-demo/config/initializers/inflections.rb +10 -0
- data/gemfire-jruby-demo/config/initializers/mime_types.rb +5 -0
- data/gemfire-jruby-demo/config/initializers/new_rails_defaults.rb +21 -0
- data/gemfire-jruby-demo/config/initializers/session_store.rb +19 -0
- data/gemfire-jruby-demo/config/locales/en.yml +5 -0
- data/gemfire-jruby-demo/config/routes.rb +43 -0
- data/gemfire-jruby-demo/db/seeds.rb +7 -0
- data/gemfire-jruby-demo/doc/README_FOR_APP +2 -0
- data/gemfire-jruby-demo/log/development.log +24 -0
- data/gemfire-jruby-demo/log/production.log +0 -0
- data/gemfire-jruby-demo/log/server.log +0 -0
- data/gemfire-jruby-demo/log/test.log +0 -0
- data/gemfire-jruby-demo/public/404.html +30 -0
- data/gemfire-jruby-demo/public/422.html +30 -0
- data/gemfire-jruby-demo/public/500.html +30 -0
- data/gemfire-jruby-demo/public/favicon.ico +0 -0
- data/gemfire-jruby-demo/public/images/rails.png +0 -0
- data/gemfire-jruby-demo/public/index.html +275 -0
- data/gemfire-jruby-demo/public/javascripts/application.js +2 -0
- data/gemfire-jruby-demo/public/javascripts/controls.js +963 -0
- data/gemfire-jruby-demo/public/javascripts/dragdrop.js +973 -0
- data/gemfire-jruby-demo/public/javascripts/effects.js +1128 -0
- data/gemfire-jruby-demo/public/javascripts/prototype.js +4320 -0
- data/gemfire-jruby-demo/public/robots.txt +5 -0
- data/gemfire-jruby-demo/script/about +4 -0
- data/gemfire-jruby-demo/script/console +3 -0
- data/gemfire-jruby-demo/script/dbconsole +3 -0
- data/gemfire-jruby-demo/script/destroy +3 -0
- data/gemfire-jruby-demo/script/generate +3 -0
- data/gemfire-jruby-demo/script/performance/benchmarker +3 -0
- data/gemfire-jruby-demo/script/performance/profiler +3 -0
- data/gemfire-jruby-demo/script/plugin +3 -0
- data/gemfire-jruby-demo/script/runner +3 -0
- data/gemfire-jruby-demo/script/server +3 -0
- data/gemfire-jruby-demo/test/performance/browsing_test.rb +9 -0
- data/gemfire-jruby-demo/test/test_helper.rb +38 -0
- data/gemfire-jruby.gemspec +125 -0
- data/lib/gemfire-jruby.rb +108 -0
- data/test/helper.rb +10 -0
- data/test/test_gemfire-jruby.rb +7 -0
- metadata +146 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
ENV["RAILS_ENV"] = "test"
|
|
2
|
+
require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
|
|
3
|
+
require 'test_help'
|
|
4
|
+
|
|
5
|
+
class ActiveSupport::TestCase
|
|
6
|
+
# Transactional fixtures accelerate your tests by wrapping each test method
|
|
7
|
+
# in a transaction that's rolled back on completion. This ensures that the
|
|
8
|
+
# test database remains unchanged so your fixtures don't have to be reloaded
|
|
9
|
+
# between every test method. Fewer database queries means faster tests.
|
|
10
|
+
#
|
|
11
|
+
# Read Mike Clark's excellent walkthrough at
|
|
12
|
+
# http://clarkware.com/cgi/blosxom/2005/10/24#Rails10FastTesting
|
|
13
|
+
#
|
|
14
|
+
# Every Active Record database supports transactions except MyISAM tables
|
|
15
|
+
# in MySQL. Turn off transactional fixtures in this case; however, if you
|
|
16
|
+
# don't care one way or the other, switching from MyISAM to InnoDB tables
|
|
17
|
+
# is recommended.
|
|
18
|
+
#
|
|
19
|
+
# The only drawback to using transactional fixtures is when you actually
|
|
20
|
+
# need to test transactions. Since your test is bracketed by a transaction,
|
|
21
|
+
# any transactions started in your code will be automatically rolled back.
|
|
22
|
+
self.use_transactional_fixtures = true
|
|
23
|
+
|
|
24
|
+
# Instantiated fixtures are slow, but give you @david where otherwise you
|
|
25
|
+
# would need people(:david). If you don't want to migrate your existing
|
|
26
|
+
# test cases which use the @david style and don't mind the speed hit (each
|
|
27
|
+
# instantiated fixtures translates to a database query per test method),
|
|
28
|
+
# then set this back to true.
|
|
29
|
+
self.use_instantiated_fixtures = false
|
|
30
|
+
|
|
31
|
+
# Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
|
|
32
|
+
#
|
|
33
|
+
# Note: You'll currently still have to declare fixtures explicitly in integration tests
|
|
34
|
+
# -- they do not yet inherit this setting
|
|
35
|
+
fixtures :all
|
|
36
|
+
|
|
37
|
+
# Add more helper methods to be used by all tests here...
|
|
38
|
+
end
|
|
@@ -0,0 +1,125 @@
|
|
|
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{gemfire-jruby}
|
|
8
|
+
s.version = "0.0.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Alan McKean"]
|
|
12
|
+
s.date = %q{2010-01-27}
|
|
13
|
+
s.description = %q{"Uses Memcached API"}
|
|
14
|
+
s.email = %q{alan.mckean@gemstone.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
|
+
"doc/classes/ActiveSupport.html",
|
|
27
|
+
"doc/classes/ActiveSupport/Cache.html",
|
|
28
|
+
"doc/classes/ActiveSupport/Cache/GemFire.html",
|
|
29
|
+
"doc/classes/ActiveSupport/Cache/GemFire.src/M000001.html",
|
|
30
|
+
"doc/classes/ActiveSupport/Cache/GemFire.src/M000002.html",
|
|
31
|
+
"doc/classes/ActiveSupport/Cache/GemFire.src/M000003.html",
|
|
32
|
+
"doc/classes/ActiveSupport/Cache/GemFire.src/M000004.html",
|
|
33
|
+
"doc/classes/ActiveSupport/Cache/GemFire.src/M000005.html",
|
|
34
|
+
"doc/classes/ActiveSupport/Cache/GemFire.src/M000006.html",
|
|
35
|
+
"doc/classes/ActiveSupport/Cache/GemFire.src/M000007.html",
|
|
36
|
+
"doc/classes/ActiveSupport/Cache/GemFire.src/M000008.html",
|
|
37
|
+
"doc/classes/ActiveSupport/Cache/GemFire.src/M000009.html",
|
|
38
|
+
"doc/classes/ActiveSupport/Cache/GemFire.src/M000010.html",
|
|
39
|
+
"doc/classes/ActiveSupport/Cache/GemFire.src/M000011.html",
|
|
40
|
+
"doc/classes/ActiveSupport/Cache/GemFire/CacheException.html",
|
|
41
|
+
"doc/created.rid",
|
|
42
|
+
"doc/files/lib/gemfire-jruby_rb.html",
|
|
43
|
+
"doc/fr_class_index.html",
|
|
44
|
+
"doc/fr_file_index.html",
|
|
45
|
+
"doc/fr_method_index.html",
|
|
46
|
+
"doc/index.html",
|
|
47
|
+
"doc/rdoc-style.css",
|
|
48
|
+
"gemfire-jruby-0.0.1.gem",
|
|
49
|
+
"gemfire-jruby-demo/README",
|
|
50
|
+
"gemfire-jruby-demo/Rakefile",
|
|
51
|
+
"gemfire-jruby-demo/app/controllers/application_controller.rb",
|
|
52
|
+
"gemfire-jruby-demo/app/helpers/application_helper.rb",
|
|
53
|
+
"gemfire-jruby-demo/cache.xml",
|
|
54
|
+
"gemfire-jruby-demo/config/boot.rb",
|
|
55
|
+
"gemfire-jruby-demo/config/database.yml",
|
|
56
|
+
"gemfire-jruby-demo/config/environment.rb",
|
|
57
|
+
"gemfire-jruby-demo/config/environments/development.rb",
|
|
58
|
+
"gemfire-jruby-demo/config/environments/production.rb",
|
|
59
|
+
"gemfire-jruby-demo/config/environments/test.rb",
|
|
60
|
+
"gemfire-jruby-demo/config/initializers/backtrace_silencers.rb",
|
|
61
|
+
"gemfire-jruby-demo/config/initializers/inflections.rb",
|
|
62
|
+
"gemfire-jruby-demo/config/initializers/mime_types.rb",
|
|
63
|
+
"gemfire-jruby-demo/config/initializers/new_rails_defaults.rb",
|
|
64
|
+
"gemfire-jruby-demo/config/initializers/session_store.rb",
|
|
65
|
+
"gemfire-jruby-demo/config/locales/en.yml",
|
|
66
|
+
"gemfire-jruby-demo/config/routes.rb",
|
|
67
|
+
"gemfire-jruby-demo/db/seeds.rb",
|
|
68
|
+
"gemfire-jruby-demo/doc/README_FOR_APP",
|
|
69
|
+
"gemfire-jruby-demo/log/development.log",
|
|
70
|
+
"gemfire-jruby-demo/log/production.log",
|
|
71
|
+
"gemfire-jruby-demo/log/server.log",
|
|
72
|
+
"gemfire-jruby-demo/log/test.log",
|
|
73
|
+
"gemfire-jruby-demo/public/404.html",
|
|
74
|
+
"gemfire-jruby-demo/public/422.html",
|
|
75
|
+
"gemfire-jruby-demo/public/500.html",
|
|
76
|
+
"gemfire-jruby-demo/public/favicon.ico",
|
|
77
|
+
"gemfire-jruby-demo/public/images/rails.png",
|
|
78
|
+
"gemfire-jruby-demo/public/index.html",
|
|
79
|
+
"gemfire-jruby-demo/public/javascripts/application.js",
|
|
80
|
+
"gemfire-jruby-demo/public/javascripts/controls.js",
|
|
81
|
+
"gemfire-jruby-demo/public/javascripts/dragdrop.js",
|
|
82
|
+
"gemfire-jruby-demo/public/javascripts/effects.js",
|
|
83
|
+
"gemfire-jruby-demo/public/javascripts/prototype.js",
|
|
84
|
+
"gemfire-jruby-demo/public/robots.txt",
|
|
85
|
+
"gemfire-jruby-demo/script/about",
|
|
86
|
+
"gemfire-jruby-demo/script/console",
|
|
87
|
+
"gemfire-jruby-demo/script/dbconsole",
|
|
88
|
+
"gemfire-jruby-demo/script/destroy",
|
|
89
|
+
"gemfire-jruby-demo/script/generate",
|
|
90
|
+
"gemfire-jruby-demo/script/performance/benchmarker",
|
|
91
|
+
"gemfire-jruby-demo/script/performance/profiler",
|
|
92
|
+
"gemfire-jruby-demo/script/plugin",
|
|
93
|
+
"gemfire-jruby-demo/script/runner",
|
|
94
|
+
"gemfire-jruby-demo/script/server",
|
|
95
|
+
"gemfire-jruby-demo/test/performance/browsing_test.rb",
|
|
96
|
+
"gemfire-jruby-demo/test/test_helper.rb",
|
|
97
|
+
"gemfire-jruby.gemspec",
|
|
98
|
+
"lib/gemfire-jruby.rb",
|
|
99
|
+
"test/helper.rb",
|
|
100
|
+
"test/test_gemfire-jruby.rb"
|
|
101
|
+
]
|
|
102
|
+
s.homepage = %q{http://github.com/amckean/gemfire-jruby}
|
|
103
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
104
|
+
s.require_paths = ["lib"]
|
|
105
|
+
s.rubygems_version = %q{1.3.5}
|
|
106
|
+
s.summary = %q{"GemFire Rails Caching API for JRuby"}
|
|
107
|
+
s.test_files = [
|
|
108
|
+
"test/helper.rb",
|
|
109
|
+
"test/test_gemfire-jruby.rb"
|
|
110
|
+
]
|
|
111
|
+
|
|
112
|
+
if s.respond_to? :specification_version then
|
|
113
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
114
|
+
s.specification_version = 3
|
|
115
|
+
|
|
116
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
117
|
+
s.add_runtime_dependency(%q<activesupport>, [">= 0"])
|
|
118
|
+
else
|
|
119
|
+
s.add_dependency(%q<activesupport>, [">= 0"])
|
|
120
|
+
end
|
|
121
|
+
else
|
|
122
|
+
s.add_dependency(%q<activesupport>, [">= 0"])
|
|
123
|
+
end
|
|
124
|
+
end
|
|
125
|
+
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
require 'activesupport'
|
|
2
|
+
|
|
3
|
+
import java.lang.System
|
|
4
|
+
import java.util.Properties
|
|
5
|
+
import com.gemstone.gemfire.distributed.DistributedSystem
|
|
6
|
+
import com.gemstone.gemfire.cache.CacheFactory
|
|
7
|
+
import com.gemstone.gemfire.cache.AttributesFactory
|
|
8
|
+
|
|
9
|
+
include Java
|
|
10
|
+
|
|
11
|
+
module ActiveSupport
|
|
12
|
+
module Cache
|
|
13
|
+
# ActiveSupport::Cache::GemFire creates a Singleton object that provides access to a GemFire cache.
|
|
14
|
+
class GemFire < Store
|
|
15
|
+
class << self; attr_accessor :instance; end
|
|
16
|
+
|
|
17
|
+
class CacheException < StandardError; end
|
|
18
|
+
|
|
19
|
+
private_class_method :new
|
|
20
|
+
|
|
21
|
+
# GemFire is a Singleton. new() is hidden, so use getInstance() to both create the GemFire instance and to launch GemFire.
|
|
22
|
+
# There is an optional Hash that you can use to override any GemFire properties'.
|
|
23
|
+
# For example, GemFire.getInstance('locators' => 'localhost[10355]', 'mcast-port' => '0')
|
|
24
|
+
# Since it is a Singleton, successive calls to GemFire.getInstance() will return the single
|
|
25
|
+
# instance that was instantiated by the first call.
|
|
26
|
+
def GemFire.getInstance(hashOfGemFireProperties)
|
|
27
|
+
self.instance ||= new(hashOfGemFireProperties={})
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
def initialize(hashOfGemFireProperties)
|
|
31
|
+
properties = Properties.new
|
|
32
|
+
hashOfGemFireProperties.each do |key, value|
|
|
33
|
+
properties.setProperty(key, value)
|
|
34
|
+
end
|
|
35
|
+
system = DistributedSystem.connect(properties)
|
|
36
|
+
cache = CacheFactory.create(system)
|
|
37
|
+
@region = cache.getRegion(System.getProperty("cachingRegionName") || "default")
|
|
38
|
+
rescue CacheException => e
|
|
39
|
+
logger.error("GemfireCache Creation Error (#{e}): #{e.message}")
|
|
40
|
+
false
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
# Read a value from the GemFire cache. _key_ can be any JRuby object. Returns the value stored at _key_.
|
|
44
|
+
def read(key)
|
|
45
|
+
super
|
|
46
|
+
@region.get(key)
|
|
47
|
+
rescue CacheException => e
|
|
48
|
+
logger.error("GemfireCache Error (#{e}): #{e.message}")
|
|
49
|
+
false
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
# Write a value to the GemFire cache. _key_ is used to read the value from the cache and can be any JRuby object. Returns the value that was stored at _key_.
|
|
53
|
+
def write(key, value)
|
|
54
|
+
super
|
|
55
|
+
@region.put(key, value)
|
|
56
|
+
true
|
|
57
|
+
rescue CacheException => e
|
|
58
|
+
logger.error("GemfireCache Error (#{e}): #{e.message}")
|
|
59
|
+
false
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
# Delete the entry stored in the GemFire cache at _key_. _key_ can be any JRuby object. Returns the value that was deleted.
|
|
63
|
+
def delete(key)
|
|
64
|
+
super
|
|
65
|
+
@region.destroy(key)
|
|
66
|
+
rescue CacheException => e
|
|
67
|
+
logger.error("GemfireCache Error (#{e}): #{e.message}")
|
|
68
|
+
false
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
# Fetch all of the keys currently in the GemFire cache. Returns a JRuby Array of JRuby objects.
|
|
72
|
+
def keys
|
|
73
|
+
@region.keys.to_a
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
# Check if there is an entry accessible by _key_ in the GemFire cache. Returns a boolean.
|
|
77
|
+
def exist?(key)
|
|
78
|
+
super
|
|
79
|
+
@region.containsKeyOnServer(key)
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
# Delete all entries (key=>value pairs) from the GemFire cache. Returns a JRuby Hash.
|
|
83
|
+
def clear
|
|
84
|
+
super
|
|
85
|
+
@region.clear
|
|
86
|
+
true
|
|
87
|
+
rescue CacheException => e
|
|
88
|
+
logger.error("GemfireCache Error (#{e}): #{e.message}")
|
|
89
|
+
false
|
|
90
|
+
end
|
|
91
|
+
|
|
92
|
+
# Not implemented by GemFire. Raises an exception when called.
|
|
93
|
+
def increment(key)
|
|
94
|
+
raise "Not supported by Gemfire"
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
# Not implemented by GemFire. Raises an exception when called.
|
|
98
|
+
def decrement(key)
|
|
99
|
+
raise "Not supported by Gemfire"
|
|
100
|
+
end
|
|
101
|
+
|
|
102
|
+
# Not implemented by GemFire. Raises an exception when called.
|
|
103
|
+
def delete_matched(matcher)
|
|
104
|
+
raise "Not supported by Gemfire"
|
|
105
|
+
end
|
|
106
|
+
end
|
|
107
|
+
end
|
|
108
|
+
end
|
data/test/helper.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: gemfire-jruby
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Alan McKean
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
|
|
12
|
+
date: 2010-01-27 00:00:00 -08:00
|
|
13
|
+
default_executable:
|
|
14
|
+
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: activesupport
|
|
17
|
+
type: :runtime
|
|
18
|
+
version_requirement:
|
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">="
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: "0"
|
|
24
|
+
version:
|
|
25
|
+
description: "\"Uses Memcached API\""
|
|
26
|
+
email: alan.mckean@gemstone.com
|
|
27
|
+
executables: []
|
|
28
|
+
|
|
29
|
+
extensions: []
|
|
30
|
+
|
|
31
|
+
extra_rdoc_files:
|
|
32
|
+
- LICENSE
|
|
33
|
+
- README.rdoc
|
|
34
|
+
files:
|
|
35
|
+
- .document
|
|
36
|
+
- .gitignore
|
|
37
|
+
- LICENSE
|
|
38
|
+
- README.rdoc
|
|
39
|
+
- Rakefile
|
|
40
|
+
- VERSION
|
|
41
|
+
- doc/classes/ActiveSupport.html
|
|
42
|
+
- doc/classes/ActiveSupport/Cache.html
|
|
43
|
+
- doc/classes/ActiveSupport/Cache/GemFire.html
|
|
44
|
+
- doc/classes/ActiveSupport/Cache/GemFire.src/M000001.html
|
|
45
|
+
- doc/classes/ActiveSupport/Cache/GemFire.src/M000002.html
|
|
46
|
+
- doc/classes/ActiveSupport/Cache/GemFire.src/M000003.html
|
|
47
|
+
- doc/classes/ActiveSupport/Cache/GemFire.src/M000004.html
|
|
48
|
+
- doc/classes/ActiveSupport/Cache/GemFire.src/M000005.html
|
|
49
|
+
- doc/classes/ActiveSupport/Cache/GemFire.src/M000006.html
|
|
50
|
+
- doc/classes/ActiveSupport/Cache/GemFire.src/M000007.html
|
|
51
|
+
- doc/classes/ActiveSupport/Cache/GemFire.src/M000008.html
|
|
52
|
+
- doc/classes/ActiveSupport/Cache/GemFire.src/M000009.html
|
|
53
|
+
- doc/classes/ActiveSupport/Cache/GemFire.src/M000010.html
|
|
54
|
+
- doc/classes/ActiveSupport/Cache/GemFire.src/M000011.html
|
|
55
|
+
- doc/classes/ActiveSupport/Cache/GemFire/CacheException.html
|
|
56
|
+
- doc/created.rid
|
|
57
|
+
- doc/files/lib/gemfire-jruby_rb.html
|
|
58
|
+
- doc/fr_class_index.html
|
|
59
|
+
- doc/fr_file_index.html
|
|
60
|
+
- doc/fr_method_index.html
|
|
61
|
+
- doc/index.html
|
|
62
|
+
- doc/rdoc-style.css
|
|
63
|
+
- gemfire-jruby-0.0.1.gem
|
|
64
|
+
- gemfire-jruby-demo/README
|
|
65
|
+
- gemfire-jruby-demo/Rakefile
|
|
66
|
+
- gemfire-jruby-demo/app/controllers/application_controller.rb
|
|
67
|
+
- gemfire-jruby-demo/app/helpers/application_helper.rb
|
|
68
|
+
- gemfire-jruby-demo/cache.xml
|
|
69
|
+
- gemfire-jruby-demo/config/boot.rb
|
|
70
|
+
- gemfire-jruby-demo/config/database.yml
|
|
71
|
+
- gemfire-jruby-demo/config/environment.rb
|
|
72
|
+
- gemfire-jruby-demo/config/environments/development.rb
|
|
73
|
+
- gemfire-jruby-demo/config/environments/production.rb
|
|
74
|
+
- gemfire-jruby-demo/config/environments/test.rb
|
|
75
|
+
- gemfire-jruby-demo/config/initializers/backtrace_silencers.rb
|
|
76
|
+
- gemfire-jruby-demo/config/initializers/inflections.rb
|
|
77
|
+
- gemfire-jruby-demo/config/initializers/mime_types.rb
|
|
78
|
+
- gemfire-jruby-demo/config/initializers/new_rails_defaults.rb
|
|
79
|
+
- gemfire-jruby-demo/config/initializers/session_store.rb
|
|
80
|
+
- gemfire-jruby-demo/config/locales/en.yml
|
|
81
|
+
- gemfire-jruby-demo/config/routes.rb
|
|
82
|
+
- gemfire-jruby-demo/db/seeds.rb
|
|
83
|
+
- gemfire-jruby-demo/doc/README_FOR_APP
|
|
84
|
+
- gemfire-jruby-demo/log/development.log
|
|
85
|
+
- gemfire-jruby-demo/log/production.log
|
|
86
|
+
- gemfire-jruby-demo/log/server.log
|
|
87
|
+
- gemfire-jruby-demo/log/test.log
|
|
88
|
+
- gemfire-jruby-demo/public/404.html
|
|
89
|
+
- gemfire-jruby-demo/public/422.html
|
|
90
|
+
- gemfire-jruby-demo/public/500.html
|
|
91
|
+
- gemfire-jruby-demo/public/favicon.ico
|
|
92
|
+
- gemfire-jruby-demo/public/images/rails.png
|
|
93
|
+
- gemfire-jruby-demo/public/index.html
|
|
94
|
+
- gemfire-jruby-demo/public/javascripts/application.js
|
|
95
|
+
- gemfire-jruby-demo/public/javascripts/controls.js
|
|
96
|
+
- gemfire-jruby-demo/public/javascripts/dragdrop.js
|
|
97
|
+
- gemfire-jruby-demo/public/javascripts/effects.js
|
|
98
|
+
- gemfire-jruby-demo/public/javascripts/prototype.js
|
|
99
|
+
- gemfire-jruby-demo/public/robots.txt
|
|
100
|
+
- gemfire-jruby-demo/script/about
|
|
101
|
+
- gemfire-jruby-demo/script/console
|
|
102
|
+
- gemfire-jruby-demo/script/dbconsole
|
|
103
|
+
- gemfire-jruby-demo/script/destroy
|
|
104
|
+
- gemfire-jruby-demo/script/generate
|
|
105
|
+
- gemfire-jruby-demo/script/performance/benchmarker
|
|
106
|
+
- gemfire-jruby-demo/script/performance/profiler
|
|
107
|
+
- gemfire-jruby-demo/script/plugin
|
|
108
|
+
- gemfire-jruby-demo/script/runner
|
|
109
|
+
- gemfire-jruby-demo/script/server
|
|
110
|
+
- gemfire-jruby-demo/test/performance/browsing_test.rb
|
|
111
|
+
- gemfire-jruby-demo/test/test_helper.rb
|
|
112
|
+
- gemfire-jruby.gemspec
|
|
113
|
+
- lib/gemfire-jruby.rb
|
|
114
|
+
- test/helper.rb
|
|
115
|
+
- test/test_gemfire-jruby.rb
|
|
116
|
+
has_rdoc: true
|
|
117
|
+
homepage: http://github.com/amckean/gemfire-jruby
|
|
118
|
+
licenses: []
|
|
119
|
+
|
|
120
|
+
post_install_message:
|
|
121
|
+
rdoc_options:
|
|
122
|
+
- --charset=UTF-8
|
|
123
|
+
require_paths:
|
|
124
|
+
- lib
|
|
125
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
126
|
+
requirements:
|
|
127
|
+
- - ">="
|
|
128
|
+
- !ruby/object:Gem::Version
|
|
129
|
+
version: "0"
|
|
130
|
+
version:
|
|
131
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
132
|
+
requirements:
|
|
133
|
+
- - ">="
|
|
134
|
+
- !ruby/object:Gem::Version
|
|
135
|
+
version: "0"
|
|
136
|
+
version:
|
|
137
|
+
requirements: []
|
|
138
|
+
|
|
139
|
+
rubyforge_project:
|
|
140
|
+
rubygems_version: 1.3.5
|
|
141
|
+
signing_key:
|
|
142
|
+
specification_version: 3
|
|
143
|
+
summary: "\"GemFire Rails Caching API for JRuby\""
|
|
144
|
+
test_files:
|
|
145
|
+
- test/helper.rb
|
|
146
|
+
- test/test_gemfire-jruby.rb
|