This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
|
desc "Creates the fund for managing."
|
|
task :create_fund => :environment do
|
|
begin
|
|
fund = Fund.new
|
|
fund.save!
|
|
rescue => exception
|
|
puts "Failed: #{exception.inspect}"
|
|
end
|
|
end
|