-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathescape_utils.gemspec
More file actions
21 lines (19 loc) · 866 Bytes
/
escape_utils.gemspec
File metadata and controls
21 lines (19 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require './lib/escape_utils/version' unless defined? EscapeUtils::VERSION
Gem::Specification.new do |s|
s.name = %q{escape_utils}
s.version = EscapeUtils::VERSION
s.authors = ["Brian Lopez"]
s.email = %q{seniorlopez@gmail.com}
s.extensions = ["ext/escape_utils/extconf.rb"]
s.files = `git ls-files`.split("\n")
s.homepage = %q{https://github.com/brianmario/escape_utils}
s.license = %q{MIT}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.4.2}
s.summary = %q{Faster string escaping routines for your web apps}
s.description = %q{Quickly perform HTML, URL, URI and Javascript escaping/unescaping}
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match?(%r{^(\.github|benchmark|test|script)/}) }
s.test_files = `git ls-files -z test`.split("\x0")
s.required_ruby_version = ">= 2.5"
end