FIX: allow long words if they contain periods

This commit is contained in:
Arpit Jalan 2016-09-13 09:15:05 +05:30
parent 2c9a47dda5
commit e46204d195
2 changed files with 5 additions and 1 deletions

View File

@ -71,7 +71,7 @@ class TextSentinel
def seems_unpretentious?
# Don't allow super long words if there is a word length maximum
@opts[:max_word_length].blank? || @text.split(/\s|\/|-|\./).map(&:size).max <= @opts[:max_word_length]
@opts[:max_word_length].blank? || @text.split(/\s|\/|-|\.|:/).map(&:size).max <= @opts[:max_word_length]
end

View File

@ -117,6 +117,10 @@ describe TextSentinel do
expect(TextSentinel.new("error in org.gradle.internal.graph.CachingDirectedGraphWalker", max_word_length: 30)).to be_valid
end
it "allows a long string with colons" do
expect(TextSentinel.new("error in org.gradle.internal.graph.CachingDirectedGraphWalker:colon", max_word_length: 30)).to be_valid
end
end
context 'title_sentinel' do