class Coveralls::RakeTask
def initialize(*_args) # rubocop:disable Lint/MissingSuper
def initialize(*_args) # rubocop:disable Lint/MissingSuper namespace :coveralls do desc 'Push latest coverage results to Coveralls.io' task :push do require 'coveralls' Coveralls.push! end end end