mirror of
https://github.com/redmine/redmine.git
synced 2025-11-17 18:50:53 +01:00
Replace Enumerable#sort with faster Enumerable#sort_by (#29299).
Patch by Go MAEDA. git-svn-id: http://svn.redmine.org/redmine/trunk@17462 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -2,7 +2,7 @@ namespace :redmine do
|
||||
desc "List all permissions and the actions registered with them"
|
||||
task :permissions => :environment do
|
||||
puts "Permission Name - controller/action pairs"
|
||||
Redmine::AccessControl.permissions.sort {|a,b| a.name.to_s <=> b.name.to_s }.each do |permission|
|
||||
Redmine::AccessControl.permissions.sort_by {|p| p.name.to_s}.each do |permission|
|
||||
puts ":#{permission.name} - #{permission.actions.join(', ')}"
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user