lib/tasks/typus.rake in typus-3.0.6 vs lib/tasks/typus.rake in typus-3.0.7
- old
+ new
@@ -1,10 +1,10 @@
namespace :typus do
desc "List current roles."
task :roles => :environment do
Typus::Configuration.roles.each do |role|
- puts "#{role.first.capitalize} role has access to:"
+ puts "'#{role.first}' role has access to:"
role.last.each { |k, v| puts "- #{k}: #{v}" }
end
end
end