Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to create a method in additional to the default 'foo'.titlecase that will correctly add "possessiveness" to it.

The string is a user's name (<- just did one right there! )

For example: "sam" is the user <%= user.titlecase.possessive + ' Profile' %> => #Sam's Profile

It just needs to handle edge cases like:

Steelers's Profile ( should be Steelers' Profile) Ross's Profile ( should be Ross' Profile )

share|improve this question
Where is the user's name stored? Do you mean it is the class name? – txwikinger Jul 12 '09 at 4:54
Looks like a minimalist solution here: gist.github.com/474384 – Benson Jul 13 '10 at 19:49

4 Answers

up vote 20 down vote accepted

I needed this too and so I made the implementation available on github and as a gem on rubygems so you can include it in your project pretty easy.

In rails 3 all you do is

gem "possessive" 

and you will have it.

share|improve this answer
Thank you, this is perfect. – Tobias Cohen May 10 '11 at 4:30
2  
It looks like this gem (and all the other comments on here) are doing it wrong. You can't just add an apostrophe to any noun that ends in 's', it needs to be singular. "Mr. Adams' violin is a Guarneri." is incorrect. "Mr. Adams's violin is a Guarneri." is correct. – bratsche Dec 26 '11 at 3:34
8  
@bratsche I disagree. "Carlos' opinion is correct" – Carlos Rendon May 28 '12 at 21:39

What you want is pretty trivial to do, given ruby's open classes.

class String
  def possessive
    self + case self[-1,1]#1.8.7 style
    when 's' then "'"
    else "'s"
    end
  end
end


#rspec examples
describe "String#possessive" do
  it "should turn Steelers into Steelers'" do
    "Steelers".possessive.should == "Steelers'"
  end
  it "should turn sam into sam's" do
    "sam".possessive.should == "sam's"
  end
end

You would probably want to put this in a plugin, to keep it separate from your business logic code.

$ script/generate plugin Possessiveate

Then just drop the code to the generated init.rb in the plugin's directory. Pretty much all the other generated files aren't needed, but you might be interested in looking at the default file structure.

share|improve this answer

A minor rewrite of BaroqueBobcat's code, for Shoulda lovers (and lovers of the ternary operator):

Initializer:

module StringExtensions
  def possessive
    self + ('s' == self[-1,1] ? "'" : "'s")
  end
end

class String
  include StringExtensions
end

Shoulda spec:

require File.expand_path(File.dirname(__FILE__) + "/../test_helper")

class StringExtensionsTest < ActiveSupport::TestCase
  context 'String' do
    context '#possessive' do
      should "turn sam into sam's" do
        assert_equal "sam's", "sam".possessive
      end
      should "turn Steelers into Steelers'" do
        assert_equal "Steelers'", "Steelers".possessive
      end
    end
  end
end
share|improve this answer

I didn't really want to use a Gem so implemented a combination of some answers already here. But then I was woken in the middle of the night by the realisation that these examples are incorrect. What about "who" and "it"? (English is hard!)

module Possessive
  def possessive
    suffix = if self.downcase == 'it'
      "s"
    elsif self.downcase == 'who'
      'se'
    elsif self.end_with?('s')
      "'"
    else
      "'s"
    end
    self + suffix
  end
end

class String
  include Possessive
end

And the specs:

describe Possessive do
  it "should possessive names not ending in s" do
    "james".possessive.should == "james'"
  end

  it "should possessive names not ending in s" do
    "James".possessive.should == "James'"
  end

  it "should possessive names ending in s" do
    "sally".possessive.should == "sally"
  end

  it "should possessive names ending in s" do
    "Sally".possessive.should == "Sally's"
  end

  it "should possessive its" do
    "it".possessive.should == "its"
  end

  it "should possessive Its" do
    "It".possessive.should == "Its"
  end

  it "should possessive who" do
    "who".possessive.should == "whose"
  end

  it "should possessive Who" do
    "Who".possessive.should == "Whose"
  end
end

Note: It's not the most elegant solution. But as Albert Einstein said, elegance is for tailors.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.