Created
September 3, 2008 08:03
-
-
Save IceskYsl/8558 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
desc 'Lists ActionController::StatusCodes::STATUS_CODES like routes' | |
task :status_codes => :environment do | |
puts "Status - Name" | |
ActionController::StatusCodes::STATUS_CODES.to_a.sort.each { |code, message| | |
puts "#{code} - #{message.gsub(/ /, "").underscore.to_sym}" | |
} if ActionController::StatusCodes.constants.include?('STATUS_CODES') | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment