2

I was able to push up to heroku and now I need to migrate the database but I'm getting the error rake aborted!

I ran the command heroku rake db:migrate and my command line error was

WARNING: `heroku rake` has been deprecated. Please use `heroku run rake` instead.
Running `rake db:migrate` attached to terminal... up, run.6184
rake aborted!
uninitialized constant MiniTest::Rails
/app/vendor/bundle/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:19:in `const_missing'
/app/Rakefile:9:in `<top (required)>'
(See full trace by running task with --trace)

so then I ran command

Running `rake db:migrate` attached to terminal... up, run.8495
rake aborted!
uninitialized constant MiniTest::Rails
/app/vendor/bundle/ruby/2.0.0/gems/minitest-4.7.5/lib/minitest/unit.rb:19:in `const_missing'
/app/Rakefile:9:in `<top (required)>'
(See full trace by running task with --trace)

here is a copy of my Rakefile

#!/usr/bin/env rake
# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.

require File.expand_path('../config/application', __FILE__)
require 'rake/dsl_definition'
require 'rake'

Portfolio::Application.load_tasks

MiniTest::Rails::Testing.default_tasks << "features"

here is also a copy of my Gemfile

 group :development, :test do
      gem "minitest-rails"
      gem 'sqlite3'
    end

    group :production do
      gem 'pg'
      gem 'rails_12factor'
    end




    group :test do
      gem "minitest-rails-capybara"
    end

    # Gems used only for assets and not required
    # in production environments by default.
    group :assets do
      gem 'sass-rails',   '~> 3.2.3'
      gem 'coffee-rails', '~> 3.2.1'

      # See https://github.com/sstephenson/execjs#readme for more supported runtimes
      # gem 'therubyracer', :platforms => :ruby

      gem 'uglifier', '>= 1.0.3'
    end

    gem 'jquery-rails'

    # To use ActiveModel has_secure_password
    # gem 'bcrypt-ruby', '~> 3.0.0'

    # To use Jbuilder templates for JSON
    # gem 'jbuilder'

    # Use unicorn as the app server
    # gem 'unicorn'

    # Deploy with Capistrano
    # gem 'capistrano'

    # To use debugger
    # gem 'debugger'

anyone sure what my my problem is and why I can't migrate for heroku?

4

3 回答 3

2

您的 gemfile 在 :test 组中只有 minitest,这很好,但是您的 rake 文件会尝试使用 MiniTest 类。尝试这个:

if Rails.env == "test"
  MiniTest::Rails::Testing.default_tasks << "features"
end
于 2013-10-11T18:00:59.627 回答
1

原因如下:uninitialized constant MiniTest::Rails

您只为开发和测试环境指定了 minitest-rails。默认情况下,heroku 在生产环境中运行应用程序,并且您没有用于 prod 的 minitest-rails。

以及仅为测试运行测试任务的条件:

MiniTest::Rails::Testing.default_tasks << "features" if Rails.env == 'test'

于 2013-10-11T18:04:17.737 回答
0

jeanaux 和 rb512 绝对是在正确的轨道上,谢谢!

Heroku 使用Rakefile, 您不能引用该MiniTest:Rails模块,因为该 gem 仅包含在测试和开发组中Gemfile

我必须做的是检查测试和开发环境,让 Rake 再次工作。

if (Rails.env == "test" || Rails.env == "development")
  MiniTest::Rails::Testing.default_tasks << "features"
end
于 2013-10-11T21:29:43.200 回答