Last active
August 29, 2015 14:22
-
-
Save itskingori/8ea7be8bc5de5aca9dba to your computer and use it in GitHub Desktop.
Adds possessive-ness to String in a Rails app
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /lib/yourapp/possessive.rb | |
module Yourapp | |
module Possessive | |
# Returns a possessive form of a string | |
def possessive | |
return self if self.empty? | |
self + ('s' == self[-1, 1] ? "'" : "'" + 's') | |
end | |
end | |
end | |
class String | |
include Yourapp::Possessive | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /spec/lib/yourapp/possessive_spec.rb | |
require 'rails_helper' | |
module Yourapp | |
RSpec.describe Possessive do | |
describe '.possessive' do | |
it 'possessive with a normal string' do | |
expect('Brian'.possessive).to eq "Brian's" | |
end | |
it 'possessive with a string ending with s' do | |
expect('Steelers'.possessive).to eq "Steelers'" | |
end | |
it 'possessive with an empty string' do | |
expect(''.possessive).to eq '' | |
end | |
end | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /lib/yourapp.rb | |
require 'yourapp/possessive' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment