Sha256: fc0e3527aad06545a800d2f05ea3bd609ed162b230720e1bc5c76461c2412d6a
Contents?: true
Size: 370 Bytes
Versions: 16
Compression:
Stored size: 370 Bytes
Contents
RSpec::Matchers.define :have_windows_line_endings do match do |file| file.content.include?("\r\n") end failure_message do |file| "Expected file '#{file.name}' to have windows line endings, but it didn't" end failure_message_when_negated do |file| "Expected file '#{file.name}' to not have windows line endings, but it did" end end
Version data entries
16 entries across 16 versions & 1 rubygems