class FundRaise::ProjectGrant
Public Class Methods
new(name, target=1000, grant=0)
click to toggle source
Calls superclass method
# File lib/fund_raise/grant_project.rb, line 7 def initialize (name, target=1000, grant=0) super(name, target, grant) end
Public Instance Methods
remove_funds(remove_funding=15)
click to toggle source
# File lib/fund_raise/grant_project.rb, line 11 def remove_funds(remove_funding=15) puts "#{name} is a grant. Funds can not be removed." end