https://github.com/chip/businessdotgov
Ruby gem for the Business.gov Search API
https://github.com/chip/businessdotgov
Last synced: about 2 months ago
JSON representation
Ruby gem for the Business.gov Search API
- Host: GitHub
- URL: https://github.com/chip/businessdotgov
- Owner: chip
- License: mit
- Created: 2010-10-10T01:56:23.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2010-10-10T03:32:07.000Z (over 15 years ago)
- Last Synced: 2026-04-13T14:11:51.485Z (2 months ago)
- Language: Ruby
- Homepage:
- Size: 93.8 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rdoc
- License: LICENSE
Awesome Lists containing this project
README
= businessdotgov
Ruby library for the following Business.gov Search API
http://www.business.gov/about/features/api/loans-grants/state-industry.html
Examples:
industries = BusinessDotGov::LoansGrants::INDUSTRIES
@industry = industries[rand(industries.length)]
@state_abbreviation = 'FL'
# format is :json by default
results = BusinessDotGov::LoansGrants.new.search({:industry => @industry, :state_abbreviation => @state_abbreviation})
puts "Found #{results.size} results for #{@industry} within #{@state_abbreviation}"
# :json format
puts "First result title #{results.first['title']}"
# specify if :xml format is desired
results = BusinessDotGov::LoansGrants.new.search({:industry => @industry, :state_abbreviation => @state_abbreviation, :format => :xml})
# :xml format
puts "First result title #{results['grant_loans'][0]['title']}"
== Note on Patches/Pull Requests
* Fork the project.
* Make your feature addition or bug fix.
* Add tests for it. This is important so I don't break it in a
future version unintentionally.
* Commit, do not mess with rakefile, version, or history.
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
* Send me a pull request. Bonus points for topic branches.
== Copyright
Copyright (c) 2010 Chip Castle. See LICENSE for details.