We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee33d5e commit 987ce58Copy full SHA for 987ce58
2 files changed
detect_language.gemspec
@@ -8,7 +8,9 @@ Gem::Specification.new do |gem|
8
gem.summary = %q{Detects language of given text. Returns detected language codes and scores.}
9
gem.homepage = "https://github.com/detectlanguage/detectlanguage-ruby"
10
11
- gem.files = `git ls-files`.split($\)
+ gem.files = %w(LICENSE README.md detect_language.gemspec)
12
+ gem.files += Dir.glob('lib/**/*.{rb}')
13
+
14
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
15
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
16
gem.name = "detect_language"
mise.toml
@@ -0,0 +1,2 @@
1
+[tools]
2
+ruby = "3.4.5"
0 commit comments