Sha256: d08ac13baba94e6fd005d3ed1743acad78e5e63e9fbaece2aff63386389f0008
Contents?: true
Size: 1.08 KB
Versions: 1
Compression:
Stored size: 1.08 KB
Contents
# 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 = ["arnaud.levy@noesya.coop"] 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
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
orthotypo-1.0.4 | orthotypo.gemspec |