-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhatemile.gemspec
More file actions
37 lines (31 loc) · 1.22 KB
/
hatemile.gemspec
File metadata and controls
37 lines (31 loc) · 1.22 KB
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
require 'date'
require 'rubygems'
Gem::Specification.new do |gem|
gem.name = 'hatemile'
gem.version = '2.0'
gem.date = Date.today.to_s
gem.summary = 'HaTeMiLe can convert HTML code in a code more accessible.'
gem.description = 'HaTeMiLe (HTML Accessible) is a open source library ' \
'developed to improve accessibility converting a HTML code in a new HTML ' \
'code more accessible, its features is based in WCAG 2.0 document, eMAG ' \
'3.1 document and some features of Job Access With Speech (JAWS), Opera ' \
'before version 15 and Mozilla Firefox.'
gem.license = 'Apache-2.0'
gem.author = 'Carlson Santana Cruz'
gem.email = 'hatemileforall@gmail.com'
gem.homepage = 'https://github.com/hatemile/hatemile-for-ruby'
gem.files = Dir[
'CODE_OF_CONDUCT.md',
'Gemfile',
'hatemile.gemspec',
'LICENSE',
'Rakefile',
'README',
'{bin,lib,man,test,spec}/**/*'
]
gem.add_runtime_dependency('css_parser', '~> 1.6', '>= 1.6.0')
gem.add_runtime_dependency('nokogiri', '~> 1.8', '>= 1.8.0')
gem.add_development_dependency('bundler', '~> 1.3')
gem.add_development_dependency('rubocop', '~> 0.58', '>= 0.58.1')
gem.add_development_dependency('yard', '~> 0.9', '>= 0.9.14')
end