forked from jmcnevin/rubypants
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrubypants.gemspec
31 lines (28 loc) · 1.09 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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "rubypants/version"
Gem::Specification.new do |s|
s.name = 'rubypants'
s.version = RubyPants::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"
]
s.email = 'jeremy@spokoino.net'
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