I am using travisCI to deploy to heroku and I am getting this error. He just started to happen.
I have a main rakefile rail, and I have a file that looks like travis cannot detect rake tasks:
# lib\tasks\spec.rake require 'rspec/core/rake_task' RSpec::Core::RakeTask.new task :default => :spec
Why will this error be displayed specifically for heroku?
EDIT - I had a similar version (better):
begin require 'rspec/core/rake_task' desc "Run all examples" RSpec::Core::RakeTask.new(:spec) do |t| t.rspec_opts = %w[--color] t.pattern = 'spec/*_spec.rb' end rescue LoadError end
Koxzi source share