namespace :users do

desc "It is first user."
task :first do
  user = User.first
  p 'OK'
end

end