# -*- encoding: utf-8 -*- Gem::Specification.new do |s| s.name = "hoe" s.version = "1.5.1" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Ryan Davis"] s.date = "2008-03-04" s.description = "Hoe is a simple rake/rubygems helper for project Rakefiles. It generates all the usual tasks for projects including rdoc generation, testing, packaging, and deployment. Tasks Provided: * announce - Create news email file and post to rubyforge. * audit - Run ZenTest against the package. * check_manifest - Verify the manifest. * clean - Clean up all the extras. * config_hoe - Create a fresh ~/.hoerc file. * debug_gem - Show information about the gem. * default - Run the default tasks. * docs - Build the docs HTML Files * email - Generate email announcement file. * gem - Build the gem file hoe-1.5.0.gem * generate_key - Generate a key for signing your gems. * install_gem - Install the package as a gem. * multi - Run the test suite using multiruby. * package - Build all the packages * post_blog - Post announcement to blog. * post_news - Post announcement to rubyforge. * publish_docs - Publish RDoc to RubyForge. * release - Package and upload the release to rubyforge. * ridocs - Generate ri locally for testing. * test - Run the test suite. * test_deps - Show which test files fail when run alone. See class rdoc for help. Hint: ri Hoe" s.email = ["ryand-ruby@zenspider.com"] s.executables = ["sow"] s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.txt"] s.files = ["bin/sow", "History.txt", "Manifest.txt", "README.txt"] s.homepage = "http://rubyforge.org/projects/seattlerb/" s.rdoc_options = ["--main", "README.txt"] s.require_paths = ["lib"] s.rubyforge_project = "seattlerb" s.rubygems_version = "1.8.16" s.summary = "Hoe is a simple rake/rubygems helper for project Rakefiles" if s.respond_to? :specification_version then s.specification_version = 2 if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then s.add_runtime_dependency(%q, [">= 0.4.4"]) s.add_runtime_dependency(%q, [">= 0.8.1"]) else s.add_dependency(%q, [">= 0.4.4"]) s.add_dependency(%q, [">= 0.8.1"]) end else s.add_dependency(%q, [">= 0.4.4"]) s.add_dependency(%q, [">= 0.8.1"]) end end