Freesound Ruby
Consume the Freesound.org API with Ruby.
Note: This repository previously contained the freesound_ruby
gem. To see the last snapshot of that gem's source, see the freesound_ruby-archive branch.
Installation
Add this line to your application's Gemfile:
gem 'freesound'
And then execute:
$ bundle
Or install it yourself as:
$ gem install freesound
Usage
You will need an API key to use the Freesound gem:
require 'freesound'
Freesound.api_key = "your_api_key"
And a client object:
client = Freesound::Client.new
See the specs for usage examples.
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
Integration tests use VCR to record/playback responses. If you add/change a test, or re-record a test using VCR_RECORD_MODE=all
, you will need to set FREESOUND_KEY
to a valid API key.