Travis CI - "Don't know how to build task 'default'"
Travis CI is attempting to run your specs by executing "bundle exec rake." The problem here is simply that you don't have a default task set up in your Rakefile.
Simply add the following lines to your Rakefile:
require 'rspec/core/rake_task'
task :default => :spec
RSpec::Core::RakeTask.new
Written by Tom Milewski
Related protips
2 Responses
thanks! that helped me a lot!
over 1 year ago
·
Thank you!
over 1 year ago
·
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Ruby
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#