1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-19 13:19:39 +02:00
Maybe/lib/tasks/invites.rake
Josh Pigford 59e4eff24a Lint
2024-10-08 12:30:28 -05:00

9 lines
250 B
Ruby

namespace :invites do
desc "Create invite code(s). Usage: rake invites:create[count]"
task :create, [ :count ] => :environment do |_, args|
count = (args[:count] || 1).to_i
count.times do
puts InviteCode.generate!
end
end
end