forked from dejan/auto_html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
auto_html.gemspec
27 lines (21 loc) · 922 Bytes
/
auto_html.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
27
# frozen_string_literal: true
Gem::Specification.new do |gem|
gem.name = 'auto_html'
gem.version = '2.0.0'
gem.summary = 'Plain text to HTML conversion'
gem.description = 'Collection of filters for transforming text into HTML code'
gem.author = 'Dejan Simic'
gem.email = '[email protected]'
gem.homepage = 'https://github.com/dejan/auto_html'
gem.license = 'MIT'
gem.add_dependency 'gemoji', '~> 3.0.0'
gem.add_dependency 'redcarpet', '~> 3.3'
gem.add_dependency 'rinku', '~> 1.7'
gem.add_dependency 'tag_helper', '~> 0.5'
gem.add_development_dependency 'rake', '~> 10.4'
gem.add_development_dependency 'rspec', '~> 3.3'
gem.add_development_dependency 'rspec_junit_formatter', '~> 0.2'
gem.add_development_dependency 'rubocop', '~> 0.52.1'
gem.files = Dir['Rakefile', '{bin,lib,man,test,spec}/**/*',
'README*', 'LICENSE'] & `git ls-files -z`.split("\0")
end