samsouder / titlecase

Ruby version of John Gruber's TitleCase.pl

This URL has Read+Write access

commit  d8e6a9f37e0f0b7e56d11a26bec3ba8718d160f9
tree    f753edad623919d5cdc745c49ea91993a0e62154
parent  7b4992cf0a1db37cc1161e14e8c2f5a28141b71d
titlecase / titlecase.gemspec
100644 12 lines (12 sloc) 0.6 kb
1
2
3
4
5
6
7
8
9
10
11
12
Gem::Specification.new do |s|
  s.name = "titlecase"
  s.version = "0.1.0"
  s.date = "2008-05-23"
  s.summary = "String methods to properly title case a headline."
  s.email = "samsouder@gmail.com"
  s.homepage = "http://github.com/samsouder/titlecase"
  s.description = "titlecase is a set of methods on the Ruby String class to add title casing support as seen on Daring Fireball <http://daringfireball.net/2008/05/title_case>."
  s.authors = ["Samuel Souder"]
  s.files = ["README", "titlecase.gemspec", "lib/titlecase.rb", "spec/examples.yaml", "spec/titlecase_spec.rb"]
  s.has_rdoc = false
end