1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-24 07:39:39 +02:00
Maybe/lib/tasks/invites.rake
2024-10-08 12:23:23 -05:00

9 lines
248 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