Gab-Social/lib/gabsocial/cache_cli.rb
2019-07-02 03:10:25 -04:00

20 lines
358 B
Ruby

# frozen_string_literal: true
require_relative '../../config/boot'
require_relative '../../config/environment'
require_relative 'cli_helper'
module GabSocial
class CacheCLI < Thor
def self.exit_on_failure?
true
end
desc 'clear', 'Clear the cache storage'
def clear
Rails.cache.clear
say('OK', :green)
end
end
end