-
Notifications
You must be signed in to change notification settings - Fork 0
/
convert.gemspec
26 lines (23 loc) · 1002 Bytes
/
convert.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
Gem::Specification.new do |s|
s.name = 'convert'
s.version = '0.1.7'
s.date = '2017-11-21'
s.summary = "Convert strings and HTML to links and embedded content"
s.description = "Easily convert any string and replace with links and embedded content from a long list of providers and libraries."
s.authors = ["Fugroup Limited"]
s.add_runtime_dependency 'redcarpet', '~> 3.4'
s.add_runtime_dependency 'kramdown', '~> 1.9'
s.add_runtime_dependency 'rinku', '~> 2.0'
s.add_runtime_dependency 'sanitize', '~> 4.4'
s.add_runtime_dependency 'htmlentities', '~> 4.3'
s.add_runtime_dependency 'nokogiri', '~> 1.6'
s.add_runtime_dependency 'simpleidn', '>= 0'
s.add_development_dependency 'futest', '>= 0'
s.email = '[email protected]'
s.homepage = 'https://github.com/fugroup/convert'
s.license = 'MIT'
s.require_paths = ['lib']
s.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
end