I have a repository in github using travis-ci
https://github.com/alu0100786330/prct09
And I want to integrate coverall with travis, I'm using cloud9 and this is the URL
https://ide.c9.io/alu0100786330/prt9
I add to the Gemspec this lines
gem 'coveralls', require: false
*To the .coveralls.yml
service_name: travis-ci
repo_token: kzOty157GlK2mMpKsSAjoeDGJ6bfnfarQ
And to the spec_helper in the top
require 'coveralls'
Coveralls.wear!
I execute the bundle install
and push the changes to the repository and these are the error that appear in my travis
https://travis-ci.org/alu0100786330/prct09
How can I fix the mistakes?