History.txt in newgem-0.11.0 vs History.txt in newgem-0.13.0
- old
+ new
@@ -1,4 +1,46 @@
+== 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