0.0
No commit activity in last 3 years
No release in over 3 years
Simple library for finding song lyrics
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.16
~> 0.8
>= 0
~> 3.7
~> 4.0
~> 3.2

Runtime

~> 0.9
~> 1.8
~> 0.19
 Project Readme

LyricsFinder Gem Version Build Status Coverage Status

Simple library to search for song lyrics

Installation

Add this line to your application's Gemfile:

gem 'lyrics_finder'

And then execute:

$ bundle

Or install it yourself as:

$ gem install lyrics_finder

Hello World!

Search passing the author and the song title as parameters to LyricsFinder.search:

  LyricsFinder.search 'idina menzel', 'let it go'

Which will return and array with all the verses of the song as strings, or nil if the song cannot be found.

Example

In your ruby apps:

  require 'lyrics_finder'
  
  @song = LyricsFinder.search 'idina menzel', 'let it go'
  
  puts @song

CLI

LyricsFinder is also available as a command-line tool.

$ lyricsfinder search -a 'idina menzel' -t 'let it go'

Contributing

  1. Fork it ( https://github.com/[my-github-username]/lyrics_finder/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