From 6a6a3650621ba259ff8f5ec65e7fa1670cfdbc80 Mon Sep 17 00:00:00 2001 From: Aaron Pfeifer Date: Sun, 7 Mar 2010 17:30:58 -0500 Subject: [PATCH] Tag 0.3.1 release --- CHANGELOG.rdoc | 2 ++ Rakefile | 2 +- plugin_test_helper.gemspec | 13 ++++++------- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.rdoc b/CHANGELOG.rdoc index b3aa420..edaa7f1 100644 --- a/CHANGELOG.rdoc +++ b/CHANGELOG.rdoc @@ -1,5 +1,7 @@ == master +== 0.3.1 / 2010-03-07 + * Release gems via rake-gemcutter instead of rubyforge * Fix HELPER_RAILS_ROOT path resulting in incorrect load_once_paths in Ruby 1.9+ * Update migration template to match Rails template diff --git a/Rakefile b/Rakefile index 4623980..233ed3b 100644 --- a/Rakefile +++ b/Rakefile @@ -6,7 +6,7 @@ require 'rake/gempackagetask' spec = Gem::Specification.new do |s| s.name = 'plugin_test_helper' - s.version = '0.3.0' + s.version = '0.3.1' s.platform = Gem::Platform::RUBY s.summary = 'Simplifies plugin testing by creating an isolated Rails environment that simulates its usage in a real application.' s.description = s.summary diff --git a/plugin_test_helper.gemspec b/plugin_test_helper.gemspec index 4935d0c..60bf954 100644 --- a/plugin_test_helper.gemspec +++ b/plugin_test_helper.gemspec @@ -2,25 +2,24 @@ Gem::Specification.new do |s| s.name = %q{plugin_test_helper} - s.version = "0.3.0" + s.version = "0.3.1" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Aaron Pfeifer"] - s.date = %q{2009-06-08} + s.date = %q{2010-03-07} s.description = %q{Simplifies plugin testing by creating an isolated Rails environment that simulates its usage in a real application.} s.email = %q{aaron@pluginaweek.org} - s.files = ["generators/plugin_test_model", "generators/plugin_test_model/USAGE", "generators/plugin_test_model/plugin_test_model_generator.rb", "generators/plugin_test_model/templates", "generators/plugin_test_model/templates/fixtures.yml", "generators/plugin_test_model/templates/model.rb", "generators/plugin_test_model/templates/migration.rb", "generators/plugin_test_console", "generators/plugin_test_console/plugin_test_console_generator.rb", "generators/plugin_test_console/USAGE", "generators/plugin_test_console/templates", "generators/plugin_test_console/templates/console", "generators/plugin_test_helper", "generators/plugin_test_helper/USAGE", "generators/plugin_test_helper/plugin_test_helper_generator.rb", "generators/plugin_test_helper/templates", "generators/plugin_test_helper/templates/test_helper.rb", "generators/plugin_test_structure", "generators/plugin_test_structure/plugin_test_structure_generator.rb", "generators/plugin_test_structure/USAGE", "generators/plugin_test_structure/templates", "generators/plugin_test_structure/templates/app_root", "generators/plugin_test_structure/templates/app_root/app", "generators/plugin_test_structure/templates/app_root/app/controllers", "generators/plugin_test_structure/templates/app_root/app/controllers/application_controller.rb", "generators/plugin_test_structure/templates/app_root/lib", "generators/plugin_test_structure/templates/app_root/lib/console_with_fixtures.rb", "generators/plugin_test_structure/templates/app_root/config", "generators/plugin_test_structure/templates/app_root/config/routes.rb", "generators/plugin_test_structure/templates/app_root/config/environments", "generators/plugin_test_structure/templates/app_root/config/environments/sqlite3.rb", "generators/plugin_test_structure/templates/app_root/config/environments/mysql.rb", "generators/plugin_test_structure/templates/app_root/config/environments/sqlite.rb", "generators/plugin_test_structure/templates/app_root/config/environments/in_memory.rb", "generators/plugin_test_structure/templates/app_root/config/environments/postgresql.rb", "generators/plugin_test_structure/templates/app_root/config/boot.rb", "generators/plugin_test_structure/templates/app_root/config/environment.rb", "generators/plugin_test_structure/templates/app_root/config/database.yml", "generators/plugin_test_structure/templates/test_helper.rb", "generators/plugin_test_migration", "generators/plugin_test_migration/USAGE", "generators/plugin_test_migration/plugin_test_migration_generator.rb", "generators/plugin_test_migration/templates", "generators/plugin_test_migration/templates/migration.rb", "generators/plugin_test_controller", "generators/plugin_test_controller/plugin_test_controller_generator.rb", "generators/plugin_test_controller/USAGE", "generators/plugin_test_controller/templates", "generators/plugin_test_controller/templates/view.html.erb", "generators/plugin_test_controller/templates/controller.rb", "lib/plugin_test_helper.rb", "lib/plugin_test_helper", "lib/plugin_test_helper/plugin_locator.rb", "lib/plugin_test_helper/console_with_fixtures.rb", "lib/plugin_test_helper/extensions", "lib/plugin_test_helper/extensions/configuration.rb", "lib/plugin_test_helper/generator.rb", "test/unit", "test/unit/plugin_locator_test.rb", "test/app_root", "test/test_helper.rb", "test/app_roots", "test/app_roots/with_controller", "test/app_roots/with_controller/app", "test/app_roots/with_controller/app/controllers", "test/app_roots/with_controller/app/controllers/people_controller.rb", "test/app_roots/with_custom_application_controller", "test/app_roots/with_custom_application_controller/app", "test/app_roots/with_custom_application_controller/app/controllers", "test/app_roots/with_custom_application_controller/app/controllers/application_controller.rb", "test/app_roots/empty", "test/app_roots/empty/empty", "test/app_roots/with_model", "test/app_roots/with_model/app", "test/app_roots/with_model/app/models", "test/app_roots/with_model/app/models/person.rb", "test/app_roots/with_helper", "test/app_roots/with_helper/app", "test/app_roots/with_helper/app/helpers", "test/app_roots/with_helper/app/helpers/people_helper.rb", "test/app_roots/with_fixtures", "test/app_roots/with_fixtures/app", "test/app_roots/with_fixtures/app/models", "test/app_roots/with_fixtures/app/models/person.rb", "test/app_roots/with_fixtures/db", "test/app_roots/with_fixtures/db/migrate", "test/app_roots/with_fixtures/db/migrate/001_create_people.rb", "test/app_roots/with_routes", "test/app_roots/with_routes/config", "test/app_roots/with_routes/config/routes.rb", "test/app_roots/with_migration", "test/app_roots/with_migration/app", "test/app_roots/with_migration/app/models", "test/app_roots/with_migration/app/models/person.rb", "test/app_roots/with_migration/db", "test/app_roots/with_migration/db/migrate", "test/app_roots/with_migration/db/migrate/001_create_people.rb", "test/app_roots/with_custom_config", "test/app_roots/with_custom_config/vendor", "test/app_roots/with_custom_config/vendor/plugins", "test/app_roots/with_custom_config/vendor/plugins/acts_as_foo", "test/app_roots/with_custom_config/vendor/plugins/acts_as_foo/lib", "test/app_roots/with_custom_config/vendor/plugins/acts_as_foo/lib/acts_as_foo.rb", "test/app_roots/with_custom_config/vendor/plugins/acts_as_foo/init.rb", "test/app_roots/with_custom_config/config", "test/app_roots/with_custom_config/config/environment.rb", "test/fixtures", "test/fixtures/people.yml", "test/functional", "test/functional/plugin_test_structure_generator_test.rb", "test/functional/plugin_test_console_generator_test.rb", "test/functional/plugin_test_helper_generator_test.rb", "test/functional/plugin_test_helper_test.rb", "test/functional/plugin_test_model_generator_test.rb", "test/functional/plugin_test_controller_generator_test.rb", "test/functional/plugin_test_migration_generator_test.rb", "CHANGELOG.rdoc", "LICENSE", "Rakefile", "README.rdoc"] - s.has_rdoc = true + s.files = ["generators/plugin_test_controller", "generators/plugin_test_controller/USAGE", "generators/plugin_test_controller/plugin_test_controller_generator.rb", "generators/plugin_test_controller/templates", "generators/plugin_test_controller/templates/view.html.erb", "generators/plugin_test_controller/templates/controller.rb", "generators/plugin_test_structure", "generators/plugin_test_structure/USAGE", "generators/plugin_test_structure/plugin_test_structure_generator.rb", "generators/plugin_test_structure/templates", "generators/plugin_test_structure/templates/app_root", "generators/plugin_test_structure/templates/app_root/lib", "generators/plugin_test_structure/templates/app_root/lib/console_with_fixtures.rb", "generators/plugin_test_structure/templates/app_root/app", "generators/plugin_test_structure/templates/app_root/app/controllers", "generators/plugin_test_structure/templates/app_root/app/controllers/application_controller.rb", "generators/plugin_test_structure/templates/app_root/config", "generators/plugin_test_structure/templates/app_root/config/boot.rb", "generators/plugin_test_structure/templates/app_root/config/environment.rb", "generators/plugin_test_structure/templates/app_root/config/routes.rb", "generators/plugin_test_structure/templates/app_root/config/environments", "generators/plugin_test_structure/templates/app_root/config/environments/sqlite.rb", "generators/plugin_test_structure/templates/app_root/config/environments/postgresql.rb", "generators/plugin_test_structure/templates/app_root/config/environments/in_memory.rb", "generators/plugin_test_structure/templates/app_root/config/environments/mysql.rb", "generators/plugin_test_structure/templates/app_root/config/environments/sqlite3.rb", "generators/plugin_test_structure/templates/app_root/config/database.yml", "generators/plugin_test_structure/templates/test_helper.rb", "generators/plugin_test_migration", "generators/plugin_test_migration/plugin_test_migration_generator.rb", "generators/plugin_test_migration/USAGE", "generators/plugin_test_migration/templates", "generators/plugin_test_migration/templates/migration.rb", "generators/plugin_test_console", "generators/plugin_test_console/USAGE", "generators/plugin_test_console/plugin_test_console_generator.rb", "generators/plugin_test_console/templates", "generators/plugin_test_console/templates/console", "generators/plugin_test_helper", "generators/plugin_test_helper/USAGE", "generators/plugin_test_helper/plugin_test_helper_generator.rb", "generators/plugin_test_helper/templates", "generators/plugin_test_helper/templates/test_helper.rb", "generators/plugin_test_model", "generators/plugin_test_model/USAGE", "generators/plugin_test_model/plugin_test_model_generator.rb", "generators/plugin_test_model/templates", "generators/plugin_test_model/templates/fixtures.yml", "generators/plugin_test_model/templates/model.rb", "generators/plugin_test_model/templates/migration.rb", "lib/plugin_test_helper", "lib/plugin_test_helper/plugin_locator.rb", "lib/plugin_test_helper/generator.rb", "lib/plugin_test_helper/console_with_fixtures.rb", "lib/plugin_test_helper/extensions", "lib/plugin_test_helper/extensions/configuration.rb", "lib/plugin_test_helper.rb", "test/unit", "test/unit/plugin_locator_test.rb", "test/app_root", "test/app_roots", "test/app_roots/with_custom_application_controller", "test/app_roots/with_custom_application_controller/app", "test/app_roots/with_custom_application_controller/app/controllers", "test/app_roots/with_custom_application_controller/app/controllers/application_controller.rb", "test/app_roots/with_helper", "test/app_roots/with_helper/app", "test/app_roots/with_helper/app/helpers", "test/app_roots/with_helper/app/helpers/people_helper.rb", "test/app_roots/with_custom_config", "test/app_roots/with_custom_config/vendor", "test/app_roots/with_custom_config/vendor/plugins", "test/app_roots/with_custom_config/vendor/plugins/acts_as_foo", "test/app_roots/with_custom_config/vendor/plugins/acts_as_foo/init.rb", "test/app_roots/with_custom_config/vendor/plugins/acts_as_foo/lib", "test/app_roots/with_custom_config/vendor/plugins/acts_as_foo/lib/acts_as_foo.rb", "test/app_roots/with_custom_config/config", "test/app_roots/with_custom_config/config/environment.rb", "test/app_roots/empty", "test/app_roots/empty/empty", "test/app_roots/with_fixtures", "test/app_roots/with_fixtures/db", "test/app_roots/with_fixtures/db/migrate", "test/app_roots/with_fixtures/db/migrate/001_create_people.rb", "test/app_roots/with_fixtures/app", "test/app_roots/with_fixtures/app/models", "test/app_roots/with_fixtures/app/models/person.rb", "test/app_roots/with_controller", "test/app_roots/with_controller/app", "test/app_roots/with_controller/app/controllers", "test/app_roots/with_controller/app/controllers/people_controller.rb", "test/app_roots/with_model", "test/app_roots/with_model/app", "test/app_roots/with_model/app/models", "test/app_roots/with_model/app/models/person.rb", "test/app_roots/with_routes", "test/app_roots/with_routes/config", "test/app_roots/with_routes/config/routes.rb", "test/app_roots/with_migration", "test/app_roots/with_migration/db", "test/app_roots/with_migration/db/migrate", "test/app_roots/with_migration/db/migrate/001_create_people.rb", "test/app_roots/with_migration/app", "test/app_roots/with_migration/app/models", "test/app_roots/with_migration/app/models/person.rb", "test/test_helper.rb", "test/fixtures", "test/fixtures/people.yml", "test/functional", "test/functional/plugin_test_console_generator_test.rb", "test/functional/plugin_test_helper_generator_test.rb", "test/functional/plugin_test_controller_generator_test.rb", "test/functional/plugin_test_model_generator_test.rb", "test/functional/plugin_test_migration_generator_test.rb", "test/functional/plugin_test_structure_generator_test.rb", "test/functional/plugin_test_helper_test.rb", "CHANGELOG.rdoc", "LICENSE", "Rakefile", "README.rdoc"] s.homepage = %q{http://www.pluginaweek.org} s.require_paths = ["lib"] s.rubyforge_project = %q{pluginaweek} - s.rubygems_version = %q{1.3.1} + s.rubygems_version = %q{1.3.5} s.summary = %q{Simplifies plugin testing by creating an isolated Rails environment that simulates its usage in a real application.} - s.test_files = ["test/unit/plugin_locator_test.rb", "test/functional/plugin_test_structure_generator_test.rb", "test/functional/plugin_test_console_generator_test.rb", "test/functional/plugin_test_helper_generator_test.rb", "test/functional/plugin_test_helper_test.rb", "test/functional/plugin_test_model_generator_test.rb", "test/functional/plugin_test_controller_generator_test.rb", "test/functional/plugin_test_migration_generator_test.rb"] + s.test_files = ["test/unit/plugin_locator_test.rb", "test/functional/plugin_test_console_generator_test.rb", "test/functional/plugin_test_helper_generator_test.rb", "test/functional/plugin_test_controller_generator_test.rb", "test/functional/plugin_test_model_generator_test.rb", "test/functional/plugin_test_migration_generator_test.rb", "test/functional/plugin_test_structure_generator_test.rb", "test/functional/plugin_test_helper_test.rb"] if s.respond_to? :specification_version then current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION - s.specification_version = 2 + s.specification_version = 3 if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then else