]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/tracepoint.rb
Fix some rubocop rails style issues
[rails.git] / app / models / tracepoint.rb
index 398a849d0ef757f840bb3859f4429fae1464e27d..9485b8a14086b7d291c42eb24ff85a2fa4ee689c 100644 (file)
@@ -3,11 +3,10 @@ class Tracepoint < ActiveRecord::Base
 
   self.table_name = "gps_points"
 
-  validates_numericality_of :trackid, :only_integer => true
-  validates_numericality_of :latitude, :only_integer => true
-  validates_numericality_of :longitude, :only_integer => true
-  validates_associated :trace
-  validates_presence_of :timestamp
+  validates :trackid, :numericality => { :only_integer => true }
+  validates :latitude, :longitude, :numericality => { :only_integer => true }
+  validates :trace, :associated => true
+  validates :timestamp, :presence => true
 
   belongs_to :trace, :foreign_key => "gpx_id"