From: Antonio Terceiro <terceiro@debian.org>
Date: Wed, 23 Mar 2016 11:04:51 -0300
Subject: Add gemspec

Because the original package does not provide one.
---
 escape.gemspec | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)
 create mode 100644 escape.gemspec

diff --git a/escape.gemspec b/escape.gemspec
new file mode 100644
index 0000000..7039899
--- /dev/null
+++ b/escape.gemspec
@@ -0,0 +1,40 @@
+# Generated by jeweler
+# DO NOT EDIT THIS FILE DIRECTLY
+# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
+# -*- encoding: utf-8 -*-
+
+Gem::Specification.new do |s|
+  s.name = "escape"
+  s.version = "0.2"
+
+  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
+  s.authors = ["Tanaka Akira"]
+  s.date = "2013-08-18"
+  s.description = "escape library provides several HTML/URI/shell escaping functions."
+  s.email = ["akr@fsij.org"]
+  s.extra_rdoc_files = [
+    "ChangeLog",
+    "README",
+    "VERSION"
+  ]
+  s.files = [
+    "escape.rb"
+  ]
+  s.homepage = "http://www.a-k-r.org/escape/"
+  s.require_paths = ["lib"]
+  s.rubygems_version = "1.8.23"
+  s.summary = "Ruby Escape library"
+
+  if s.respond_to? :specification_version then
+    s.specification_version = 3
+
+    if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
+      s.add_development_dependency(%q<rspec>, [">= 2.3"])
+    else
+      s.add_dependency(%q<rspec>, [">= 2.3"])
+    end
+  else
+    s.add_dependency(%q<rspec>, [">= 2.3"])
+  end
+end
+
