-
Notifications
You must be signed in to change notification settings - Fork 11
/
rosette_api.gemspec
34 lines (27 loc) · 1.22 KB
/
rosette_api.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.required_ruby_version = '>= 3.0.0'
spec.metadata = {
'rubygems_mfa_required' => 'true'
}
spec.name = 'rosette_api'
spec.version = '1.27.1'
spec.license = 'Apache-2.0'
spec.summary = 'A Ruby interface for Rosette Text Analytics Platform.'
spec.description =
'The Rosette Text Analytics Platform uses natural language processing, ' \
'statistical modeling, and machine learning to analyze unstructured and ' \
'semi-structured text across 364 language-encoding-script combinations, ' \
'revealing valuable information and actionable data. Rosette provides ' \
'endpoints for extracting entities and relationships, translating and ' \
'comparing the similarity of names, categorizing and adding linguistic ' \
'tags to text and more.'
spec.authors = ['Basis Technology Corp']
spec.email = '[email protected]'
spec.homepage = 'https://developer.rosette.com/'
spec.files = Dir['LICENSE', 'README.md', 'lib/**/*', 'examples/**/*']
spec.require_paths = ['lib']
spec.add_runtime_dependency('rubysl-securerandom', '~> 2.0')
end