appoxy-simple_record 1.0.19 → 1.0.20
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/simple_record.rb +6 -6
- metadata +1 -1
data/lib/simple_record.rb
CHANGED
|
@@ -154,16 +154,16 @@ module SimpleRecord
|
|
|
154
154
|
end
|
|
155
155
|
|
|
156
156
|
def self.has_ints(*args)
|
|
157
|
-
has_attributes(args)
|
|
158
|
-
are_ints(args)
|
|
157
|
+
has_attributes(*args)
|
|
158
|
+
are_ints(*args)
|
|
159
159
|
end
|
|
160
160
|
def self.has_dates(*args)
|
|
161
|
-
has_attributes(args)
|
|
162
|
-
are_dates(args)
|
|
161
|
+
has_attributes(*args)
|
|
162
|
+
are_dates(*args)
|
|
163
163
|
end
|
|
164
164
|
def self.has_booleans(*args)
|
|
165
|
-
has_attributes(args)
|
|
166
|
-
are_booleans(args)
|
|
165
|
+
has_attributes(*args)
|
|
166
|
+
are_booleans(*args)
|
|
167
167
|
end
|
|
168
168
|
|
|
169
169
|
@@ints = []
|