public
Description: Ruby version of John Gruber's TitleCase.pl
Homepage: http://github.com/samsouder/titlecase
Clone URL: git://github.com/samsouder/titlecase.git
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.1"
  s.date = "2009-10-16"
  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