1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
lib = File.expand_path("../lib/", __FILE__)
$:.unshift lib unless $:.include?(lib)
require "htmlentities/version"
spec = Gem::Specification.new do |s|
s.name = "htmlentities"
s.version = HTMLEntities::VERSION::STRING
s.author = "Paul Battley"
s.email = "pbattley@gmail.com"
s.description = "A module for encoding and decoding (X)HTML entities."
s.summary = "Encode/decode HTML entities"
s.files = Dir["{lib,test,perf}/**/*.rb"]
s.license = "MIT"
s.require_path = "lib"
s.test_files = Dir["test/*_test.rb"]
s.has_rdoc = true
s.extra_rdoc_files = %w[History.txt COPYING.txt]
s.homepage = "https://github.com/threedaymonk/htmlentities"
s.add_development_dependency "rake", "~> 0"
end
|