From 094027b35a358a89ed9acd6762e7a711064abf5b Mon Sep 17 00:00:00 2001 From: Daniel Arnold Date: Thu, 11 Apr 2024 17:32:42 -0400 Subject: [PATCH] add string literal cops and symbol literal cop to rubocop-cache-ventures and bump version to 1.1.0 --- ruby/rubocop-cache-ventures.gemspec | 2 +- ruby/rubocop.yml | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ruby/rubocop-cache-ventures.gemspec b/ruby/rubocop-cache-ventures.gemspec index 8587ffb..5b2489f 100644 --- a/ruby/rubocop-cache-ventures.gemspec +++ b/ruby/rubocop-cache-ventures.gemspec @@ -7,7 +7,7 @@ Gem::Specification.new do |s| s.license = 'MIT' - s.version = '1.0.1' + s.version = '1.1.0' s.platform = Gem::Platform::RUBY s.add_dependency 'rubocop' diff --git a/ruby/rubocop.yml b/ruby/rubocop.yml index faf0913..f6d70d1 100644 --- a/ruby/rubocop.yml +++ b/ruby/rubocop.yml @@ -81,6 +81,15 @@ Security: Style/ReturnNil: Enabled: true +Style/StringLiterals: + Enabled: true + +Style/StringLiteralsInInterpolation: + Enabled: true + +Style/SymbolLiteral: + Enabled: true + Minitest/AssertEqual: Enabled: true