attached 0.0.8 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/attached.rb +1 -1
- metadata +2 -2
data/lib/attached.rb
CHANGED
|
@@ -114,7 +114,7 @@ module Attached
|
|
|
114
114
|
message ||= "size must be specified" if minimum == zero && maximum == infi
|
|
115
115
|
message ||= "size must be a minimum of :minimum" if maximum == infi
|
|
116
116
|
message ||= "size must be a maximum of :maximum" if minimum == zero
|
|
117
|
-
message ||= "size must be between :minimum and :maximum
|
|
117
|
+
message ||= "size must be between :minimum and :maximum"
|
|
118
118
|
|
|
119
119
|
range = minimum..maximum
|
|
120
120
|
|