forked from penguoir/active_cortex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactive_cortex.gemspec
More file actions
24 lines (20 loc) · 939 Bytes
/
active_cortex.gemspec
File metadata and controls
24 lines (20 loc) · 939 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require_relative 'lib/active_cortex/version'
Gem::Specification.new do |spec|
spec.name = 'active_cortex'
spec.version = ActiveCortex::VERSION
spec.authors = ['Ori Marash']
spec.email = ['ori@marash.net']
spec.homepage = 'https://github.com/penguoir/active_cortex'
spec.summary = 'Easily add AI-generated fields to your Rails models.'
spec.description = 'Easily add AI-generated fields to your Raila models.'
spec.license = 'MIT'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/penguoir/active_cortex'
spec.metadata['changelog_uri'] = 'https://github.com/penguoir/active_cortex'
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir['{app,config,db,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.md']
end
spec.add_dependency 'dry-configurable', '~> 1.0'
spec.add_dependency 'rails', '> 7.0.8'
spec.add_dependency 'ruby-openai', '~> 7.1.0'
end