joshhepworth/titlify

View on GitHub
titlify.gemspec

Summary

Maintainability
Test Coverage
# encoding: UTF-8

$:.push File.expand_path("../lib", __FILE__)
require "titlify/version"

Gem::Specification.new do |s|
  s.name        = "titlify"
  s.version     = Titlify::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Josh Hepworth"]
  s.email       = ["josh@friendsoftheweb.com"]
  s.homepage    = "http://github.com/joshhepworth/titlify"
  s.summary     = %q{Gonna be the best damn titlecasing gem around, with rules based on AP Stylebook and Chicago Manual of Style.}
  s.description = s.summary

  s.rubyforge_project = "titlify"

  # s.add_dependency("nokogiri")

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths  = ["lib"]
end