From cfa36eb592e416d8211c3e17bb88d61859b47899 Mon Sep 17 00:00:00 2001 From: Ken Collins Date: Wed, 7 Jan 2009 15:46:49 -0500 Subject: [PATCH] Publish gemspec for 0.5.0 version. --- CHANGELOG | 7 ++++- grouped_scope.gemspec | 47 ++++++++++++++++++++++++++++++++++ install.rb | 1 - lib/grouped_scope.rb | 2 +- tasks/grouped_scope_tasks.rake | 4 --- uninstall.rb | 1 - 6 files changed, 54 insertions(+), 8 deletions(-) create mode 100644 grouped_scope.gemspec delete mode 100644 install.rb delete mode 100644 tasks/grouped_scope_tasks.rake delete mode 100644 uninstall.rb diff --git a/CHANGELOG b/CHANGELOG index da5bf27..5f6fd42 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,10 @@ -* master +*master* + +* + + +*0.5.0* (January 7th 2009) * Add rails 2.2.2 to test task and remove quite backtrace usage so 1.2.6 testing can run. [Ken Collins] diff --git a/grouped_scope.gemspec b/grouped_scope.gemspec new file mode 100644 index 0000000..96d10f4 --- /dev/null +++ b/grouped_scope.gemspec @@ -0,0 +1,47 @@ +Gem::Specification.new do |s| + s.name = "grouped_scope" + s.version = "0.5.0" + s.date = "2009-01-07" + s.summary = "Extends has_many associations to group scope." + s.email = "ken@metaskills.net" + s.homepage = "http://github.com/metaskills/grouped_scope/" + s.description = "Extends has_many associations to group scope." + s.has_rdoc = true + s.authors = ["Ken Collins"] + s.files = [ + "CHANGELOG", + "MIT-LICENSE", + "Rakefile", + "README.rdoc", + "init.rb", + "lib/grouped_scope.rb", + "lib/grouped_scope/association_reflection.rb", + "lib/grouped_scope/class_methods.rb", + "lib/grouped_scope/core_ext.rb", + "lib/grouped_scope/errors.rb", + "lib/grouped_scope/grouping.rb", + "lib/grouped_scope/has_many_association.rb", + "lib/grouped_scope/has_many_through_association.rb", + "lib/grouped_scope/instance_methods.rb", + "lib/grouped_scope/self_grouping.rb"] + s.test_files = [ + "test/factories.rb", + "test/grouped_scope/association_reflection_test.rb", + "test/grouped_scope/class_methods_test.rb", + "test/grouped_scope/has_many_association_test.rb", + "test/grouped_scope/has_many_through_association_test.rb", + "test/grouped_scope/self_grouping_test.rb", + "test/helper.rb", + "test/lib/boot.rb", + "test/lib/core_ext.rb", + "test/lib/named_scope.rb", + "test/lib/named_scope/core_ext.rb", + "test/lib/named_scope/named_scope.rb", + "test/lib/named_scope/named_scope_patch_1.2.rb", + "test/lib/named_scope/named_scope_patch_2.0.rb", + "test/lib/test_case.rb" ] + s.rdoc_options = ["--main", "README.rdoc"] + s.extra_rdoc_files = ["README.rdoc","CHANGELOG","MIT-LICENSE"] +end + + diff --git a/install.rb b/install.rb deleted file mode 100644 index f7732d3..0000000 --- a/install.rb +++ /dev/null @@ -1 +0,0 @@ -# Install hook code here diff --git a/lib/grouped_scope.rb b/lib/grouped_scope.rb index dfb6b06..00da638 100644 --- a/lib/grouped_scope.rb +++ b/lib/grouped_scope.rb @@ -9,7 +9,7 @@ module GroupedScope - VERSION = '0.4' + VERSION = '0.5.0' end diff --git a/tasks/grouped_scope_tasks.rake b/tasks/grouped_scope_tasks.rake deleted file mode 100644 index 3ef0068..0000000 --- a/tasks/grouped_scope_tasks.rake +++ /dev/null @@ -1,4 +0,0 @@ -# desc "Explaining what the task does" -# task :grouped_scope do -# # Task goes here -# end diff --git a/uninstall.rb b/uninstall.rb deleted file mode 100644 index 9738333..0000000 --- a/uninstall.rb +++ /dev/null @@ -1 +0,0 @@ -# Uninstall hook code here