Sha256: a36200799ca24e069bf1b7b78ecea7a26a8016de4458f1d9ea1311017ad3785f
Contents?: true
Size: 1.96 KB
Versions: 3
Compression:
Stored size: 1.96 KB
Contents
# LyricFind [](http://badge.fury.io/rb/LyricFind) | [](https://codeclimate.com/github/ihassin/lyricfind) | [](http://opensource.org/licenses/MIT) | [](http://github.com/ihassin/lyricfind/issues) | [](http://github.com/ihassin/lyricfind/releases) | [](https://gemnasium.com/ihassin/lyricfind) This gem allows your application to access LyricFind's API services ## Installation Add this line to your application's Gemfile: ```ruby gem 'LyricFind' ``` And then execute: $ bundle Or install it yourself as: $ gem install LyricFind ## Running tests Create a file called **lyricfind.yml** (see the [example](https://github.com/ihassin/lyricfind/blob/master/spec/lyricfind.yml.example)) and put in your keys there. The run the tests using ```ruby rake ``` ## Usage For usage examples from tests, please see [here](https://github.com/ihassin/lyricfind/blob/master/spec/lyricfind_spec.rb) Simple example: ```ruby require 'LyricFind' lf = LyricFind::API.new 'search-key', 'display-key' puts lf.get_lyrics_by_song_name 'u2', 'one' ``` ## Contributing 1. Fork it (https://github.com/ihassin/lyricfind/fork) 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 a new Pull Request ## License [MIT](https://github.com/ihassin/lyricfind/blob/master/LICENSE.txt). ## Other efforts Look [here](https://github.com/pilu/lyricfind) if you're looking for am impementation in Go
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
LyricFind-0.1.6 | README.md |
LyricFind-0.1.5 | README.md |
LyricFind-0.1.4 | README.md |