Sha256: 51fc9d83fee78da0782979f74170aa29bb1b0111cdd3f34ad84b14c8f23ff584
Contents?: true
Size: 1003 Bytes
Versions: 9
Compression:
Stored size: 1003 Bytes
Contents
# encoding: utf-8 module RailsBestPractices module Reviews # Review view and helper files to make sure not use time_ago_in_words or distance_of_time_in_words_to_now. # # See the best practice details here http://rails-bestpractices.com/posts/105-not-use-time_ago_in_words. # # Implementation: # # Review process: # check all fcall node to see if its message is time_ago_in_words and distance_of_time_in_words_to_now class NotUseTimeAgoInWordsReview < Review interesting_nodes :fcall interesting_files VIEW_FILES, HELPER_FILES url "http://rails-bestpractices.com/posts/105-not-use-time_ago_in_words" # check fcall node to see if its message is time_ago_in_words or distance_of_time_in_words_to_now add_callback :start_fcall do |node| if "time_ago_in_words" == node.message.to_s || "distance_of_time_in_words_to_now" == node.message.to_s add_error "not use time_ago_in_words" end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems