Skip to content

Instantly share code, notes, and snippets.

@itskingori
Last active August 29, 2015 14:22
Show Gist options
  • Save itskingori/8ea7be8bc5de5aca9dba to your computer and use it in GitHub Desktop.
Save itskingori/8ea7be8bc5de5aca9dba to your computer and use it in GitHub Desktop.
Adds possessive-ness to String in a Rails app
# /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
# /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
# /lib/yourapp.rb
require 'yourapp/possessive'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment