-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorthotypo.gemspec
30 lines (23 loc) · 1.08 KB
/
orthotypo.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
28
29
30
# frozen_string_literal: true
require_relative "lib/orthotypo/version"
Gem::Specification.new do |spec|
spec.name = "orthotypo"
spec.version = Orthotypo::VERSION
spec.authors = ["Arnaud Levy"]
spec.email = ["[email protected]"]
spec.summary = "Pour un texte correctement typographié"
spec.description = "Il y a un corpus riche de règles typographiques, dépendant des langues. Cette gem vise à intégrer ces règles et à automatiser leur mise en application pour le web, quand cela est possible."
spec.homepage = "https://github.com/noesya/orthotypo"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.6.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/noesya/orthotypo"
spec.files = `git ls-files`.split("\n")
spec.require_paths = "lib"
spec.add_dependency "htmlentities"
spec.add_dependency "nokogiri"
spec.add_development_dependency "rspec"
spec.add_development_dependency "rspec-nc"
spec.add_development_dependency "rspec_junit_formatter"
spec.add_development_dependency "byebug"
end