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

10 lines
248 B
Ruby
Raw Normal View History

namespace :invites do
2024-10-08 12:23:23 -05:00
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