File: 0001-Add-gemspec.patch

package info (click to toggle)
ruby-escape 0.2-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 376 kB
  • ctags: 109
  • sloc: ruby: 288; makefile: 14
file content (56 lines) | stat: -rw-r--r-- 1,557 bytes parent folder | download | duplicates (3)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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
+