-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalt_text.gemspec
More file actions
26 lines (20 loc) · 900 Bytes
/
alt_text.gemspec
File metadata and controls
26 lines (20 loc) · 900 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
25
26
# frozen_string_literal: true
require_relative 'lib/alt_text/version'
Gem::Specification.new do |spec|
spec.name = 'alt_text'
spec.version = AltText::VERSION
spec.authors = ['Alex Kiessling']
spec.email = ['ajk5603@psu.edu']
spec.summary = 'Generates alt text'
spec.description = 'AltText helps with accessibility by generating alt text for images.'
spec.homepage = 'https://github.com/psu-libraries/alt_text'
spec.license = 'MIT'
spec.files = Dir['lib/**/*', 'bin/*', 'README.md', 'LICENSE.txt', 'prompt.txt']
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 3.4'
spec.add_dependency 'aws-sdk-bedrockruntime', '~> 1.55.0'
spec.add_dependency 'dotenv', '~> 3.1.8'
spec.add_dependency 'marcel', '~> 1.1'
spec.add_dependency 'mini_magick', '~> 5.3.0'
spec.metadata['rubygems_mfa_required'] = 'true'
end