localmemcache_store 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -37,9 +37,11 @@ PKG_FILES = FileList[
37
37
  'test/**/*'
38
38
  ]
39
39
 
40
+ # TODO: Dependency
41
+
40
42
  spec = Gem::Specification.new do |s|
41
43
  s.name = "localmemcache_store"
42
- s.version = "0.0.1"
44
+ s.version = "0.0.2"
43
45
  s.author = "Florian Dütsch (der_flo)"
44
46
  s.email = "mail@florian-duetsch.de"
45
47
  s.homepage = "http://github.com/der-flo/localmemcache_store"
data/TODOs.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  Plugin
2
2
  * Better / more complete tests
3
- * Gemified version etc: http://guides.rubyonrails.org/plugins.html
3
+ * Stuff from http://guides.rubyonrails.org/plugins.html
4
4
  * Good default parameters for localmemcache configuration
5
5
  * Documentation! (README, Homepage, ...)
6
6
  * Some Rake tasks?
@@ -0,0 +1,3 @@
1
+ unless defined? ActiveSupport::Cache::LocalmemcacheStore
2
+ require 'active_support/cache/localmemcache_store'
3
+ end
data/rails/init.rb CHANGED
@@ -1 +1 @@
1
- require 'active_support/cache/localmemcache_store'
1
+ require 'localmemcache_store'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: localmemcache_store
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - "Florian D\xC3\xBCtsch (der_flo)"
@@ -22,25 +22,21 @@ extensions: []
22
22
  extra_rdoc_files:
23
23
  - README
24
24
  files:
25
- - lib
26
25
  - MIT-LICENSE
27
- - pkg
28
- - rails
29
26
  - Rakefile
30
27
  - README
31
- - tasks
32
- - test
33
28
  - TODOs.txt
34
- - lib/active_support
35
- - lib/active_support/cache
36
29
  - lib/active_support/cache/localmemcache_store.rb
30
+ - lib/localmemcache_store.rb
37
31
  - rails/init.rb
38
32
  - tasks/localmemcache_store_tasks.rake
39
33
  - test/cache_store_behavior.rb
40
34
  - test/localmemcache_store_test.rb
41
35
  - test/test_helper.rb
42
- has_rdoc: false
36
+ has_rdoc: true
43
37
  homepage: http://github.com/der-flo/localmemcache_store
38
+ licenses: []
39
+
44
40
  post_install_message:
45
41
  rdoc_options: []
46
42
 
@@ -61,9 +57,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
61
57
  requirements: []
62
58
 
63
59
  rubyforge_project:
64
- rubygems_version: 1.3.1
60
+ rubygems_version: 1.3.5
65
61
  signing_key:
66
- specification_version: 2
62
+ specification_version: 3
67
63
  summary: A Rails cache store implementation for localmemcache
68
64
  test_files: []
69
65