public
Description: Simplifies plugin testing by creating an isolated Rails environment that simulates its usage in a real application
Homepage: http://www.pluginaweek.org
Clone URL: git://github.com/pluginaweek/plugin_test_helper.git
plugin_test_helper / plugin_test_helper.gemspec
100644 31 lines (26 sloc) 7.405 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# -*- encoding: utf-8 -*-
 
Gem::Specification.new do |s|
  s.name = %q{plugin_test_helper}
  s.version = "0.3.0"
 
  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.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.homepage = %q{http://www.pluginaweek.org}
  s.require_paths = ["lib"]
  s.rubyforge_project = %q{pluginaweek}
  s.rubygems_version = %q{1.3.1}
  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"]
 
  if s.respond_to? :specification_version then
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
    s.specification_version = 2
 
    if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
    else
    end
  else
  end
end