Module: SBA::Client::Loans
Instance Method Summary collapse
-
#loan_grants_by_federal(options = {}) ⇒ Hash
Returns financing programs available from Federal government agencies and select non-profit organizations nationwide.
-
#loan_grants_by_federal_state(state, options = {}) ⇒ Hash
Returns all small business financing programs sponsored by federal and state government agencies and selected non-profit and commercial organizations.
-
#loan_grants_by_industry(industry, options = {}) ⇒ Hash
Returns all small business financing programs for a specific industry in all 54 states and territories (when available).
-
#loan_grants_by_industry_specialty(industry, specialty, options = {}) ⇒ Hash
Returns financing programs for specific industries AND specific business groups (e.g., women, veterans, minorities, etc.); or business activities (e.g., export, energy efficiency, disaster assistance, etc.).
-
#loan_grants_by_specialty(specialty, options = {}) ⇒ Hash
Returns small business special financing programs for certain business owner groups (e.g., women, veterans, minorities, etc.); or business activities (e.g., export, energy efficiency, disaster assistance, etc.).
-
#loan_grants_by_state(state, options = {}) ⇒ Hash
Returns all small business financing programs sponsored by state government agencies and select non-profit and commercial organizations.
-
#loan_grants_by_state_industry(state, industry, options = {}) ⇒ Hash
Returns all small business financing programs for a specific industry in a specific state.
-
#loan_grants_by_state_industry_specialty(state, industry, specialty, options = {}) ⇒ Hash
Returns state programs by industry and specific business groups or specialized business activities.
-
#loan_grants_by_state_specialty(state, specialty, options = {}) ⇒ Hash
Returns state programs for specific business groups or specialized business activities.
Instance Method Details
#loan_grants_by_federal(options = {}) ⇒ Hash
Returns financing programs available from Federal government agencies and select non-profit organizations nationwide.
16 17 18 |
# File 'lib/sba/client/loans.rb', line 16 def loan_grants_by_federal(={}) response = get("loans_grants/federal.json", ) end |
#loan_grants_by_federal_state(state, options = {}) ⇒ Hash
Returns all small business financing programs sponsored by federal and state government agencies and selected non-profit and commercial organizations.
40 41 42 |
# File 'lib/sba/client/loans.rb', line 40 def loan_grants_by_federal_state(state, ={}) response = get("loans_grants/federal_and_state_financing_for/#{state}.json", ) end |
#loan_grants_by_industry(industry, options = {}) ⇒ Hash
Returns all small business financing programs for a specific industry in all 54 states and territories (when available).
52 53 54 |
# File 'lib/sba/client/loans.rb', line 52 def loan_grants_by_industry(industry, ={}) response = get("loans_grants/nil/for_profit/#{industry}/nil.json", ) end |
#loan_grants_by_industry_specialty(industry, specialty, options = {}) ⇒ Hash
Returns financing programs for specific industries AND specific business groups (e.g., women, veterans, minorities, etc.); or business activities (e.g., export, energy efficiency, disaster assistance, etc.).
79 80 81 |
# File 'lib/sba/client/loans.rb', line 79 def loan_grants_by_industry_specialty(industry, specialty, ={}) response = get("loans_grants/nil/for_profit/#{industry}/#{specialty}.json", ) end |
#loan_grants_by_specialty(specialty, options = {}) ⇒ Hash
Returns small business special financing programs for certain business owner groups (e.g., women, veterans, minorities, etc.); or business activities (e.g., export, energy efficiency, disaster assistance, etc.).
65 66 67 |
# File 'lib/sba/client/loans.rb', line 65 def loan_grants_by_specialty(specialty, ={}) response = get("loans_grants/nil/for_profit/nil/#{specialty}.json", ) end |
#loan_grants_by_state(state, options = {}) ⇒ Hash
Returns all small business financing programs sponsored by state government agencies and select non-profit and commercial organizations.
28 29 30 |
# File 'lib/sba/client/loans.rb', line 28 def loan_grants_by_state(state, ={}) response = get("loans_grants/state_financing_for/#{state}.json", ) end |
#loan_grants_by_state_industry(state, industry, options = {}) ⇒ Hash
Returns all small business financing programs for a specific industry in a specific state.
92 93 94 |
# File 'lib/sba/client/loans.rb', line 92 def loan_grants_by_state_industry(state, industry, ={}) response = get("loans_grants/#{state}/for_profit/#{industry}/nil.json", ) end |
#loan_grants_by_state_industry_specialty(state, industry, specialty, options = {}) ⇒ Hash
Returns state programs by industry and specific business groups or specialized business activities.
119 120 121 |
# File 'lib/sba/client/loans.rb', line 119 def loan_grants_by_state_industry_specialty(state, industry, specialty, ={}) response = get("loans_grants/#{state}/for_profit/#{industry}/#{specialty}.json", ) end |
#loan_grants_by_state_specialty(state, specialty, options = {}) ⇒ Hash
Returns state programs for specific business groups or specialized business activities.
105 106 107 |
# File 'lib/sba/client/loans.rb', line 105 def loan_grants_by_state_specialty(state, specialty, ={}) response = get("loans_grants/#{state}/for_profit/nil/#{specialty}.json", ) end |