cleanliness 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/cleanliness/dictionary.rb +1 -0
- data/lib/cleanliness/version.rb +1 -1
- metadata +2 -2
@@ -11,6 +11,7 @@ module Cleanliness
|
|
11
11
|
replace ={}
|
12
12
|
rgx = Regexp.new "#{@dictionary.keys.map{|k| "(#{k})"}.join("|")}", Regexp::IGNORECASE
|
13
13
|
scan_matches = string.scan(rgx).flatten.reject!(&:blank?)
|
14
|
+
return string if scan_matches.nil?
|
14
15
|
scan_matches.each{|k|
|
15
16
|
replace[k] = (k =~ /^[A-Z]{1}/).nil? ? @dictionary[k.downcase] : @dictionary[k.downcase].capitalize
|
16
17
|
}
|
data/lib/cleanliness/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cleanliness
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-06-
|
12
|
+
date: 2013-06-17 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: Clean Language Validation
|
15
15
|
email:
|