GitXplorerGitXplorer
a

freesound-ruby

public
1 stars
1 forks
0 issues

Commits

List of commits on branch main.
Unverified
225b5022d4ed22b3bc41e897fb1fa90a0c55d364

Remove release workflow

aalexgenco committed 4 years ago
Unverified
d0511892955778b30beb12cc3c8060f26b985152

Fix RELEASE_COMMAND

aalexgenco committed 4 years ago
Unverified
0cb3f6c0a13ce4cd1c81f50c16d61698bd68e6df

Bypass `rake release` git

aalexgenco committed 4 years ago
Unverified
0be937ee45e81adb817e7b789cd06d53b7429563

Remove Github Packages release

aalexgenco committed 4 years ago
Unverified
89d4df46942c892227c2aea566b0b04607112200

Add bump gem

aalexgenco committed 4 years ago
Unverified
2dc8074a4d820a12d9ec8abe1d2354057dfbcb78

Release to rubygems

aalexgenco committed 4 years ago

README

The README file for this repository.

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.

Build Status Gem Version

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

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. 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.