Skip to content

Commit

Permalink
Tagged v0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Luca Guidi committed Oct 22, 2008
1 parent 95bd2d6 commit 7435087
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
@@ -1,3 +1,7 @@
*0.0.3 (October 22nd, 2008)*

* Tagged v0.0.3

* Test cases cleanup

* Sugar syntax for AssociationCollection#size
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -2,7 +2,7 @@ require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'

version = '0.0.2'
version = '0.0.3'
repositories = %w( origin rubyforge )

desc 'Default: run unit tests.'
Expand Down
8 changes: 4 additions & 4 deletions about.yml
@@ -1,8 +1,8 @@
author: Luca Guidi
email: guidi.luca@gmail.com
homepage: http://lucaguidi.com/pages/cached_models
summary: CachedModels provides to your models a transparent approach to use Rails internal caching mechanism.
description: CachedModels provides to your models a transparent approach to use Rails internal caching mechanism.
summary: CachedModels provides to your ActiveRecord models a transparent approach to use ActiveSupport caching mechanism.
description: CachedModels provides to your ActiveRecord models a transparent approach to use ActiveSupport caching mechanism.
license: MIT
rails_version: 2.1.1+
version: 0.0.1
rails_version: 2.1.0+
version: 0.0.3
9 changes: 4 additions & 5 deletions cached-models.gemspec
@@ -1,17 +1,16 @@
Gem::Specification.new do |s|
s.name = "cached-models"
s.version = "0.0.2"
s.date = "2008-10-10"
s.version = "0.0.3"
s.date = "2008-10-22"
s.summary = "Transparent caching policy for your models"
s.author = "Luca Guidi"
s.email = "guidi.luca@gmail.com"
s.homepage = "http://lucaguidi.com/pages/cached_models"
s.description = "CachedModels provides to your ActiveRecord models a transparent approach to use ActiveSupport caching mechanism."
s.has_rdoc = true
s.rubyforge_project = %q{cached-models}
s.files = ["CHANGELOG", "MIT-LICENSE", "README", "Rakefile", "about.yml", "cached-models.gemspec", "init.rb", "install.rb", "lib/activerecord/lib/active_record.rb", "lib/activerecord/lib/active_record/associations.rb", "lib/activerecord/lib/active_record/associations/association_collection.rb", "lib/activerecord/lib/active_record/associations/association_proxy.rb", "lib/activerecord/lib/active_record/associations/has_many_association.rb", "lib/activerecord/lib/active_record/base.rb", "lib/cached-models.rb", "lib/cached_models.rb", "setup.rb", "tasks/cached_models_tasks.rake", "test/active_record/associations/has_many_association_test.rb", "test/active_record/base_test.rb", "test/fixtures/authors.yml", "test/fixtures/blogs.yml", "test/fixtures/comments.yml", "test/fixtures/posts.yml", "test/fixtures/tags.yml", "test/models/author.rb", "test/models/blog.rb", "test/models/comment.rb", "test/models/post.rb", "test/models/tag.rb", "test/test_helper.rb", "uninstall.rb"]
s.test_files = ["test/active_record/associations/has_many_association_test.rb",
"test/active_record/base_test.rb"]
s.files = ["CHANGELOG", "MIT-LICENSE", "README", "Rakefile", "about.yml", "cached-models.gemspec", "init.rb", "install.rb", "lib/activerecord/lib/active_record.rb", "lib/activerecord/lib/active_record/associations.rb", "lib/activerecord/lib/active_record/associations/association_collection.rb", "lib/activerecord/lib/active_record/associations/association_proxy.rb", "lib/activerecord/lib/active_record/associations/has_many_association.rb", "lib/activerecord/lib/active_record/base.rb", "lib/cached-models.rb", "lib/cached_models.rb", "setup.rb", "tasks/cached_models_tasks.rake", "test/active_record/associations/has_and_belongs_to_many_association_test.rb", "test/active_record/associations/has_many_association_test.rb", "test/active_record/associations/has_one_association_test.rb", "test/active_record/base_test.rb", "test/fixtures/addresses.yml", "test/fixtures/authors.yml", "test/fixtures/blogs.yml", "test/fixtures/categories.yml", "test/fixtures/categories_posts.yml", "test/fixtures/comments.yml", "test/fixtures/posts.yml", "test/fixtures/tags.yml", "test/models/address.rb", "test/models/author.rb", "test/models/blog.rb", "test/models/category.rb", "test/models/comment.rb", "test/models/post.rb", "test/models/tag.rb", "test/test_helper.rb", "uninstall.rb"]
s.test_files = ["test/active_record/associations/has_and_belongs_to_many_association_test.rb", "test/active_record/associations/has_many_association_test.rb", "test/active_record/associations/has_one_association_test.rb", "test/active_record/base_test.rb"]
s.extra_rdoc_files = ['README', 'CHANGELOG']

s.add_dependency("activesupport", ["> 2.1.0"])
Expand Down

0 comments on commit 7435087

Please sign in to comment.