== 0.13.0 2007-08-20 * HIGHLIGHT - RubiGen integration - using a Rails-like generator * Now, each RubyGem has script/generate to access Rails-like generators too!!! * newgem can be run ontop of existing RubyGems and all is not destroyed! * Various included generators (application_generator, component_generator) * Website creation is now a generator, and is optionally included via newgem -w * Rspec support is now a generator, and is optionally included via newgem -t rspec * JRuby support is now a generator, and is optionally included via newgem -j * The Rakefile is now <5 lines - all config is in config/hoe.rb * Generated gems: * Started to add jruby specific features (-j option) * Gems named xxx-1.2.3-jruby.gem * Includes: require 'java' * Add link to website for Using New Gem on Windows (without cygwin) [thx Jorge Cangas] * index.txt "email me" now refers to forum url as well * NewGem * An error message is shown if Hoe gem isn't available when running rake on the gem * Lots of tasks refactored into /tasks folder * How To UPGRADE * NOTE: We've never had a "How to Upgrade" before! :) * Copy your Rakefile to Rakefile.old (to retain your configuration) * Run: newgem . * Press 'a' to allow all changes. * Open config/hoe.rb * Replace this with the equivalent lines/details from Rakefile.old * Test all is well with "rake -T" and "rake check_manifest" (the manifest should have been rebuilt by 'newgem .') == 0.12.0 2007-06-24 * 2 major enhancement * Using Erb for templates [thx http://snippets.dzone.com/posts/show/1723] * RubyGem.tmbundle for TextMate - to install go to gem folder and run "rake bundles:tm" * 1 minor enhancement * -V option shows current newgem version [thx Gert Goet] * Hoe#extra_deps permanently changes @extra_deps [thx MIYAMUKO Katsuyuki] * Dev improvements * Imports svn_branch for svn rake tasks * Minor website changes * Added link to Topfunky's tutorial on Hoe == 0.11.0 * 1 major enhancement * Create trunk/branches/tags subfolders using -s/--svn option * 6 minor enhancements * Added dependency to activesupport gem * Modified spec.rb template for new rpec syntax (describe "..." { it "..." }) [thx Aslak Hellesøy] * Added 'email.txt' to the CLEAN list to be removed on 'rake clean' * Added --delete-excluded to the rsync command [thx Jeroen Janssen] * On template: "Version" is in

's * Specified CLEAN is added/or'd with default Hoe clean_globs (via |=) * 1 website enhancement * Refreshed the example output as its a big old (CHANGELOG -> History.txt) * Removed the "click anywhere" javascript in version box - it was playing up with the link to the book == 0.10.4 2007-06-02 * 2 minor enhancement * website_upload now ignores .svn files [Thx Jeroen Janssen] * website/index.txt includes link to "8 steps to fix other ppls code" and a default svn URL * 1 website enhancement * Link to "Beginning Ruby" as it features this gem [Thx Peter Cooper for the plug] - its an affiliate amazon link so I can make $$$ and retire to Fiji == 0.10.3 2007-05-25 * 1 major enhancement * rspec test framework now works via 'spec' task [Jeroen Janssen] * 3 minor improvement * For rspec gems, default task => spec task * Generated rakefile checks for existance of rspec gem else shows how to get it * The require statement in the lib/.rb file now uses lowercase project name [Jeroen Janssen] == 0.10.2 2007-05-25 * 3 major enhancements * Generated Rakefile only attempts to discover username from ~/.rubyforge/user-config.yml when its required [thx Jeroen Janssen] * Helpful error message produced if 'rubyforge setup' never run * Fixed the REV algorithm for subversion [thx Robert Berger] * 2 minor enhancement * Copied index.txt into README.txt - it looks crap, but at least there is content * Generated Rakefile was missing a \ == 0.10.1 2007-05-24 * 4 minor enhancements * Fixed the generation of test files in the manifest * Generated rakefile#deploy prompts user to do svn tag * Renamed README -> README.txt to conform to new hoe change * Changed History.txt markup (+++ => ==; + => *) [Thx Jeroen Janssen] * 1 dependency update: * Hoe 1.2.1 * Still being worked on: * Gems using rspec include a #spec task to run all spec tests; currently tests aren't working. == 0.10.0 2007-05-19 * 3 major enhancements * can generate rspec default tests (or still test::unit tests) using --with-test=rspec [thx Robby Russell] * fetches your full name and email from ~/.rubyforge/user-config.yml (add keys user_name and email) * 2 minor enhancements * Generated lib/#{gem_name}.rb includes an empty module * Generated lib/#{gem_name}.rb does not include "require all", instead you do it manually for each included file == 0.9.4 2007-05-18 * 5 minor enhancements * Pass your full name into the generator to be inserted into License.txt, index.txt, Rakefile etc * 'Licence' => 'License' (thx Peter Burns) * Generates a blank index.html so that 'rake package' works straight away * Includes :local_deploy which does tasks :website_generate and :install_gem * License.txt generated * this gem has a License.txt file (MIT license) == 0.9.3 20/4/2007 * 1 minor enhancement * Added 'deploy' task that generates website AND release new gem * 1 website fix * Fixed download link == 0.9.2 18/4/2007 * 1 minor improvement: * Generated apps include a "require 'rubygems' line at the top" * 1 website fix * Notes that the index.txt file includes Dr Nic details, not their own.[FIXME!!] == 0.9.1 16/4/2007 * 1 bugfix: * I thoughtfully added an extra line (commented out) for sending the website to a subfolder... it caused grief at the 13th hour == 0.9.0 12/4/2007 * 3 major enhancements: * Includes a basic website template, with rake tasks for generation and upload to rubyforge * Generates a History.txt file, and automatically uses it in Hoe task * Generated applications include framework for supporting command line options * 3 minor enhancements: * Include History.txt in this gem * test files ordered correctly in generated Manifest.txt * no blank line in Manifest.txt if no bin apps == 0.8.1 * Generated test file's class name now prefixed with Test, instead of suffixed == 0.8.0 * Uses hoe itself - less hypocritical * Generated test files use name 'test_.rb' instead of '_test.rb' to support * ZenTest's autotest expectations of naming. Manifest updated too. == 0.7.1 * Installed gems now don't require 'hoe' (based on comments at http://blog.evanweaver.com/articles/2007/01/10/if-you-dont-want-to-hoe-echoe)