-
Notifications
You must be signed in to change notification settings - Fork 0
/
sentiment-ai.gemspec
25 lines (21 loc) · 1.02 KB
/
sentiment-ai.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
# frozen_string_literal: true
require_relative 'lib/sentiment_ai/version'
Gem::Specification.new do |spec|
spec.name = 'sentiment-ai'
spec.version = SentimentAI::VERSION
spec.summary = 'AI Sentiment Gem'
spec.description = 'A gem that use Generative AI for data sentiment analysis'
spec.authors = ['Quan Hoang']
spec.email = '[email protected]'
spec.files = Dir['lib/sentiment_ai.rb', 'lib/sentiment_ai/*.rb', 'lib/sentiment_ai/core/*.rb',
'config/locales/*.yml']
spec.homepage = 'https://rubygems.org/gems/sentiment-ai'
spec.license = 'MIT'
spec.required_ruby_version = '>= 3.1.0'
spec.metadata['source_code_uri'] = 'https://github.com/BlazingRockStorm/sentiment-ai'
spec.add_development_dependency 'csv', '~> 3.3'
spec.add_development_dependency 'i18n', '~> 1.14'
spec.add_development_dependency 'anthropic', '~> 0.3.2'
spec.add_development_dependency 'gemini-ai', '~> 4.2'
spec.add_development_dependency 'ruby-openai', '~> 6.0'
end