lib/gemsmith/templates/lib/generators/gem/upgrade/upgrade_generator.rb.tmp in gemsmith-0.4.0 vs lib/gemsmith/templates/lib/generators/gem/upgrade/upgrade_generator.rb.tmp in gemsmith-0.5.0

- old
+ new

@@ -1,10 +1,10 @@ module <%= config[:gem_class] %> class UpgradeGenerator < Rails::Generators::Base source_root File.join(File.dirname(__FILE__), "..", "templates") desc "Upgrades previously installed <%= config[:gem_class] %> resources." - def execute - # TODO - Add your fancy/schmancy upgrade code here. + def upgrade + # TODO - Add your upgrade code here. end end end