cached-models 0.0.2

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.
metadata ADDED
@@ -0,0 +1,105 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cached-models
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Luca Guidi
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-10-10 00:00:00 +02: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: 2.1.0
24
+ version:
25
+ - !ruby/object:Gem::Dependency
26
+ name: activerecord
27
+ type: :runtime
28
+ version_requirement:
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">"
32
+ - !ruby/object:Gem::Version
33
+ version: 2.1.0
34
+ version:
35
+ description: CachedModels provides to your ActiveRecord models a transparent approach to use ActiveSupport caching mechanism.
36
+ email: guidi.luca@gmail.com
37
+ executables: []
38
+
39
+ extensions: []
40
+
41
+ extra_rdoc_files:
42
+ - README
43
+ - CHANGELOG
44
+ files:
45
+ - CHANGELOG
46
+ - MIT-LICENSE
47
+ - README
48
+ - Rakefile
49
+ - about.yml
50
+ - cached-models.gemspec
51
+ - init.rb
52
+ - install.rb
53
+ - lib/activerecord/lib/active_record.rb
54
+ - lib/activerecord/lib/active_record/associations.rb
55
+ - lib/activerecord/lib/active_record/associations/association_collection.rb
56
+ - lib/activerecord/lib/active_record/associations/association_proxy.rb
57
+ - lib/activerecord/lib/active_record/associations/has_many_association.rb
58
+ - lib/activerecord/lib/active_record/base.rb
59
+ - lib/cached-models.rb
60
+ - lib/cached_models.rb
61
+ - setup.rb
62
+ - tasks/cached_models_tasks.rake
63
+ - test/active_record/associations/has_many_association_test.rb
64
+ - test/active_record/base_test.rb
65
+ - test/fixtures/authors.yml
66
+ - test/fixtures/blogs.yml
67
+ - test/fixtures/comments.yml
68
+ - test/fixtures/posts.yml
69
+ - test/fixtures/tags.yml
70
+ - test/models/author.rb
71
+ - test/models/blog.rb
72
+ - test/models/comment.rb
73
+ - test/models/post.rb
74
+ - test/models/tag.rb
75
+ - test/test_helper.rb
76
+ - uninstall.rb
77
+ has_rdoc: true
78
+ homepage: http://lucaguidi.com/pages/cached_models
79
+ post_install_message:
80
+ rdoc_options: []
81
+
82
+ require_paths:
83
+ - lib
84
+ required_ruby_version: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: "0"
89
+ version:
90
+ required_rubygems_version: !ruby/object:Gem::Requirement
91
+ requirements:
92
+ - - ">="
93
+ - !ruby/object:Gem::Version
94
+ version: "0"
95
+ version:
96
+ requirements: []
97
+
98
+ rubyforge_project: cached-models
99
+ rubygems_version: 1.2.0
100
+ signing_key:
101
+ specification_version: 2
102
+ summary: Transparent caching policy for your models
103
+ test_files:
104
+ - test/active_record/associations/has_many_association_test.rb
105
+ - test/active_record/base_test.rb