-
Notifications
You must be signed in to change notification settings - Fork 20
/
rubypants.gemspec
32 lines (29 loc) · 1.12 KB
/
rubypants.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'version'
Gem::Specification.new do |s|
s.name = 'rubypants'
s.version = RubyPantsVersion::VERSION
s.summary = "RubyPants is a Ruby port of the smart-quotes library SmartyPants."
s.description = <<-EOF
The original "SmartyPants" is a free web publishing plug-in for
Movable Type, Blosxom, and BBEdit that easily translates plain ASCII
punctuation characters into "smart" typographic punctuation HTML
entities.
EOF
s.authors = [
"John Gruber",
"Chad Miller",
"Christian Neukirchen",
"Jeremy McNevin",
"Aron Griffis"
]
s.email = '[email protected]'
s.files = `git ls-files`.split($/)
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ["lib"]
s.homepage = 'https://github.com/jmcnevin/rubypants'
s.license = 'MIT'
s.add_development_dependency('minitest')
end