Sha256: 3b838e300879cfcbe2f4b640c5b1bb065426c65096a068a02e1c0ccb7a49caae
Contents?: true
Size: 348 Bytes
Versions: 73
Compression:
Stored size: 348 Bytes
Contents
require 'rubocop-rspec' module Ws module Style module Inflector def camel_to_snake_case(string) if defined?(ActiveSupport::Inflector) ActiveSupport::Inflector.underscore(string) else super(string) end end end end end ::RuboCop::Cop::RSpec::FilePath.prepend Ws::Style::Inflector
Version data entries
73 entries across 73 versions & 1 rubygems