lib/autowow/features/gem.rb in autowow-0.16.1 vs lib/autowow/features/gem.rb in autowow-0.17.0

- old
+ new

@@ -75,19 +75,21 @@ end def ruby_check rubocop_parallel_autocorrect bundle_exec(["rspec"]) + db_migrate_reset + pretty_with_output.run(rake + ["db:seed"]) pretty_with_output.run(git_status) end def gem_install_source pretty_with_output.run("gem build *.gemspec") pretty_with_output.run("gem install *.gem") end - def db_migrate - pretty_with_output.run(rake_db_migrate) + def db_migrate_reset + pretty_with_output.run(rake_db_migrate_reset) end def db_schema pretty_with_output.run(rake_db_schema) end