-
Notifications
You must be signed in to change notification settings - Fork 0
/
text-metrics.gemspec
35 lines (29 loc) · 1.35 KB
/
text-metrics.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
31
32
33
34
35
# frozen_string_literal: true
require_relative "lib/text_metrics/version"
Gem::Specification.new do |s|
s.name = "text-metrics"
s.version = TextMetrics::VERSION
s.authors = ["Adrien POLY"]
s.email = ["Adrien POLY"]
s.homepage = "https://github.com/plume-app/text-metrics"
s.summary = "A Ruby gem to compute various metrics for text"
s.description = "A Ruby gem to compute various metrics for text, Currently focusing on English and French"
s.metadata = {
"bug_tracker_uri" => "https://github.com/plume-app/text-metrics/issues",
"changelog_uri" => "https://github.com/plume-app/text-metrics/blob/master/CHANGELOG.md",
"documentation_uri" => "https://github.com/plume-app/text-metrics",
"homepage_uri" => "https://github.com/plume-app/text-metrics",
"source_code_uri" => "https://github.com/plume-app/text-metrics"
}
s.license = "MIT"
s.files = Dir.glob("lib/**/*") + Dir.glob("bin/**/*") + %w[README.md LICENSE.txt CHANGELOG.md]
s.require_paths = ["lib"]
s.required_ruby_version = ">= 3.1"
s.add_runtime_dependency "text-hyphen", ">= 1.5.0"
s.add_development_dependency "bundler", ">= 1.15"
s.add_development_dependency "rake", ">= 13.0"
s.add_development_dependency "minitest", "~> 5.0"
s.add_development_dependency "guard"
s.add_development_dependency "guard-minitest"
s.add_development_dependency "byebug"
end