diff options
author | Dino Maric <dino.onex@gmail.com> | 2018-12-15 13:41:23 +0100 |
---|---|---|
committer | Dino Maric <dino.onex@gmail.com> | 2018-12-15 16:33:39 +0100 |
commit | 8415a6c5cf883f7ce6fe93b80ec99072fb04be83 (patch) | |
tree | 17a4e88934c3f9dee74ef9ce880acb3d8869645e /lib/tasks | |
parent | 749e923539075eef407e5d9b8c7c151a3b3171d4 (diff) | |
download | rails-8415a6c5cf883f7ce6fe93b80ec99072fb04be83.tar.gz rails-8415a6c5cf883f7ce6fe93b80ec99072fb04be83.tar.bz2 rails-8415a6c5cf883f7ce6fe93b80ec99072fb04be83.zip |
Fix Rails generators
1.Don't generate ApplicationMailboxTest when executing installer
2. Hookup test_unit, so console doesn't throw errors
Diffstat (limited to 'lib/tasks')
-rw-r--r-- | lib/tasks/install.rake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/install.rake b/lib/tasks/install.rake index 1f4c071494..598e30c2d4 100644 --- a/lib/tasks/install.rake +++ b/lib/tasks/install.rake @@ -8,7 +8,7 @@ namespace :action_mailbox do task install: %w[ environment run_generator copy_migrations ] task :run_generator do - system "#{RbConfig.ruby} ./bin/rails generate mailbox application" + system "#{RbConfig.ruby} ./bin/rails generate mailbox application --no-test-framework" end task :copy_migrations do |