Skip to content

A ruby gem for checking whether a given string is a palindrome or not.

Notifications You must be signed in to change notification settings

Benmuiruri/ruby-palindrome-checker

Repository files navigation

Palindrome detector

bkiarie_palindrome is a sample Ruby gem to test whether a given input is a sting.

Installation

To install bkiarie_palindrome, add this line to your application's Gemfile:

gem 'bkiarie_palindrome'

Then install as follows:

$ bundle install

Or install it directly using gem:

$ gem install bkiarie_palindrome

Usage

bkiarie_palindrome adds a palindrome? method to the String class, and can be used as follows:

$ irb
>> require 'bkiarie_palindrome'
>> "honey badger".palindrome?
=> false
>> "deified".palindrome?
=> true
>> "Able was I, ere I saw Elba.".palindrome?
=> true
>> phrase = "Madam, I'm Adam."
>> phrase.palindrome?
=> true

License

The gem is available as open source under the terms of the MIT License.

About

A ruby gem for checking whether a given string is a palindrome or not.

Resources

Stars

Watchers

Forks

Packages

No packages published